├── src
├── cljsjs
│ ├── react.cljs
│ └── react
│ │ ├── dom.cljs
│ │ └── dom
│ │ └── server.cljs
└── double_bundle
│ └── core.cljs
├── resources
└── public
│ ├── css
│ └── style.css
│ └── index.html
├── library.js
├── webpack.config.js
├── .gitignore
├── package.json
├── dev
└── user.clj
├── README.md
├── project.clj
└── yarn.lock
/src/cljsjs/react.cljs:
--------------------------------------------------------------------------------
1 | (ns cljsjs.react)
2 |
--------------------------------------------------------------------------------
/src/cljsjs/react/dom.cljs:
--------------------------------------------------------------------------------
1 | (ns cljsjs.react.dom)
--------------------------------------------------------------------------------
/resources/public/css/style.css:
--------------------------------------------------------------------------------
1 | /* some style */
2 |
3 |
--------------------------------------------------------------------------------
/src/cljsjs/react/dom/server.cljs:
--------------------------------------------------------------------------------
1 | (ns cljsjs.react.dom.server)
--------------------------------------------------------------------------------
/library.js:
--------------------------------------------------------------------------------
1 | window.React = require("react");
2 | window.ReactDOM = require("react-dom");
3 | window.ReactDatetime = require("react-datetime");
4 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | entry: './library.js',
3 | output: {
4 | filename: 'resources/public/js/npm-bundle.js'
5 | }
6 | };
7 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /resources/public/js/compiled/**
2 | figwheel_server.log
3 | pom.xml
4 | *jar
5 | /lib/
6 | /classes/
7 | /out/
8 | /target/
9 | .lein-deps-sum
10 | .lein-repl-history
11 | .lein-plugins/
12 | .repl
13 | .nrepl-port
14 | node_modules
15 | /resources/public/js/npm-bundle.js
16 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "double-bundle",
3 | "version": "1.0.0",
4 | "main": "library.js",
5 | "author": "Paulus Esterhazy",
6 | "license": "MIT",
7 | "scripts": {
8 | "build": "webpack --config webpack.config.js"
9 | },
10 | "devDependencies": {
11 | "webpack": "^2.6.1"
12 | },
13 | "dependencies": {
14 | "moment": "^2.22.2",
15 | "react": "15.4.2",
16 | "react-datetime": "2.8.10",
17 | "react-dom": "15.4.2"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/resources/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
Figwheel template
13 |
Checkout your developer console.
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/src/double_bundle/core.cljs:
--------------------------------------------------------------------------------
1 | (ns double-bundle.core
2 | (:require [reagent.core :as reagent :refer [atom]]
3 | [goog.object :as gobj]))
4 |
5 | (enable-console-print!)
6 |
7 | (println "This text is printed from src/double-bundle/core.cljs. Go ahead and edit it and see reloading in action.")
8 |
9 | ;; define your app data so that it doesn't get over-written on reload
10 |
11 | (defonce app-state (atom {:text "Hello world!"}))
12 |
13 | (defn datetime []
14 | [:> (gobj/get js/window "ReactDatetime") {:input false}])
15 |
16 | (defn hello-world []
17 | [:div
18 | [:h1 (:text @app-state)]
19 | [datetime]])
20 |
21 | (reagent/render-component [hello-world]
22 | (. js/document (getElementById "app")))
23 |
24 | (defn on-js-reload []
25 | ;; optionally touch your app-state to force rerendering depending on
26 | ;; your application
27 | ;; (swap! app-state update-in [:__figwheel_counter] inc)
28 | )
29 |
--------------------------------------------------------------------------------
/dev/user.clj:
--------------------------------------------------------------------------------
1 | (ns user
2 | (:require
3 | [figwheel-sidecar.repl-api :as f]))
4 |
5 | ;; user is a namespace that the Clojure runtime looks for and
6 | ;; loads if its available
7 |
8 | ;; You can place helper functions in here. This is great for starting
9 | ;; and stopping your webserver and other development services
10 |
11 | ;; The definitions in here will be available if you run "lein repl" or launch a
12 | ;; Clojure repl some other way
13 |
14 | ;; You have to ensure that the libraries you :require are listed in your dependencies
15 |
16 | ;; Once you start down this path
17 | ;; you will probably want to look at
18 | ;; tools.namespace https://github.com/clojure/tools.namespace
19 | ;; and Component https://github.com/stuartsierra/component
20 |
21 |
22 | (defn fig-start
23 | "This starts the figwheel server and watch based auto-compiler."
24 | []
25 | ;; this call will only work are long as your :cljsbuild and
26 | ;; :figwheel configurations are at the top level of your project.clj
27 | ;; and are not spread across different lein profiles
28 |
29 | ;; otherwise you can pass a configuration into start-figwheel! manually
30 | (f/start-figwheel!))
31 |
32 | (defn fig-stop
33 | "Stop the figwheel server and watch based auto-compiler."
34 | []
35 | (f/stop-figwheel!))
36 |
37 | ;; if you are in an nREPL environment you will need to make sure you
38 | ;; have setup piggieback for this to work
39 | (defn cljs-repl
40 | "Launch a ClojureScript REPL that is connected to your build and host environment."
41 | []
42 | (f/cljs-repl))
43 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # double-bundle
2 |
3 | Demonstration of the "double-bundle" approach to integrating NPM dependencies into ClojureScript projects
4 |
5 | # PLEASE NOTE
6 |
7 | This repository is no longer maintained. Please refer to the [cljs-spa-example](https://github.com/pesterhazy/cljs-spa-example) project instead.
8 |
9 | ## Overview
10 |
11 | You can integrate NPM dependencies in a Clojurescript project by building a separate bundle using webpack. The resulting application contains two bundles:
12 |
13 | - `js/npm-bundle.js`, built by webpack
14 | - `js/compiled/double_bundle.js`, built by the Clojurescript compiler (and Google Closure)
15 |
16 | Hence the name - the double bundle approach.
17 |
18 | ## Details
19 |
20 | This project is built on Reagent and Figwheel. Note, however, that neither of these are essential - a similar approach would work for any browser-based Clojurescript project that consumes NPM dependencies.
21 |
22 | To show how to include third party React dependencies, this project includes the [react-datetime](https://github.com/YouCanBookMe/react-datetime) calendar component.
23 |
24 | ## Setup
25 |
26 | To see the demo, run this:
27 |
28 | ```shell
29 | yarn install
30 | yarn build
31 | lein figwheel
32 | ```
33 |
34 | Then open your browser at [localhost:3449](http://localhost:3449/).
35 |
36 | ## Discussion
37 |
38 | This project is based on fighweel-template. To see the changes from an empty fighwheel template, see this [diff view](https://github.com/pesterhazy/double-bundle/compare/init...master).
39 |
40 | For simplicity, we're not making use of the `npm-deps` feature included in recent versions of the Clojurescript compiler here. The Google Closure compiler is not involved. The upside of this choice is that any NPM packages should work, as long as it is added to `library.js`.
41 |
42 | Similarly, for the sake of operational simplicity, we don't provide an externs files for an external component. Instead, we [use `goog.object/get`](https://github.com/pesterhazy/double-bundle/blob/8b523a9c774fb04635a01a85940f62217bb84d09/src/double_bundle/core.cljs#L14) to retrieve the component while avoiding minification during Advanced Compilation.
43 |
44 | ## TODO
45 |
46 | - Show how to build a single prod bundle
47 | - Does Reagent require externs in advanced compilation?
48 |
49 | ## License
50 |
51 | Copyright © 2017 Paulus Esterhazy
52 |
53 | Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
54 |
--------------------------------------------------------------------------------
/project.clj:
--------------------------------------------------------------------------------
1 | (defproject double-bundle "0.1.0-SNAPSHOT"
2 | :description "FIXME: write this!"
3 | :url "http://example.com/FIXME"
4 | :license {:name "Eclipse Public License"
5 | :url "http://www.eclipse.org/legal/epl-v10.html"}
6 |
7 | :min-lein-version "2.7.1"
8 |
9 | :dependencies [[org.clojure/clojure "1.8.0"]
10 | [org.clojure/clojurescript "1.9.229"]
11 | [org.clojure/core.async "0.3.442"
12 | :exclusions [org.clojure/tools.reader]]
13 | [reagent "0.6.0"]]
14 |
15 | :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server]
16 |
17 | :plugins [[lein-figwheel "0.5.10"]
18 | [lein-cljsbuild "1.1.5" :exclusions [[org.clojure/clojure]]]]
19 |
20 | :source-paths ["src"]
21 |
22 | :cljsbuild {:builds
23 | [{:id "dev"
24 | :source-paths ["src"]
25 |
26 | ;; the presence of a :figwheel configuration here
27 | ;; will cause figwheel to inject the figwheel client
28 | ;; into your build
29 | :figwheel {:on-jsload "double-bundle.core/on-js-reload"
30 | ;; :open-urls will pop open your application
31 | ;; in the default browser once Figwheel has
32 | ;; started and complied your application.
33 | ;; Comment this out once it no longer serves you.
34 | :open-urls ["http://localhost:3449/index.html"]}
35 |
36 | :compiler {:main double-bundle.core
37 | :asset-path "js/compiled/out"
38 | :output-to "resources/public/js/compiled/double_bundle.js"
39 | :output-dir "resources/public/js/compiled/out"
40 | :source-map-timestamp true
41 | ;; To console.log CLJS data-structures make sure you enable devtools in Chrome
42 | ;; https://github.com/binaryage/cljs-devtools
43 | :preloads [devtools.preload]}}
44 | ;; This next build is an compressed minified build for
45 | ;; production. You can build this with:
46 | ;; lein cljsbuild once min
47 | {:id "min"
48 | :source-paths ["src"]
49 | :compiler {:output-to "resources/public/js/compiled/double_bundle.js"
50 | :main double-bundle.core
51 | :optimizations :advanced
52 | :pretty-print false}}]}
53 |
54 | :figwheel {;; :http-server-root "public" ;; default and assumes "resources"
55 | ;; :server-port 3449 ;; default
56 | ;; :server-ip "127.0.0.1"
57 |
58 | :css-dirs ["resources/public/css"] ;; watch and update CSS
59 |
60 | ;; Start an nREPL server into the running figwheel process
61 | ;; :nrepl-port 7888
62 |
63 | ;; Server Ring Handler (optional)
64 | ;; if you want to embed a ring handler into the figwheel http-kit
65 | ;; server, this is for simple ring servers, if this
66 |
67 | ;; doesn't work for you just run your own server :) (see lein-ring)
68 |
69 | ;; :ring-handler hello_world.server/handler
70 |
71 | ;; To be able to open files in your editor from the heads up display
72 | ;; you will need to put a script on your path.
73 | ;; that script will have to take a file path and a line number
74 | ;; ie. in ~/bin/myfile-opener
75 | ;; #! /bin/sh
76 | ;; emacsclient -n +$2 $1
77 | ;;
78 | ;; :open-file-command "myfile-opener"
79 |
80 | ;; if you are using emacsclient you can just use
81 | ;; :open-file-command "emacsclient"
82 |
83 | ;; if you want to disable the REPL
84 | ;; :repl false
85 |
86 | ;; to configure a different figwheel logfile path
87 | ;; :server-logfile "tmp/logs/figwheel-logfile.log"
88 |
89 | ;; to pipe all the output to the repl
90 | ;; :server-logfile false
91 | }
92 |
93 |
94 | ;; setting up nREPL for Figwheel and ClojureScript dev
95 | ;; Please see:
96 | ;; https://github.com/bhauman/lein-figwheel/wiki/Using-the-Figwheel-REPL-within-NRepl
97 | :profiles {:dev {:dependencies [[binaryage/devtools "0.9.2"]
98 | [figwheel-sidecar "0.5.10"]
99 | [com.cemerick/piggieback "0.2.1"]]
100 | ;; need to add dev source path here to get user.clj loaded
101 | :source-paths ["src" "dev"]
102 | ;; for CIDER
103 | ;; :plugins [[cider/cider-nrepl "0.12.0"]]
104 | :repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
105 | ;; need to add the compliled assets to the :clean-targets
106 | :clean-targets ^{:protect false} ["resources/public/js/compiled"
107 | :target-path]}})
108 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | abbrev@1:
6 | version "1.1.0"
7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
8 |
9 | acorn-dynamic-import@^2.0.0:
10 | version "2.0.2"
11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
12 | dependencies:
13 | acorn "^4.0.3"
14 |
15 | acorn@^4.0.3:
16 | version "4.0.13"
17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
18 |
19 | acorn@^5.0.0:
20 | version "5.0.3"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d"
22 |
23 | ajv-keywords@^1.1.1:
24 | version "1.5.1"
25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
26 |
27 | ajv@^4.7.0, ajv@^4.9.1:
28 | version "4.11.8"
29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
30 | dependencies:
31 | co "^4.6.0"
32 | json-stable-stringify "^1.0.1"
33 |
34 | align-text@^0.1.1, align-text@^0.1.3:
35 | version "0.1.4"
36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
37 | dependencies:
38 | kind-of "^3.0.2"
39 | longest "^1.0.1"
40 | repeat-string "^1.5.2"
41 |
42 | ansi-regex@^2.0.0:
43 | version "2.1.1"
44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
45 |
46 | anymatch@^1.3.0:
47 | version "1.3.0"
48 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
49 | dependencies:
50 | arrify "^1.0.0"
51 | micromatch "^2.1.5"
52 |
53 | aproba@^1.0.3:
54 | version "1.1.2"
55 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
56 |
57 | are-we-there-yet@~1.1.2:
58 | version "1.1.4"
59 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
60 | dependencies:
61 | delegates "^1.0.0"
62 | readable-stream "^2.0.6"
63 |
64 | arr-diff@^2.0.0:
65 | version "2.0.0"
66 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
67 | dependencies:
68 | arr-flatten "^1.0.1"
69 |
70 | arr-flatten@^1.0.1:
71 | version "1.0.3"
72 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1"
73 |
74 | array-unique@^0.2.1:
75 | version "0.2.1"
76 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
77 |
78 | arrify@^1.0.0:
79 | version "1.0.1"
80 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
81 |
82 | asap@~2.0.3:
83 | version "2.0.5"
84 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
85 |
86 | asn1.js@^4.0.0:
87 | version "4.9.1"
88 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
89 | dependencies:
90 | bn.js "^4.0.0"
91 | inherits "^2.0.1"
92 | minimalistic-assert "^1.0.0"
93 |
94 | asn1@~0.2.3:
95 | version "0.2.3"
96 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
97 |
98 | assert-plus@1.0.0, assert-plus@^1.0.0:
99 | version "1.0.0"
100 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
101 |
102 | assert-plus@^0.2.0:
103 | version "0.2.0"
104 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
105 |
106 | assert@^1.1.1:
107 | version "1.4.1"
108 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
109 | dependencies:
110 | util "0.10.3"
111 |
112 | async-each@^1.0.0:
113 | version "1.0.1"
114 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
115 |
116 | async@^2.1.2:
117 | version "2.4.1"
118 | resolved "https://registry.yarnpkg.com/async/-/async-2.4.1.tgz#62a56b279c98a11d0987096a01cc3eeb8eb7bbd7"
119 | dependencies:
120 | lodash "^4.14.0"
121 |
122 | asynckit@^0.4.0:
123 | version "0.4.0"
124 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
125 |
126 | aws-sign2@~0.6.0:
127 | version "0.6.0"
128 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
129 |
130 | aws4@^1.2.1:
131 | version "1.6.0"
132 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
133 |
134 | balanced-match@^0.4.1:
135 | version "0.4.2"
136 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
137 |
138 | base64-js@^1.0.2:
139 | version "1.2.0"
140 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
141 |
142 | bcrypt-pbkdf@^1.0.0:
143 | version "1.0.1"
144 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
145 | dependencies:
146 | tweetnacl "^0.14.3"
147 |
148 | big.js@^3.1.3:
149 | version "3.1.3"
150 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
151 |
152 | binary-extensions@^1.0.0:
153 | version "1.8.0"
154 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
155 |
156 | block-stream@*:
157 | version "0.0.9"
158 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
159 | dependencies:
160 | inherits "~2.0.0"
161 |
162 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
163 | version "4.11.6"
164 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
165 |
166 | boom@2.x.x:
167 | version "2.10.1"
168 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
169 | dependencies:
170 | hoek "2.x.x"
171 |
172 | brace-expansion@^1.1.7:
173 | version "1.1.7"
174 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59"
175 | dependencies:
176 | balanced-match "^0.4.1"
177 | concat-map "0.0.1"
178 |
179 | braces@^1.8.2:
180 | version "1.8.5"
181 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
182 | dependencies:
183 | expand-range "^1.8.1"
184 | preserve "^0.2.0"
185 | repeat-element "^1.1.2"
186 |
187 | brorand@^1.0.1:
188 | version "1.1.0"
189 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
190 |
191 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
192 | version "1.0.6"
193 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
194 | dependencies:
195 | buffer-xor "^1.0.2"
196 | cipher-base "^1.0.0"
197 | create-hash "^1.1.0"
198 | evp_bytestokey "^1.0.0"
199 | inherits "^2.0.1"
200 |
201 | browserify-cipher@^1.0.0:
202 | version "1.0.0"
203 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
204 | dependencies:
205 | browserify-aes "^1.0.4"
206 | browserify-des "^1.0.0"
207 | evp_bytestokey "^1.0.0"
208 |
209 | browserify-des@^1.0.0:
210 | version "1.0.0"
211 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
212 | dependencies:
213 | cipher-base "^1.0.1"
214 | des.js "^1.0.0"
215 | inherits "^2.0.1"
216 |
217 | browserify-rsa@^4.0.0:
218 | version "4.0.1"
219 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
220 | dependencies:
221 | bn.js "^4.1.0"
222 | randombytes "^2.0.1"
223 |
224 | browserify-sign@^4.0.0:
225 | version "4.0.4"
226 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
227 | dependencies:
228 | bn.js "^4.1.1"
229 | browserify-rsa "^4.0.0"
230 | create-hash "^1.1.0"
231 | create-hmac "^1.1.2"
232 | elliptic "^6.0.0"
233 | inherits "^2.0.1"
234 | parse-asn1 "^5.0.0"
235 |
236 | browserify-zlib@^0.1.4:
237 | version "0.1.4"
238 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
239 | dependencies:
240 | pako "~0.2.0"
241 |
242 | buffer-xor@^1.0.2:
243 | version "1.0.3"
244 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
245 |
246 | buffer@^4.3.0:
247 | version "4.9.1"
248 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
249 | dependencies:
250 | base64-js "^1.0.2"
251 | ieee754 "^1.1.4"
252 | isarray "^1.0.0"
253 |
254 | builtin-modules@^1.0.0:
255 | version "1.1.1"
256 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
257 |
258 | builtin-status-codes@^3.0.0:
259 | version "3.0.0"
260 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
261 |
262 | camelcase@^1.0.2:
263 | version "1.2.1"
264 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
265 |
266 | camelcase@^3.0.0:
267 | version "3.0.0"
268 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
269 |
270 | caseless@~0.12.0:
271 | version "0.12.0"
272 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
273 |
274 | center-align@^0.1.1:
275 | version "0.1.3"
276 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
277 | dependencies:
278 | align-text "^0.1.3"
279 | lazy-cache "^1.0.3"
280 |
281 | chokidar@^1.4.3:
282 | version "1.7.0"
283 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
284 | dependencies:
285 | anymatch "^1.3.0"
286 | async-each "^1.0.0"
287 | glob-parent "^2.0.0"
288 | inherits "^2.0.1"
289 | is-binary-path "^1.0.0"
290 | is-glob "^2.0.0"
291 | path-is-absolute "^1.0.0"
292 | readdirp "^2.0.0"
293 | optionalDependencies:
294 | fsevents "^1.0.0"
295 |
296 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
297 | version "1.0.3"
298 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07"
299 | dependencies:
300 | inherits "^2.0.1"
301 |
302 | cliui@^2.1.0:
303 | version "2.1.0"
304 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
305 | dependencies:
306 | center-align "^0.1.1"
307 | right-align "^0.1.1"
308 | wordwrap "0.0.2"
309 |
310 | cliui@^3.2.0:
311 | version "3.2.0"
312 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
313 | dependencies:
314 | string-width "^1.0.1"
315 | strip-ansi "^3.0.1"
316 | wrap-ansi "^2.0.0"
317 |
318 | co@^4.6.0:
319 | version "4.6.0"
320 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
321 |
322 | code-point-at@^1.0.0:
323 | version "1.1.0"
324 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
325 |
326 | combined-stream@^1.0.5, combined-stream@~1.0.5:
327 | version "1.0.5"
328 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
329 | dependencies:
330 | delayed-stream "~1.0.0"
331 |
332 | concat-map@0.0.1:
333 | version "0.0.1"
334 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
335 |
336 | console-browserify@^1.1.0:
337 | version "1.1.0"
338 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
339 | dependencies:
340 | date-now "^0.1.4"
341 |
342 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
343 | version "1.1.0"
344 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
345 |
346 | constants-browserify@^1.0.0:
347 | version "1.0.0"
348 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
349 |
350 | core-js@^1.0.0:
351 | version "1.2.7"
352 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
353 |
354 | core-util-is@~1.0.0:
355 | version "1.0.2"
356 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
357 |
358 | create-ecdh@^4.0.0:
359 | version "4.0.0"
360 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
361 | dependencies:
362 | bn.js "^4.1.0"
363 | elliptic "^6.0.0"
364 |
365 | create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2:
366 | version "1.1.3"
367 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
368 | dependencies:
369 | cipher-base "^1.0.1"
370 | inherits "^2.0.1"
371 | ripemd160 "^2.0.0"
372 | sha.js "^2.4.0"
373 |
374 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
375 | version "1.1.6"
376 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
377 | dependencies:
378 | cipher-base "^1.0.3"
379 | create-hash "^1.1.0"
380 | inherits "^2.0.1"
381 | ripemd160 "^2.0.0"
382 | safe-buffer "^5.0.1"
383 | sha.js "^2.4.8"
384 |
385 | create-react-class@^15.5.2, create-react-class@^15.5.x:
386 | version "15.5.3"
387 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.5.3.tgz#fb0f7cae79339e9a179e194ef466efa3923820fe"
388 | dependencies:
389 | fbjs "^0.8.9"
390 | loose-envify "^1.3.1"
391 | object-assign "^4.1.1"
392 |
393 | cryptiles@2.x.x:
394 | version "2.0.5"
395 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
396 | dependencies:
397 | boom "2.x.x"
398 |
399 | crypto-browserify@^3.11.0:
400 | version "3.11.0"
401 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522"
402 | dependencies:
403 | browserify-cipher "^1.0.0"
404 | browserify-sign "^4.0.0"
405 | create-ecdh "^4.0.0"
406 | create-hash "^1.1.0"
407 | create-hmac "^1.1.0"
408 | diffie-hellman "^5.0.0"
409 | inherits "^2.0.1"
410 | pbkdf2 "^3.0.3"
411 | public-encrypt "^4.0.0"
412 | randombytes "^2.0.0"
413 |
414 | dashdash@^1.12.0:
415 | version "1.14.1"
416 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
417 | dependencies:
418 | assert-plus "^1.0.0"
419 |
420 | date-now@^0.1.4:
421 | version "0.1.4"
422 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
423 |
424 | debug@^2.2.0:
425 | version "2.6.8"
426 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
427 | dependencies:
428 | ms "2.0.0"
429 |
430 | decamelize@^1.0.0, decamelize@^1.1.1:
431 | version "1.2.0"
432 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
433 |
434 | deep-extend@~0.4.0:
435 | version "0.4.2"
436 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
437 |
438 | delayed-stream@~1.0.0:
439 | version "1.0.0"
440 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
441 |
442 | delegates@^1.0.0:
443 | version "1.0.0"
444 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
445 |
446 | des.js@^1.0.0:
447 | version "1.0.0"
448 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
449 | dependencies:
450 | inherits "^2.0.1"
451 | minimalistic-assert "^1.0.0"
452 |
453 | diffie-hellman@^5.0.0:
454 | version "5.0.2"
455 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
456 | dependencies:
457 | bn.js "^4.1.0"
458 | miller-rabin "^4.0.0"
459 | randombytes "^2.0.0"
460 |
461 | domain-browser@^1.1.1:
462 | version "1.1.7"
463 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
464 |
465 | ecc-jsbn@~0.1.1:
466 | version "0.1.1"
467 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
468 | dependencies:
469 | jsbn "~0.1.0"
470 |
471 | elliptic@^6.0.0:
472 | version "6.4.0"
473 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
474 | dependencies:
475 | bn.js "^4.4.0"
476 | brorand "^1.0.1"
477 | hash.js "^1.0.0"
478 | hmac-drbg "^1.0.0"
479 | inherits "^2.0.1"
480 | minimalistic-assert "^1.0.0"
481 | minimalistic-crypto-utils "^1.0.0"
482 |
483 | emojis-list@^2.0.0:
484 | version "2.1.0"
485 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
486 |
487 | encoding@^0.1.11:
488 | version "0.1.12"
489 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
490 | dependencies:
491 | iconv-lite "~0.4.13"
492 |
493 | enhanced-resolve@^3.0.0:
494 | version "3.1.0"
495 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec"
496 | dependencies:
497 | graceful-fs "^4.1.2"
498 | memory-fs "^0.4.0"
499 | object-assign "^4.0.1"
500 | tapable "^0.2.5"
501 |
502 | errno@^0.1.3:
503 | version "0.1.4"
504 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
505 | dependencies:
506 | prr "~0.0.0"
507 |
508 | error-ex@^1.2.0:
509 | version "1.3.1"
510 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
511 | dependencies:
512 | is-arrayish "^0.2.1"
513 |
514 | events@^1.0.0:
515 | version "1.1.1"
516 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
517 |
518 | evp_bytestokey@^1.0.0:
519 | version "1.0.0"
520 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
521 | dependencies:
522 | create-hash "^1.1.1"
523 |
524 | expand-brackets@^0.1.4:
525 | version "0.1.5"
526 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
527 | dependencies:
528 | is-posix-bracket "^0.1.0"
529 |
530 | expand-range@^1.8.1:
531 | version "1.8.2"
532 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
533 | dependencies:
534 | fill-range "^2.1.0"
535 |
536 | extend@~3.0.0:
537 | version "3.0.1"
538 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
539 |
540 | extglob@^0.3.1:
541 | version "0.3.2"
542 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
543 | dependencies:
544 | is-extglob "^1.0.0"
545 |
546 | extsprintf@1.0.2:
547 | version "1.0.2"
548 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
549 |
550 | fbjs@^0.8.1, fbjs@^0.8.4, fbjs@^0.8.9:
551 | version "0.8.12"
552 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04"
553 | dependencies:
554 | core-js "^1.0.0"
555 | isomorphic-fetch "^2.1.1"
556 | loose-envify "^1.0.0"
557 | object-assign "^4.1.0"
558 | promise "^7.1.1"
559 | setimmediate "^1.0.5"
560 | ua-parser-js "^0.7.9"
561 |
562 | filename-regex@^2.0.0:
563 | version "2.0.1"
564 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
565 |
566 | fill-range@^2.1.0:
567 | version "2.2.3"
568 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
569 | dependencies:
570 | is-number "^2.1.0"
571 | isobject "^2.0.0"
572 | randomatic "^1.1.3"
573 | repeat-element "^1.1.2"
574 | repeat-string "^1.5.2"
575 |
576 | find-up@^1.0.0:
577 | version "1.1.2"
578 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
579 | dependencies:
580 | path-exists "^2.0.0"
581 | pinkie-promise "^2.0.0"
582 |
583 | for-in@^1.0.1:
584 | version "1.0.2"
585 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
586 |
587 | for-own@^0.1.4:
588 | version "0.1.5"
589 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
590 | dependencies:
591 | for-in "^1.0.1"
592 |
593 | forever-agent@~0.6.1:
594 | version "0.6.1"
595 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
596 |
597 | form-data@~2.1.1:
598 | version "2.1.4"
599 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
600 | dependencies:
601 | asynckit "^0.4.0"
602 | combined-stream "^1.0.5"
603 | mime-types "^2.1.12"
604 |
605 | fs.realpath@^1.0.0:
606 | version "1.0.0"
607 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
608 |
609 | fsevents@^1.0.0:
610 | version "1.1.1"
611 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff"
612 | dependencies:
613 | nan "^2.3.0"
614 | node-pre-gyp "^0.6.29"
615 |
616 | fstream-ignore@^1.0.5:
617 | version "1.0.5"
618 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
619 | dependencies:
620 | fstream "^1.0.0"
621 | inherits "2"
622 | minimatch "^3.0.0"
623 |
624 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
625 | version "1.0.11"
626 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
627 | dependencies:
628 | graceful-fs "^4.1.2"
629 | inherits "~2.0.0"
630 | mkdirp ">=0.5 0"
631 | rimraf "2"
632 |
633 | gauge@~2.7.3:
634 | version "2.7.4"
635 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
636 | dependencies:
637 | aproba "^1.0.3"
638 | console-control-strings "^1.0.0"
639 | has-unicode "^2.0.0"
640 | object-assign "^4.1.0"
641 | signal-exit "^3.0.0"
642 | string-width "^1.0.1"
643 | strip-ansi "^3.0.1"
644 | wide-align "^1.1.0"
645 |
646 | get-caller-file@^1.0.1:
647 | version "1.0.2"
648 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
649 |
650 | getpass@^0.1.1:
651 | version "0.1.7"
652 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
653 | dependencies:
654 | assert-plus "^1.0.0"
655 |
656 | glob-base@^0.3.0:
657 | version "0.3.0"
658 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
659 | dependencies:
660 | glob-parent "^2.0.0"
661 | is-glob "^2.0.0"
662 |
663 | glob-parent@^2.0.0:
664 | version "2.0.0"
665 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
666 | dependencies:
667 | is-glob "^2.0.0"
668 |
669 | glob@^7.0.5:
670 | version "7.1.2"
671 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
672 | dependencies:
673 | fs.realpath "^1.0.0"
674 | inflight "^1.0.4"
675 | inherits "2"
676 | minimatch "^3.0.4"
677 | once "^1.3.0"
678 | path-is-absolute "^1.0.0"
679 |
680 | graceful-fs@^4.1.2:
681 | version "4.1.11"
682 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
683 |
684 | har-schema@^1.0.5:
685 | version "1.0.5"
686 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
687 |
688 | har-validator@~4.2.1:
689 | version "4.2.1"
690 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
691 | dependencies:
692 | ajv "^4.9.1"
693 | har-schema "^1.0.5"
694 |
695 | has-flag@^1.0.0:
696 | version "1.0.0"
697 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
698 |
699 | has-unicode@^2.0.0:
700 | version "2.0.1"
701 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
702 |
703 | hash-base@^2.0.0:
704 | version "2.0.2"
705 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
706 | dependencies:
707 | inherits "^2.0.1"
708 |
709 | hash.js@^1.0.0, hash.js@^1.0.3:
710 | version "1.0.3"
711 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573"
712 | dependencies:
713 | inherits "^2.0.1"
714 |
715 | hawk@~3.1.3:
716 | version "3.1.3"
717 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
718 | dependencies:
719 | boom "2.x.x"
720 | cryptiles "2.x.x"
721 | hoek "2.x.x"
722 | sntp "1.x.x"
723 |
724 | hmac-drbg@^1.0.0:
725 | version "1.0.1"
726 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
727 | dependencies:
728 | hash.js "^1.0.3"
729 | minimalistic-assert "^1.0.0"
730 | minimalistic-crypto-utils "^1.0.1"
731 |
732 | hoek@2.x.x:
733 | version "2.16.3"
734 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
735 |
736 | hosted-git-info@^2.1.4:
737 | version "2.4.2"
738 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.4.2.tgz#0076b9f46a270506ddbaaea56496897460612a67"
739 |
740 | http-signature@~1.1.0:
741 | version "1.1.1"
742 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
743 | dependencies:
744 | assert-plus "^0.2.0"
745 | jsprim "^1.2.2"
746 | sshpk "^1.7.0"
747 |
748 | https-browserify@0.0.1:
749 | version "0.0.1"
750 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
751 |
752 | iconv-lite@~0.4.13:
753 | version "0.4.17"
754 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.17.tgz#4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d"
755 |
756 | ieee754@^1.1.4:
757 | version "1.1.8"
758 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
759 |
760 | indexof@0.0.1:
761 | version "0.0.1"
762 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
763 |
764 | inflight@^1.0.4:
765 | version "1.0.6"
766 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
767 | dependencies:
768 | once "^1.3.0"
769 | wrappy "1"
770 |
771 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1:
772 | version "2.0.3"
773 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
774 |
775 | inherits@2.0.1:
776 | version "2.0.1"
777 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
778 |
779 | ini@~1.3.0:
780 | version "1.3.4"
781 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
782 |
783 | interpret@^1.0.0:
784 | version "1.0.3"
785 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
786 |
787 | invert-kv@^1.0.0:
788 | version "1.0.0"
789 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
790 |
791 | is-arrayish@^0.2.1:
792 | version "0.2.1"
793 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
794 |
795 | is-binary-path@^1.0.0:
796 | version "1.0.1"
797 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
798 | dependencies:
799 | binary-extensions "^1.0.0"
800 |
801 | is-buffer@^1.1.5:
802 | version "1.1.5"
803 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
804 |
805 | is-builtin-module@^1.0.0:
806 | version "1.0.0"
807 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
808 | dependencies:
809 | builtin-modules "^1.0.0"
810 |
811 | is-dotfile@^1.0.0:
812 | version "1.0.3"
813 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
814 |
815 | is-equal-shallow@^0.1.3:
816 | version "0.1.3"
817 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
818 | dependencies:
819 | is-primitive "^2.0.0"
820 |
821 | is-extendable@^0.1.1:
822 | version "0.1.1"
823 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
824 |
825 | is-extglob@^1.0.0:
826 | version "1.0.0"
827 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
828 |
829 | is-fullwidth-code-point@^1.0.0:
830 | version "1.0.0"
831 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
832 | dependencies:
833 | number-is-nan "^1.0.0"
834 |
835 | is-glob@^2.0.0, is-glob@^2.0.1:
836 | version "2.0.1"
837 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
838 | dependencies:
839 | is-extglob "^1.0.0"
840 |
841 | is-number@^2.0.2, is-number@^2.1.0:
842 | version "2.1.0"
843 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
844 | dependencies:
845 | kind-of "^3.0.2"
846 |
847 | is-posix-bracket@^0.1.0:
848 | version "0.1.1"
849 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
850 |
851 | is-primitive@^2.0.0:
852 | version "2.0.0"
853 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
854 |
855 | is-stream@^1.0.1:
856 | version "1.1.0"
857 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
858 |
859 | is-typedarray@~1.0.0:
860 | version "1.0.0"
861 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
862 |
863 | is-utf8@^0.2.0:
864 | version "0.2.1"
865 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
866 |
867 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
868 | version "1.0.0"
869 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
870 |
871 | isobject@^2.0.0:
872 | version "2.1.0"
873 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
874 | dependencies:
875 | isarray "1.0.0"
876 |
877 | isomorphic-fetch@^2.1.1:
878 | version "2.2.1"
879 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
880 | dependencies:
881 | node-fetch "^1.0.1"
882 | whatwg-fetch ">=0.10.0"
883 |
884 | isstream@~0.1.2:
885 | version "0.1.2"
886 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
887 |
888 | jodid25519@^1.0.0:
889 | version "1.0.2"
890 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
891 | dependencies:
892 | jsbn "~0.1.0"
893 |
894 | js-tokens@^3.0.0:
895 | version "3.0.1"
896 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
897 |
898 | jsbn@~0.1.0:
899 | version "0.1.1"
900 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
901 |
902 | json-loader@^0.5.4:
903 | version "0.5.4"
904 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de"
905 |
906 | json-schema@0.2.3:
907 | version "0.2.3"
908 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
909 |
910 | json-stable-stringify@^1.0.1:
911 | version "1.0.1"
912 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
913 | dependencies:
914 | jsonify "~0.0.0"
915 |
916 | json-stringify-safe@~5.0.1:
917 | version "5.0.1"
918 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
919 |
920 | json5@^0.5.0, json5@^0.5.1:
921 | version "0.5.1"
922 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
923 |
924 | jsonify@~0.0.0:
925 | version "0.0.0"
926 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
927 |
928 | jsprim@^1.2.2:
929 | version "1.4.0"
930 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918"
931 | dependencies:
932 | assert-plus "1.0.0"
933 | extsprintf "1.0.2"
934 | json-schema "0.2.3"
935 | verror "1.3.6"
936 |
937 | kind-of@^3.0.2:
938 | version "3.2.2"
939 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
940 | dependencies:
941 | is-buffer "^1.1.5"
942 |
943 | lazy-cache@^1.0.3:
944 | version "1.0.4"
945 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
946 |
947 | lcid@^1.0.0:
948 | version "1.0.0"
949 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
950 | dependencies:
951 | invert-kv "^1.0.0"
952 |
953 | load-json-file@^1.0.0:
954 | version "1.1.0"
955 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
956 | dependencies:
957 | graceful-fs "^4.1.2"
958 | parse-json "^2.2.0"
959 | pify "^2.0.0"
960 | pinkie-promise "^2.0.0"
961 | strip-bom "^2.0.0"
962 |
963 | loader-runner@^2.3.0:
964 | version "2.3.0"
965 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
966 |
967 | loader-utils@^0.2.16:
968 | version "0.2.17"
969 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
970 | dependencies:
971 | big.js "^3.1.3"
972 | emojis-list "^2.0.0"
973 | json5 "^0.5.0"
974 | object-assign "^4.0.1"
975 |
976 | lodash@^4.14.0:
977 | version "4.17.4"
978 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
979 |
980 | longest@^1.0.1:
981 | version "1.0.1"
982 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
983 |
984 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
985 | version "1.3.1"
986 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
987 | dependencies:
988 | js-tokens "^3.0.0"
989 |
990 | memory-fs@^0.4.0, memory-fs@~0.4.1:
991 | version "0.4.1"
992 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
993 | dependencies:
994 | errno "^0.1.3"
995 | readable-stream "^2.0.1"
996 |
997 | micromatch@^2.1.5:
998 | version "2.3.11"
999 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
1000 | dependencies:
1001 | arr-diff "^2.0.0"
1002 | array-unique "^0.2.1"
1003 | braces "^1.8.2"
1004 | expand-brackets "^0.1.4"
1005 | extglob "^0.3.1"
1006 | filename-regex "^2.0.0"
1007 | is-extglob "^1.0.0"
1008 | is-glob "^2.0.1"
1009 | kind-of "^3.0.2"
1010 | normalize-path "^2.0.1"
1011 | object.omit "^2.0.0"
1012 | parse-glob "^3.0.4"
1013 | regex-cache "^0.4.2"
1014 |
1015 | miller-rabin@^4.0.0:
1016 | version "4.0.0"
1017 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
1018 | dependencies:
1019 | bn.js "^4.0.0"
1020 | brorand "^1.0.1"
1021 |
1022 | mime-db@~1.27.0:
1023 | version "1.27.0"
1024 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1"
1025 |
1026 | mime-types@^2.1.12, mime-types@~2.1.7:
1027 | version "2.1.15"
1028 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed"
1029 | dependencies:
1030 | mime-db "~1.27.0"
1031 |
1032 | minimalistic-assert@^1.0.0:
1033 | version "1.0.0"
1034 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
1035 |
1036 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
1037 | version "1.0.1"
1038 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1039 |
1040 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
1041 | version "3.0.4"
1042 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
1043 | dependencies:
1044 | brace-expansion "^1.1.7"
1045 |
1046 | minimist@0.0.8:
1047 | version "0.0.8"
1048 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
1049 |
1050 | minimist@^1.2.0:
1051 | version "1.2.0"
1052 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
1053 |
1054 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
1055 | version "0.5.1"
1056 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
1057 | dependencies:
1058 | minimist "0.0.8"
1059 |
1060 | moment@2.18.1:
1061 | version "2.18.1"
1062 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
1063 |
1064 | ms@2.0.0:
1065 | version "2.0.0"
1066 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1067 |
1068 | nan@^2.3.0:
1069 | version "2.6.2"
1070 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
1071 |
1072 | node-fetch@^1.0.1:
1073 | version "1.7.1"
1074 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.1.tgz#899cb3d0a3c92f952c47f1b876f4c8aeabd400d5"
1075 | dependencies:
1076 | encoding "^0.1.11"
1077 | is-stream "^1.0.1"
1078 |
1079 | node-libs-browser@^2.0.0:
1080 | version "2.0.0"
1081 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
1082 | dependencies:
1083 | assert "^1.1.1"
1084 | browserify-zlib "^0.1.4"
1085 | buffer "^4.3.0"
1086 | console-browserify "^1.1.0"
1087 | constants-browserify "^1.0.0"
1088 | crypto-browserify "^3.11.0"
1089 | domain-browser "^1.1.1"
1090 | events "^1.0.0"
1091 | https-browserify "0.0.1"
1092 | os-browserify "^0.2.0"
1093 | path-browserify "0.0.0"
1094 | process "^0.11.0"
1095 | punycode "^1.2.4"
1096 | querystring-es3 "^0.2.0"
1097 | readable-stream "^2.0.5"
1098 | stream-browserify "^2.0.1"
1099 | stream-http "^2.3.1"
1100 | string_decoder "^0.10.25"
1101 | timers-browserify "^2.0.2"
1102 | tty-browserify "0.0.0"
1103 | url "^0.11.0"
1104 | util "^0.10.3"
1105 | vm-browserify "0.0.4"
1106 |
1107 | node-pre-gyp@^0.6.29:
1108 | version "0.6.36"
1109 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786"
1110 | dependencies:
1111 | mkdirp "^0.5.1"
1112 | nopt "^4.0.1"
1113 | npmlog "^4.0.2"
1114 | rc "^1.1.7"
1115 | request "^2.81.0"
1116 | rimraf "^2.6.1"
1117 | semver "^5.3.0"
1118 | tar "^2.2.1"
1119 | tar-pack "^3.4.0"
1120 |
1121 | nopt@^4.0.1:
1122 | version "4.0.1"
1123 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
1124 | dependencies:
1125 | abbrev "1"
1126 | osenv "^0.1.4"
1127 |
1128 | normalize-package-data@^2.3.2:
1129 | version "2.3.8"
1130 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.8.tgz#d819eda2a9dedbd1ffa563ea4071d936782295bb"
1131 | dependencies:
1132 | hosted-git-info "^2.1.4"
1133 | is-builtin-module "^1.0.0"
1134 | semver "2 || 3 || 4 || 5"
1135 | validate-npm-package-license "^3.0.1"
1136 |
1137 | normalize-path@^2.0.1:
1138 | version "2.1.1"
1139 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
1140 | dependencies:
1141 | remove-trailing-separator "^1.0.1"
1142 |
1143 | npmlog@^4.0.2:
1144 | version "4.1.0"
1145 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.0.tgz#dc59bee85f64f00ed424efb2af0783df25d1c0b5"
1146 | dependencies:
1147 | are-we-there-yet "~1.1.2"
1148 | console-control-strings "~1.1.0"
1149 | gauge "~2.7.3"
1150 | set-blocking "~2.0.0"
1151 |
1152 | number-is-nan@^1.0.0:
1153 | version "1.0.1"
1154 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
1155 |
1156 | oauth-sign@~0.8.1:
1157 | version "0.8.2"
1158 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
1159 |
1160 | object-assign@^3.0.0:
1161 | version "3.0.0"
1162 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2"
1163 |
1164 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
1165 | version "4.1.1"
1166 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1167 |
1168 | object.omit@^2.0.0:
1169 | version "2.0.1"
1170 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
1171 | dependencies:
1172 | for-own "^0.1.4"
1173 | is-extendable "^0.1.1"
1174 |
1175 | once@^1.3.0, once@^1.3.3:
1176 | version "1.4.0"
1177 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1178 | dependencies:
1179 | wrappy "1"
1180 |
1181 | os-browserify@^0.2.0:
1182 | version "0.2.1"
1183 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
1184 |
1185 | os-homedir@^1.0.0:
1186 | version "1.0.2"
1187 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
1188 |
1189 | os-locale@^1.4.0:
1190 | version "1.4.0"
1191 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
1192 | dependencies:
1193 | lcid "^1.0.0"
1194 |
1195 | os-tmpdir@^1.0.0:
1196 | version "1.0.2"
1197 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
1198 |
1199 | osenv@^0.1.4:
1200 | version "0.1.4"
1201 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
1202 | dependencies:
1203 | os-homedir "^1.0.0"
1204 | os-tmpdir "^1.0.0"
1205 |
1206 | pako@~0.2.0:
1207 | version "0.2.9"
1208 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
1209 |
1210 | parse-asn1@^5.0.0:
1211 | version "5.1.0"
1212 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
1213 | dependencies:
1214 | asn1.js "^4.0.0"
1215 | browserify-aes "^1.0.0"
1216 | create-hash "^1.1.0"
1217 | evp_bytestokey "^1.0.0"
1218 | pbkdf2 "^3.0.3"
1219 |
1220 | parse-glob@^3.0.4:
1221 | version "3.0.4"
1222 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
1223 | dependencies:
1224 | glob-base "^0.3.0"
1225 | is-dotfile "^1.0.0"
1226 | is-extglob "^1.0.0"
1227 | is-glob "^2.0.0"
1228 |
1229 | parse-json@^2.2.0:
1230 | version "2.2.0"
1231 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
1232 | dependencies:
1233 | error-ex "^1.2.0"
1234 |
1235 | path-browserify@0.0.0:
1236 | version "0.0.0"
1237 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
1238 |
1239 | path-exists@^2.0.0:
1240 | version "2.1.0"
1241 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
1242 | dependencies:
1243 | pinkie-promise "^2.0.0"
1244 |
1245 | path-is-absolute@^1.0.0:
1246 | version "1.0.1"
1247 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1248 |
1249 | path-type@^1.0.0:
1250 | version "1.1.0"
1251 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
1252 | dependencies:
1253 | graceful-fs "^4.1.2"
1254 | pify "^2.0.0"
1255 | pinkie-promise "^2.0.0"
1256 |
1257 | pbkdf2@^3.0.3:
1258 | version "3.0.12"
1259 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2"
1260 | dependencies:
1261 | create-hash "^1.1.2"
1262 | create-hmac "^1.1.4"
1263 | ripemd160 "^2.0.1"
1264 | safe-buffer "^5.0.1"
1265 | sha.js "^2.4.8"
1266 |
1267 | performance-now@^0.2.0:
1268 | version "0.2.0"
1269 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
1270 |
1271 | pify@^2.0.0:
1272 | version "2.3.0"
1273 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
1274 |
1275 | pinkie-promise@^2.0.0:
1276 | version "2.0.1"
1277 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
1278 | dependencies:
1279 | pinkie "^2.0.0"
1280 |
1281 | pinkie@^2.0.0:
1282 | version "2.0.4"
1283 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
1284 |
1285 | preserve@^0.2.0:
1286 | version "0.2.0"
1287 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
1288 |
1289 | process-nextick-args@~1.0.6:
1290 | version "1.0.7"
1291 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
1292 |
1293 | process@^0.11.0:
1294 | version "0.11.10"
1295 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
1296 |
1297 | promise@^7.1.1:
1298 | version "7.1.1"
1299 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
1300 | dependencies:
1301 | asap "~2.0.3"
1302 |
1303 | prop-types@^15.5.7:
1304 | version "15.5.10"
1305 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154"
1306 | dependencies:
1307 | fbjs "^0.8.9"
1308 | loose-envify "^1.3.1"
1309 |
1310 | prr@~0.0.0:
1311 | version "0.0.0"
1312 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
1313 |
1314 | public-encrypt@^4.0.0:
1315 | version "4.0.0"
1316 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
1317 | dependencies:
1318 | bn.js "^4.1.0"
1319 | browserify-rsa "^4.0.0"
1320 | create-hash "^1.1.0"
1321 | parse-asn1 "^5.0.0"
1322 | randombytes "^2.0.1"
1323 |
1324 | punycode@1.3.2:
1325 | version "1.3.2"
1326 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
1327 |
1328 | punycode@^1.2.4, punycode@^1.4.1:
1329 | version "1.4.1"
1330 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1331 |
1332 | qs@~6.4.0:
1333 | version "6.4.0"
1334 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
1335 |
1336 | querystring-es3@^0.2.0:
1337 | version "0.2.1"
1338 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
1339 |
1340 | querystring@0.2.0:
1341 | version "0.2.0"
1342 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
1343 |
1344 | randomatic@^1.1.3:
1345 | version "1.1.6"
1346 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
1347 | dependencies:
1348 | is-number "^2.0.2"
1349 | kind-of "^3.0.2"
1350 |
1351 | randombytes@^2.0.0, randombytes@^2.0.1:
1352 | version "2.0.4"
1353 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.4.tgz#9551df208422c8f80eb58e2326dd0b840ff22efd"
1354 | dependencies:
1355 | safe-buffer "^5.0.1"
1356 |
1357 | rc@^1.1.7:
1358 | version "1.2.1"
1359 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
1360 | dependencies:
1361 | deep-extend "~0.4.0"
1362 | ini "~1.3.0"
1363 | minimist "^1.2.0"
1364 | strip-json-comments "~2.0.1"
1365 |
1366 | react-datetime@2.8.10:
1367 | version "2.8.10"
1368 | resolved "https://registry.yarnpkg.com/react-datetime/-/react-datetime-2.8.10.tgz#06d4317b7734310e0e8109555526656128346132"
1369 | dependencies:
1370 | create-react-class "^15.5.2"
1371 | object-assign "^3.0.0"
1372 | prop-types "^15.5.7"
1373 | react-onclickoutside "^5.9.0"
1374 |
1375 | react-dom@15.4.2:
1376 | version "15.4.2"
1377 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f"
1378 | dependencies:
1379 | fbjs "^0.8.1"
1380 | loose-envify "^1.1.0"
1381 | object-assign "^4.1.0"
1382 |
1383 | react-onclickoutside@^5.9.0:
1384 | version "5.11.1"
1385 | resolved "https://registry.yarnpkg.com/react-onclickoutside/-/react-onclickoutside-5.11.1.tgz#00314e52567cf55faba94cabbacd119619070623"
1386 | dependencies:
1387 | create-react-class "^15.5.x"
1388 |
1389 | react@15.4.2:
1390 | version "15.4.2"
1391 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef"
1392 | dependencies:
1393 | fbjs "^0.8.4"
1394 | loose-envify "^1.1.0"
1395 | object-assign "^4.1.0"
1396 |
1397 | read-pkg-up@^1.0.1:
1398 | version "1.0.1"
1399 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
1400 | dependencies:
1401 | find-up "^1.0.0"
1402 | read-pkg "^1.0.0"
1403 |
1404 | read-pkg@^1.0.0:
1405 | version "1.1.0"
1406 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
1407 | dependencies:
1408 | load-json-file "^1.0.0"
1409 | normalize-package-data "^2.3.2"
1410 | path-type "^1.0.0"
1411 |
1412 | 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:
1413 | version "2.2.10"
1414 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.10.tgz#effe72bb7c884c0dd335e2379d526196d9d011ee"
1415 | dependencies:
1416 | core-util-is "~1.0.0"
1417 | inherits "~2.0.1"
1418 | isarray "~1.0.0"
1419 | process-nextick-args "~1.0.6"
1420 | safe-buffer "^5.0.1"
1421 | string_decoder "~1.0.0"
1422 | util-deprecate "~1.0.1"
1423 |
1424 | readdirp@^2.0.0:
1425 | version "2.1.0"
1426 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
1427 | dependencies:
1428 | graceful-fs "^4.1.2"
1429 | minimatch "^3.0.2"
1430 | readable-stream "^2.0.2"
1431 | set-immediate-shim "^1.0.1"
1432 |
1433 | regex-cache@^0.4.2:
1434 | version "0.4.3"
1435 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
1436 | dependencies:
1437 | is-equal-shallow "^0.1.3"
1438 | is-primitive "^2.0.0"
1439 |
1440 | remove-trailing-separator@^1.0.1:
1441 | version "1.0.1"
1442 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4"
1443 |
1444 | repeat-element@^1.1.2:
1445 | version "1.1.2"
1446 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
1447 |
1448 | repeat-string@^1.5.2:
1449 | version "1.6.1"
1450 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
1451 |
1452 | request@^2.81.0:
1453 | version "2.81.0"
1454 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
1455 | dependencies:
1456 | aws-sign2 "~0.6.0"
1457 | aws4 "^1.2.1"
1458 | caseless "~0.12.0"
1459 | combined-stream "~1.0.5"
1460 | extend "~3.0.0"
1461 | forever-agent "~0.6.1"
1462 | form-data "~2.1.1"
1463 | har-validator "~4.2.1"
1464 | hawk "~3.1.3"
1465 | http-signature "~1.1.0"
1466 | is-typedarray "~1.0.0"
1467 | isstream "~0.1.2"
1468 | json-stringify-safe "~5.0.1"
1469 | mime-types "~2.1.7"
1470 | oauth-sign "~0.8.1"
1471 | performance-now "^0.2.0"
1472 | qs "~6.4.0"
1473 | safe-buffer "^5.0.1"
1474 | stringstream "~0.0.4"
1475 | tough-cookie "~2.3.0"
1476 | tunnel-agent "^0.6.0"
1477 | uuid "^3.0.0"
1478 |
1479 | require-directory@^2.1.1:
1480 | version "2.1.1"
1481 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
1482 |
1483 | require-main-filename@^1.0.1:
1484 | version "1.0.1"
1485 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
1486 |
1487 | right-align@^0.1.1:
1488 | version "0.1.3"
1489 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
1490 | dependencies:
1491 | align-text "^0.1.1"
1492 |
1493 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1:
1494 | version "2.6.1"
1495 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
1496 | dependencies:
1497 | glob "^7.0.5"
1498 |
1499 | ripemd160@^2.0.0, ripemd160@^2.0.1:
1500 | version "2.0.1"
1501 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
1502 | dependencies:
1503 | hash-base "^2.0.0"
1504 | inherits "^2.0.1"
1505 |
1506 | safe-buffer@^5.0.1:
1507 | version "5.1.0"
1508 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223"
1509 |
1510 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
1511 | version "5.3.0"
1512 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
1513 |
1514 | set-blocking@^2.0.0, set-blocking@~2.0.0:
1515 | version "2.0.0"
1516 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1517 |
1518 | set-immediate-shim@^1.0.1:
1519 | version "1.0.1"
1520 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
1521 |
1522 | setimmediate@^1.0.4, setimmediate@^1.0.5:
1523 | version "1.0.5"
1524 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
1525 |
1526 | sha.js@^2.4.0, sha.js@^2.4.8:
1527 | version "2.4.8"
1528 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
1529 | dependencies:
1530 | inherits "^2.0.1"
1531 |
1532 | signal-exit@^3.0.0:
1533 | version "3.0.2"
1534 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
1535 |
1536 | sntp@1.x.x:
1537 | version "1.0.9"
1538 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
1539 | dependencies:
1540 | hoek "2.x.x"
1541 |
1542 | source-list-map@^1.1.1:
1543 | version "1.1.2"
1544 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1"
1545 |
1546 | source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.3:
1547 | version "0.5.6"
1548 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
1549 |
1550 | spdx-correct@~1.0.0:
1551 | version "1.0.2"
1552 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
1553 | dependencies:
1554 | spdx-license-ids "^1.0.2"
1555 |
1556 | spdx-expression-parse@~1.0.0:
1557 | version "1.0.4"
1558 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
1559 |
1560 | spdx-license-ids@^1.0.2:
1561 | version "1.2.2"
1562 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
1563 |
1564 | sshpk@^1.7.0:
1565 | version "1.13.0"
1566 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.0.tgz#ff2a3e4fd04497555fed97b39a0fd82fafb3a33c"
1567 | dependencies:
1568 | asn1 "~0.2.3"
1569 | assert-plus "^1.0.0"
1570 | dashdash "^1.12.0"
1571 | getpass "^0.1.1"
1572 | optionalDependencies:
1573 | bcrypt-pbkdf "^1.0.0"
1574 | ecc-jsbn "~0.1.1"
1575 | jodid25519 "^1.0.0"
1576 | jsbn "~0.1.0"
1577 | tweetnacl "~0.14.0"
1578 |
1579 | stream-browserify@^2.0.1:
1580 | version "2.0.1"
1581 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
1582 | dependencies:
1583 | inherits "~2.0.1"
1584 | readable-stream "^2.0.2"
1585 |
1586 | stream-http@^2.3.1:
1587 | version "2.7.1"
1588 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.1.tgz#546a51741ad5a6b07e9e31b0b10441a917df528a"
1589 | dependencies:
1590 | builtin-status-codes "^3.0.0"
1591 | inherits "^2.0.1"
1592 | readable-stream "^2.2.6"
1593 | to-arraybuffer "^1.0.0"
1594 | xtend "^4.0.0"
1595 |
1596 | string-width@^1.0.1, string-width@^1.0.2:
1597 | version "1.0.2"
1598 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
1599 | dependencies:
1600 | code-point-at "^1.0.0"
1601 | is-fullwidth-code-point "^1.0.0"
1602 | strip-ansi "^3.0.0"
1603 |
1604 | string_decoder@^0.10.25:
1605 | version "0.10.31"
1606 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
1607 |
1608 | string_decoder@~1.0.0:
1609 | version "1.0.1"
1610 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98"
1611 | dependencies:
1612 | safe-buffer "^5.0.1"
1613 |
1614 | stringstream@~0.0.4:
1615 | version "0.0.5"
1616 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
1617 |
1618 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
1619 | version "3.0.1"
1620 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
1621 | dependencies:
1622 | ansi-regex "^2.0.0"
1623 |
1624 | strip-bom@^2.0.0:
1625 | version "2.0.0"
1626 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
1627 | dependencies:
1628 | is-utf8 "^0.2.0"
1629 |
1630 | strip-json-comments@~2.0.1:
1631 | version "2.0.1"
1632 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1633 |
1634 | supports-color@^3.1.0:
1635 | version "3.2.3"
1636 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
1637 | dependencies:
1638 | has-flag "^1.0.0"
1639 |
1640 | tapable@^0.2.5, tapable@~0.2.5:
1641 | version "0.2.6"
1642 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d"
1643 |
1644 | tar-pack@^3.4.0:
1645 | version "3.4.0"
1646 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
1647 | dependencies:
1648 | debug "^2.2.0"
1649 | fstream "^1.0.10"
1650 | fstream-ignore "^1.0.5"
1651 | once "^1.3.3"
1652 | readable-stream "^2.1.4"
1653 | rimraf "^2.5.1"
1654 | tar "^2.2.1"
1655 | uid-number "^0.0.6"
1656 |
1657 | tar@^2.2.1:
1658 | version "2.2.1"
1659 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
1660 | dependencies:
1661 | block-stream "*"
1662 | fstream "^1.0.2"
1663 | inherits "2"
1664 |
1665 | timers-browserify@^2.0.2:
1666 | version "2.0.2"
1667 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86"
1668 | dependencies:
1669 | setimmediate "^1.0.4"
1670 |
1671 | to-arraybuffer@^1.0.0:
1672 | version "1.0.1"
1673 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
1674 |
1675 | tough-cookie@~2.3.0:
1676 | version "2.3.2"
1677 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
1678 | dependencies:
1679 | punycode "^1.4.1"
1680 |
1681 | tty-browserify@0.0.0:
1682 | version "0.0.0"
1683 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
1684 |
1685 | tunnel-agent@^0.6.0:
1686 | version "0.6.0"
1687 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
1688 | dependencies:
1689 | safe-buffer "^5.0.1"
1690 |
1691 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1692 | version "0.14.5"
1693 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1694 |
1695 | ua-parser-js@^0.7.9:
1696 | version "0.7.12"
1697 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
1698 |
1699 | uglify-js@^2.8.27:
1700 | version "2.8.28"
1701 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.28.tgz#e335032df9bb20dcb918f164589d5af47f38834a"
1702 | dependencies:
1703 | source-map "~0.5.1"
1704 | yargs "~3.10.0"
1705 | optionalDependencies:
1706 | uglify-to-browserify "~1.0.0"
1707 |
1708 | uglify-to-browserify@~1.0.0:
1709 | version "1.0.2"
1710 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
1711 |
1712 | uid-number@^0.0.6:
1713 | version "0.0.6"
1714 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
1715 |
1716 | url@^0.11.0:
1717 | version "0.11.0"
1718 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
1719 | dependencies:
1720 | punycode "1.3.2"
1721 | querystring "0.2.0"
1722 |
1723 | util-deprecate@~1.0.1:
1724 | version "1.0.2"
1725 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1726 |
1727 | util@0.10.3, util@^0.10.3:
1728 | version "0.10.3"
1729 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
1730 | dependencies:
1731 | inherits "2.0.1"
1732 |
1733 | uuid@^3.0.0:
1734 | version "3.0.1"
1735 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
1736 |
1737 | validate-npm-package-license@^3.0.1:
1738 | version "3.0.1"
1739 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
1740 | dependencies:
1741 | spdx-correct "~1.0.0"
1742 | spdx-expression-parse "~1.0.0"
1743 |
1744 | verror@1.3.6:
1745 | version "1.3.6"
1746 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
1747 | dependencies:
1748 | extsprintf "1.0.2"
1749 |
1750 | vm-browserify@0.0.4:
1751 | version "0.0.4"
1752 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
1753 | dependencies:
1754 | indexof "0.0.1"
1755 |
1756 | watchpack@^1.3.1:
1757 | version "1.3.1"
1758 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87"
1759 | dependencies:
1760 | async "^2.1.2"
1761 | chokidar "^1.4.3"
1762 | graceful-fs "^4.1.2"
1763 |
1764 | webpack-sources@^0.2.3:
1765 | version "0.2.3"
1766 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb"
1767 | dependencies:
1768 | source-list-map "^1.1.1"
1769 | source-map "~0.5.3"
1770 |
1771 | webpack@^2.6.1:
1772 | version "2.6.1"
1773 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.6.1.tgz#2e0457f0abb1ac5df3ab106c69c672f236785f07"
1774 | dependencies:
1775 | acorn "^5.0.0"
1776 | acorn-dynamic-import "^2.0.0"
1777 | ajv "^4.7.0"
1778 | ajv-keywords "^1.1.1"
1779 | async "^2.1.2"
1780 | enhanced-resolve "^3.0.0"
1781 | interpret "^1.0.0"
1782 | json-loader "^0.5.4"
1783 | json5 "^0.5.1"
1784 | loader-runner "^2.3.0"
1785 | loader-utils "^0.2.16"
1786 | memory-fs "~0.4.1"
1787 | mkdirp "~0.5.0"
1788 | node-libs-browser "^2.0.0"
1789 | source-map "^0.5.3"
1790 | supports-color "^3.1.0"
1791 | tapable "~0.2.5"
1792 | uglify-js "^2.8.27"
1793 | watchpack "^1.3.1"
1794 | webpack-sources "^0.2.3"
1795 | yargs "^6.0.0"
1796 |
1797 | whatwg-fetch@>=0.10.0:
1798 | version "2.0.3"
1799 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
1800 |
1801 | which-module@^1.0.0:
1802 | version "1.0.0"
1803 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
1804 |
1805 | wide-align@^1.1.0:
1806 | version "1.1.2"
1807 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
1808 | dependencies:
1809 | string-width "^1.0.2"
1810 |
1811 | window-size@0.1.0:
1812 | version "0.1.0"
1813 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
1814 |
1815 | wordwrap@0.0.2:
1816 | version "0.0.2"
1817 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
1818 |
1819 | wrap-ansi@^2.0.0:
1820 | version "2.1.0"
1821 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
1822 | dependencies:
1823 | string-width "^1.0.1"
1824 | strip-ansi "^3.0.1"
1825 |
1826 | wrappy@1:
1827 | version "1.0.2"
1828 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1829 |
1830 | xtend@^4.0.0:
1831 | version "4.0.1"
1832 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
1833 |
1834 | y18n@^3.2.1:
1835 | version "3.2.1"
1836 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
1837 |
1838 | yargs-parser@^4.2.0:
1839 | version "4.2.1"
1840 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
1841 | dependencies:
1842 | camelcase "^3.0.0"
1843 |
1844 | yargs@^6.0.0:
1845 | version "6.6.0"
1846 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
1847 | dependencies:
1848 | camelcase "^3.0.0"
1849 | cliui "^3.2.0"
1850 | decamelize "^1.1.1"
1851 | get-caller-file "^1.0.1"
1852 | os-locale "^1.4.0"
1853 | read-pkg-up "^1.0.1"
1854 | require-directory "^2.1.1"
1855 | require-main-filename "^1.0.1"
1856 | set-blocking "^2.0.0"
1857 | string-width "^1.0.2"
1858 | which-module "^1.0.0"
1859 | y18n "^3.2.1"
1860 | yargs-parser "^4.2.0"
1861 |
1862 | yargs@~3.10.0:
1863 | version "3.10.0"
1864 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
1865 | dependencies:
1866 | camelcase "^1.0.2"
1867 | cliui "^2.1.0"
1868 | decamelize "^1.0.0"
1869 | window-size "0.1.0"
1870 |
--------------------------------------------------------------------------------