├── .DS_Store
├── .paket
├── paket.exe
└── Paket.Restore.targets
├── gif
└── file_explorer.gif
├── src
├── Main
│ ├── paket.references
│ ├── Main.fsproj
│ └── Main.fs
└── Renderer
│ ├── paket.references
│ ├── Renderer.fsproj
│ ├── Html.fs
│ ├── Mime.fs
│ └── Renderer.fs
├── paket.dependencies
├── Nuget.Config
├── package.json
├── app
├── about.html
└── index.html
├── webpack.config.js
├── Fable.Samples.Electron.sln
├── README.md
├── .gitignore
├── LICENSE
└── yarn.lock
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fable-compiler/samples-electron/HEAD/.DS_Store
--------------------------------------------------------------------------------
/.paket/paket.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fable-compiler/samples-electron/HEAD/.paket/paket.exe
--------------------------------------------------------------------------------
/gif/file_explorer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fable-compiler/samples-electron/HEAD/gif/file_explorer.gif
--------------------------------------------------------------------------------
/src/Main/paket.references:
--------------------------------------------------------------------------------
1 | dotnet-fable
2 | Fable.Core
3 | Fable.Import.Browser
4 | Fable.Import.Node
5 | Fable.Import.Electron
--------------------------------------------------------------------------------
/src/Renderer/paket.references:
--------------------------------------------------------------------------------
1 | dotnet-fable
2 | Fable.Core
3 | Fable.Import.Browser
4 | Fable.Import.Electron
5 | Fable.PowerPack
--------------------------------------------------------------------------------
/paket.dependencies:
--------------------------------------------------------------------------------
1 | source https://nuget.org/api/v2
2 | storage:none
3 |
4 | clitool dotnet-fable prerelease
5 | nuget Fable.Core prerelease
6 | nuget Fable.Import.Browser
7 | nuget Fable.Import.Node
8 | nuget Fable.Import.Electron
9 | nuget Fable.PowerPack
--------------------------------------------------------------------------------
/src/Main/Main.fsproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | netstandard2.0
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Nuget.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/Renderer/Renderer.fsproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/Renderer/Html.fs:
--------------------------------------------------------------------------------
1 | module Html
2 |
3 | open Fable.Core
4 | open Fable.Import
5 |
6 | // In this module you can find most of the HTML generation used by the sample
7 | // We added it in a separate file because it's not the important part of the sample
8 | let replaceChildren (root: Browser.HTMLElement) children =
9 | while not (isNull root.firstChild) do
10 | root.removeChild(root.firstChild)
11 | |> ignore
12 |
13 | for child in children do
14 | root.appendChild(child)
15 | |> ignore
16 |
17 | let createIcon faIcon =
18 | let root = Browser.document.createElement_span()
19 | let icon = Browser.document.createElement_i()
20 |
21 | root.className <- "icon"
22 | icon.className <- "fa " + faIcon
23 | root.appendChild(icon) |> ignore
24 | root
25 |
26 | let createLink filename =
27 | let root = Browser.document.createElement_a()
28 | root.href <- "#"
29 | root.innerText <- filename
30 | root
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "productName": "Simple Fable App",
4 | "version": "1.0.0",
5 | "main": "app/main.js",
6 | "scripts": {
7 | "start": "cd src/Main && dotnet fable webpack --port free -- -w --config ../../webpack.config.js",
8 | "build": "cd src/Main && dotnet fable webpack --port free -- -p --config ../../webpack.config.js",
9 | "launch": "electron .",
10 | "release": "electron-packager . --out release --overwrite"
11 | },
12 | "dependencies": {
13 | "babel-runtime": "^6.26.0",
14 | "file-size": "^1.0.0"
15 | },
16 | "devDependencies": {
17 | "babel-core": "^6.26.0",
18 | "babel-loader": "^7.1.2",
19 | "babel-plugin-transform-runtime": "6.23.0",
20 | "babel-preset-es2015": "6.24.1",
21 | "electron": "^1.7.5",
22 | "electron-packager": "^12.1.0",
23 | "fable-loader": "^1.0.7",
24 | "fable-utils": "^1.0.2",
25 | "loglevel": "^1.4.1",
26 | "webpack": "^3.5.5"
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/app/about.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | Fable-electron sample
22 |
23 |
24 | This application show you how to make a basic Fable-electron app.
25 |
26 | You can find the source code here:
27 | fable-compiler/samples-electron
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | var path = require("path");
2 | var webpack = require("webpack");
3 | var fableUtils = require("fable-utils");
4 |
5 | function resolve(filePath) {
6 | return path.join(__dirname, filePath)
7 | }
8 |
9 | var babelOptions = fableUtils.resolveBabelOptions({
10 | presets: [["es2015", { "modules": false }]],
11 | plugins: ["transform-runtime"]
12 | });
13 |
14 | var isProduction = process.argv.indexOf("-p") >= 0;
15 | console.log("Bundling for " + (isProduction ? "production" : "development") + "...");
16 |
17 | var basicConfig = {
18 | devtool: "source-map",
19 | resolve: {
20 | modules: [resolve("./node_modules/")]
21 | },
22 | node: {
23 | __dirname: false,
24 | __filename: false
25 | },
26 | module: {
27 | rules: [
28 | {
29 | test: /\.fs(x|proj)?$/,
30 | use: {
31 | loader: "fable-loader",
32 | options: {
33 | babel: babelOptions,
34 | define: isProduction ? [] : ["DEBUG"]
35 | }
36 | }
37 | },
38 | {
39 | test: /\.js$/,
40 | exclude: /node_modules/,
41 | use: {
42 | loader: 'babel-loader',
43 | options: babelOptions
44 | },
45 | }
46 | ]
47 | }
48 | };
49 |
50 | var mainConfig = Object.assign({
51 | target: "electron-main",
52 | entry: resolve("src/Main/Main.fsproj"),
53 | output: {
54 | path: resolve("app"),
55 | filename: "main.js"
56 | }
57 | }, basicConfig);
58 |
59 | var rendererConfig = Object.assign({
60 | target: "electron-renderer",
61 | entry: resolve("src/Renderer/Renderer.fsproj"),
62 | output: {
63 | path: resolve("app"),
64 | filename: "renderer.js"
65 | }
66 | }, basicConfig);
67 |
68 | module.exports = [mainConfig, rendererConfig]
--------------------------------------------------------------------------------
/src/Renderer/Mime.fs:
--------------------------------------------------------------------------------
1 | module Mime
2 |
3 | open Fable.Import
4 | open Node.Exports
5 |
6 | type MimeInfo =
7 | { Text : string
8 | Image : string
9 | Unkown : string
10 | Directory : string
11 | Pdf : string
12 | Html : string
13 | Word : string
14 | Powerpoint : string
15 | Movie : string
16 | Audio : string
17 | Css : string }
18 |
19 | let iconMimeInfo =
20 | { Text = "fa-file-text-o"
21 | Image = "fa-file-image-o"
22 | Unkown = "fa-file-o"
23 | Directory = "fa-folder-o"
24 | Pdf = "fa-file-pdf-o"
25 | Html = "fa-html5"
26 | Word = "fa-file-word-o"
27 | Powerpoint = "fa-file-powerpoint-o"
28 | Movie = "fa-file-video-o"
29 | Audio = "fa-file-audio-o"
30 | Css = "fa-css3" }
31 |
32 | let filetypeMimeInfo =
33 | { Text = "Text document"
34 | Image = "Image"
35 | Unkown = ""
36 | Directory = "fa-folder-o"
37 | Pdf = "PDF document"
38 | Html = "Html document"
39 | Word = "Word document"
40 | Powerpoint = "Powerpoint document"
41 | Movie = "Video document"
42 | Audio = "Audio document"
43 | Css = "Css document" }
44 |
45 | let mapMimeInfo (info : MimeInfo) path isDirectory =
46 | if isDirectory then
47 | info.Directory
48 | else
49 | let fileInfo = Path.parse path
50 | match fileInfo.ext with
51 | | ".txt" | ".md" -> info.Text
52 | | ".jpg" | ".jpge" | ".png" | ".gif" | ".bmp" -> info.Image
53 | | ".pdf" -> info.Pdf
54 | | ".css" -> info.Css
55 | | ".html" -> info.Html
56 | | ".doc" | ".docx" -> info.Word
57 | | ".ppt" | ".pptx" -> info.Powerpoint
58 | | ".mkv" | ".avi" | ".rmvb" -> info.Movie
59 | | ".mp3" -> info.Audio
60 | | _ -> info.Unkown
61 |
62 | let determineIcon = mapMimeInfo iconMimeInfo
63 |
64 | let determineFileType = mapMimeInfo filetypeMimeInfo
--------------------------------------------------------------------------------
/src/Main/Main.fs:
--------------------------------------------------------------------------------
1 | module Main
2 |
3 | open Fable.Core
4 | open Fable.Core.JsInterop
5 | open Fable.Import
6 | open Fable.Import.Electron
7 | open Node.Exports
8 |
9 | // Keep a global reference of the window object, if you don't, the window will
10 | // be closed automatically when the JavaScript object is garbage collected.
11 | let mutable mainWindow: BrowserWindow option = Option.None
12 |
13 | let createMainWindow () =
14 | let options = createEmpty
15 | options.width <- Some 800.
16 | options.height <- Some 600.
17 | options.autoHideMenuBar <- Some true
18 | let window = electron.BrowserWindow.Create(options)
19 |
20 | // Load the index.html of the app.
21 | let opts = createEmpty>
22 | opts.pathname <- Some <| Path.join(Node.Globals.__dirname, "index.html")
23 | opts.protocol <- Some "file:"
24 | window.loadURL(Url.format(opts))
25 |
26 |
27 | #if DEBUG
28 | Fs.watch(Path.join(Node.Globals.__dirname, "renderer.js"), fun _ _ ->
29 | window.webContents.reloadIgnoringCache()
30 | ) |> ignore
31 | #endif
32 |
33 | // Emitted when the window is closed.
34 | window.on("closed", unbox(fun () ->
35 | // Dereference the window object, usually you would store windows
36 | // in an array if your app supports multi windows, this is the time
37 | // when you should delete the corresponding element.
38 | mainWindow <- Option.None
39 | )) |> ignore
40 |
41 | // Maximize the window
42 | window.maximize()
43 |
44 | mainWindow <- Some window
45 |
46 | // This method will be called when Electron has finished
47 | // initialization and is ready to create browser windows.
48 | electron.app.on("ready", unbox createMainWindow) |> ignore
49 |
50 | // Quit when all windows are closed.
51 | electron.app.on("window-all-closed", unbox(fun () ->
52 | // On OS X it is common for applications and their menu bar
53 | // to stay active until the user quits explicitly with Cmd + Q
54 | if Node.Globals.``process``.platform <> Node.Base.NodeJS.Darwin then
55 | electron.app.quit()
56 | )) |> ignore
57 |
58 | electron.app.on("activate", unbox(fun () ->
59 | // On OS X it's common to re-create a window in the app when the
60 | // dock icon is clicked and there are no other windows open.
61 | if mainWindow.IsNone then
62 | createMainWindow()
63 | )) |> ignore
64 |
--------------------------------------------------------------------------------
/Fable.Samples.Electron.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.26124.0
5 | MinimumVisualStudioVersion = 15.0.26124.0
6 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{88A74994-9820-486A-9C17-B4FA699AE480}"
7 | EndProject
8 | Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Main", "src/Main/Main.fsproj", "{E6546D5B-503C-493E-9529-F0739B3AC67F}"
9 | EndProject
10 | Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Renderer", "src/Renderer/Renderer.fsproj", "{704F45C9-3001-461F-BD48-C46A3569DFEB}"
11 | EndProject
12 | Global
13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
14 | Debug|Any CPU = Debug|Any CPU
15 | Debug|x64 = Debug|x64
16 | Debug|x86 = Debug|x86
17 | Release|Any CPU = Release|Any CPU
18 | Release|x64 = Release|x64
19 | Release|x86 = Release|x86
20 | EndGlobalSection
21 | GlobalSection(SolutionProperties) = preSolution
22 | HideSolutionNode = FALSE
23 | EndGlobalSection
24 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
25 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Debug|Any CPU.Build.0 = Debug|Any CPU
27 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Debug|x64.ActiveCfg = Debug|x64
28 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Debug|x64.Build.0 = Debug|x64
29 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Debug|x86.ActiveCfg = Debug|x86
30 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Debug|x86.Build.0 = Debug|x86
31 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Release|Any CPU.ActiveCfg = Release|Any CPU
32 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Release|Any CPU.Build.0 = Release|Any CPU
33 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Release|x64.ActiveCfg = Release|x64
34 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Release|x64.Build.0 = Release|x64
35 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Release|x86.ActiveCfg = Release|x86
36 | {E6546D5B-503C-493E-9529-F0739B3AC67F}.Release|x86.Build.0 = Release|x86
37 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
38 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
39 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Debug|x64.ActiveCfg = Debug|x64
40 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Debug|x64.Build.0 = Debug|x64
41 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Debug|x86.ActiveCfg = Debug|x86
42 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Debug|x86.Build.0 = Debug|x86
43 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
44 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Release|Any CPU.Build.0 = Release|Any CPU
45 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Release|x64.ActiveCfg = Release|x64
46 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Release|x64.Build.0 = Release|x64
47 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Release|x86.ActiveCfg = Release|x86
48 | {704F45C9-3001-461F-BD48-C46A3569DFEB}.Release|x86.Build.0 = Release|x86
49 | EndGlobalSection
50 | GlobalSection(NestedProjects) = preSolution
51 | {E6546D5B-503C-493E-9529-F0739B3AC67F} = {88A74994-9820-486A-9C17-B4FA699AE480}
52 | {704F45C9-3001-461F-BD48-C46A3569DFEB} = {88A74994-9820-486A-9C17-B4FA699AE480}
53 | EndGlobalSection
54 | EndGlobal
55 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Fable samples for Github Electron apps
2 |
3 | This repository contains samples to show how to create a [Github Electron](https://electron.atom.io/) cross-platform desktop app using F# and [Fable](http://fable.io).
4 |
5 | > At the time of writing there's only one simple sample. More to come!
6 |
7 | ## Requirements
8 |
9 | * [dotnet SDK](https://www.microsoft.com/net/download/core) 2.0 or higher
10 | * [node.js](https://nodejs.org) 6.11 or higher
11 | * A JS package manager: [yarn](https://yarnpkg.com) or [npm](http://npmjs.com/)
12 |
13 | > npm comes bundled with node.js, but we recommend to use at least npm 5. If you have npm installed, you can upgrade it by running `npm install -g npm`.
14 |
15 | Although is not a Fable requirement, on macOS and Linux you'll need [Mono](http://www.mono-project.com/) for other F# tooling like Paket or editor support.
16 |
17 | ## Editor
18 |
19 | The project can be used by editors compatible with the new .fsproj format, like VS Code + [Ionide](http://ionide.io/), Emacs with [fsharp-mode](https://github.com/fsharp/emacs-fsharp-mode) or [Rider](https://www.jetbrains.com/rider/). **Visual Studio for Mac** is also compatible but in the current version the package auto-restore function conflicts with Paket so you need to disable it: `Preferences > Nuget > General`.
20 |
21 | ## Building and running the app
22 |
23 | > In the commands below, yarn is the tool of choice. If you want to use npm, just replace `yarn` by `npm` in the commands.
24 |
25 | * Install JS dependencies: `yarn install`
26 | * Install F# dependencies: `dotnet restore`
27 | * Start Fable daemon and [Webpack](https://webpack.js.org/): `yarn start`
28 | * In another terminal, run: `yarn run launch`
29 |
30 | > The first two steps are only necessary the first time or whenever the dependencies change.
31 |
32 | The app window will be refreshed when you modify any file in the Renderer project. For production, run `yarn run build` to get optimized JS code.
33 |
34 | ## Releasing the app
35 |
36 | > In the commands below, yarn is the tool of choice. If you want to use npm, just replace `yarn` by `npm` in the commands.
37 |
38 | * Run `yarn run build`
39 | * Run `yarn run release`
40 | * A `release` folder should be created with a ready to execute application
41 |
42 | This will package the electron app for your current platform. This means if you are under `Mac` this will create a `Simple Fable App.app` application that can be executed.
43 |
44 | If you want to specify which platform to release, please take a look at [electron-packager](https://github.com/electron-userland/electron-packager). For example, to release to Linux you could do this:
45 |
46 | * Add a new `release-linux` script to the package.json file like this:
47 | `"release-linux": "electron-packager . --arch=x64 --platform=linux --out release --overwrite"`
48 | * Run `yarn run release-linux`
49 | * Or you could run electron-packager from the command line by first installing npx: `npm install -g npx`
50 | * Try to run npx from your repo folder by typing `npx -v`
51 | * If npx is not found, restart Windows to update the Path environment variable to include ..\AppData\Roaming\npm.
52 | * Run `npx electron-packager . --arch=x64 --platform=linux --out release --overwrite`
53 | * When you try to execute the `Simple Fable App` file on an Ubuntu instance, if it fails to run you might need to `sudo apt-get install libnss3`.
54 |
55 | ## Architecture
56 |
57 | As all Electron apps, the sample is split in two parts:
58 |
59 | 1. The [main process](https://electron.atom.io/docs/glossary/#main-process), responsible to create the app windows.
60 | 2. The [renderer process](https://electron.atom.io/docs/glossary/#renderer-process), responsible to generate the code used by `index.html`.
61 |
62 | ## Samples
63 |
64 | ### File explorer
65 |
66 | 
67 |
--------------------------------------------------------------------------------
/app/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Simple Fable App
6 |
7 |
8 |
9 |
10 |
11 |
12 |
32 |
33 |
34 |
35 |
36 |
56 |
57 |
60 |
61 |
62 |
63 |
112 |
113 |
114 |
115 |
116 |
117 | |
118 | Name |
119 | Date |
120 | Type |
121 | Size |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | app/*.js*
2 |
3 | ## Ignore Visual Studio temporary files, build results, and
4 | ## files generated by popular Visual Studio add-ons.
5 |
6 | # User-specific files
7 | *.suo
8 | *.user
9 | *.userosscache
10 | *.sln.docstates
11 |
12 | # User-specific files (MonoDevelop/Xamarin Studio)
13 | *.userprefs
14 |
15 | # Build results
16 | [Dd]ebug/
17 | [Dd]ebugPublic/
18 | [Rr]elease/
19 | [Rr]eleases/
20 | x64/
21 | x86/
22 | bld/
23 | [Bb]in/
24 | [Oo]bj/
25 | [Ll]og/
26 |
27 | # Visual Studio 2015 cache/options directory
28 | .vs/
29 | # Uncomment if you have tasks that create the project's static files in wwwroot
30 | #wwwroot/
31 |
32 | # MSTest test Results
33 | [Tt]est[Rr]esult*/
34 | [Bb]uild[Ll]og.*
35 |
36 | # NUNIT
37 | *.VisualState.xml
38 | TestResult.xml
39 |
40 | # Build Results of an ATL Project
41 | [Dd]ebugPS/
42 | [Rr]eleasePS/
43 | dlldata.c
44 |
45 | # DNX
46 | project.lock.json
47 | artifacts/
48 |
49 | *_i.c
50 | *_p.c
51 | *_i.h
52 | *.ilk
53 | *.meta
54 | *.obj
55 | *.pch
56 | *.pdb
57 | *.pgc
58 | *.pgd
59 | *.rsp
60 | *.sbr
61 | *.tlb
62 | *.tli
63 | *.tlh
64 | *.tmp
65 | *.tmp_proj
66 | *.log
67 | *.vspscc
68 | *.vssscc
69 | .builds
70 | *.pidb
71 | *.svclog
72 | *.scc
73 |
74 | # Chutzpah Test files
75 | _Chutzpah*
76 |
77 | # Visual C++ cache files
78 | ipch/
79 | *.aps
80 | *.ncb
81 | *.opendb
82 | *.opensdf
83 | *.sdf
84 | *.cachefile
85 | *.VC.db
86 | *.VC.VC.opendb
87 |
88 | # Visual Studio profiler
89 | *.psess
90 | *.vsp
91 | *.vspx
92 | *.sap
93 |
94 | # TFS 2012 Local Workspace
95 | $tf/
96 |
97 | # Guidance Automation Toolkit
98 | *.gpState
99 |
100 | # ReSharper is a .NET coding add-in
101 | _ReSharper*/
102 | *.[Rr]e[Ss]harper
103 | *.DotSettings.user
104 |
105 | # JustCode is a .NET coding add-in
106 | .JustCode
107 |
108 | # TeamCity is a build add-in
109 | _TeamCity*
110 |
111 | # DotCover is a Code Coverage Tool
112 | *.dotCover
113 |
114 | # NCrunch
115 | _NCrunch_*
116 | .*crunch*.local.xml
117 | nCrunchTemp_*
118 |
119 | # MightyMoose
120 | *.mm.*
121 | AutoTest.Net/
122 |
123 | # Web workbench (sass)
124 | .sass-cache/
125 |
126 | # Installshield output folder
127 | [Ee]xpress/
128 |
129 | # DocProject is a documentation generator add-in
130 | DocProject/buildhelp/
131 | DocProject/Help/*.HxT
132 | DocProject/Help/*.HxC
133 | DocProject/Help/*.hhc
134 | DocProject/Help/*.hhk
135 | DocProject/Help/*.hhp
136 | DocProject/Help/Html2
137 | DocProject/Help/html
138 |
139 | # Click-Once directory
140 | publish/
141 |
142 | # Publish Web Output
143 | *.[Pp]ublish.xml
144 | *.azurePubxml
145 | # TODO: Comment the next line if you want to checkin your web deploy settings
146 | # but database connection strings (with potential passwords) will be unencrypted
147 | *.pubxml
148 | *.publishproj
149 |
150 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
151 | # checkin your Azure Web App publish settings, but sensitive information contained
152 | # in these scripts will be unencrypted
153 | PublishScripts/
154 |
155 | # NuGet Packages
156 | *.nupkg
157 | # The packages folder can be ignored because of Package Restore
158 | **/packages/*
159 | # except build/, which is used as an MSBuild target.
160 | !**/packages/build/
161 | # Uncomment if necessary however generally it will be regenerated when needed
162 | #!**/packages/repositories.config
163 | # NuGet v3's project.json files produces more ignoreable files
164 | *.nuget.props
165 | *.nuget.targets
166 |
167 | # Microsoft Azure Build Output
168 | csx/
169 | *.build.csdef
170 |
171 | # Microsoft Azure Emulator
172 | ecf/
173 | rcf/
174 |
175 | # Windows Store app package directories and files
176 | AppPackages/
177 | BundleArtifacts/
178 | Package.StoreAssociation.xml
179 | _pkginfo.txt
180 |
181 | # Visual Studio cache files
182 | # files ending in .cache can be ignored
183 | *.[Cc]ache
184 | # but keep track of directories ending in .cache
185 | !*.[Cc]ache/
186 |
187 | # Others
188 | ClientBin/
189 | ~$*
190 | *~
191 | *.dbmdl
192 | *.dbproj.schemaview
193 | *.pfx
194 | *.publishsettings
195 | node_modules/
196 | orleans.codegen.cs
197 |
198 | # Since there are multiple workflows, uncomment next line to ignore bower_components
199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
200 | #bower_components/
201 |
202 | # RIA/Silverlight projects
203 | Generated_Code/
204 |
205 | # Backup & report files from converting an old project file
206 | # to a newer Visual Studio version. Backup files are not needed,
207 | # because we have git ;-)
208 | _UpgradeReport_Files/
209 | Backup*/
210 | UpgradeLog*.XML
211 | UpgradeLog*.htm
212 |
213 | # SQL Server files
214 | *.mdf
215 | *.ldf
216 |
217 | # Business Intelligence projects
218 | *.rdl.data
219 | *.bim.layout
220 | *.bim_*.settings
221 |
222 | # Microsoft Fakes
223 | FakesAssemblies/
224 |
225 | # GhostDoc plugin setting file
226 | *.GhostDoc.xml
227 |
228 | # Node.js Tools for Visual Studio
229 | .ntvs_analysis.dat
230 |
231 | # Visual Studio 6 build log
232 | *.plg
233 |
234 | # Visual Studio 6 workspace options file
235 | *.opt
236 |
237 | # Visual Studio LightSwitch build output
238 | **/*.HTMLClient/GeneratedArtifacts
239 | **/*.DesktopClient/GeneratedArtifacts
240 | **/*.DesktopClient/ModelManifest.xml
241 | **/*.Server/GeneratedArtifacts
242 | **/*.Server/ModelManifest.xml
243 | _Pvt_Extensions
244 |
245 | # Paket dependency manager
246 | paket-files/
247 |
248 | # FAKE - F# Make
249 | .fake/
250 |
251 | # JetBrains Rider
252 | .idea/
253 | *.sln.iml
254 |
255 | # Samples
256 | samples/*/app/*
257 | samples/*/temp/*
258 | sample/app/bundle\.js*
259 |
260 | sample/out/
261 | release/
262 |
--------------------------------------------------------------------------------
/src/Renderer/Renderer.fs:
--------------------------------------------------------------------------------
1 | module Renderer
2 |
3 | open Fable.Core
4 | open Fable.Core.JsInterop
5 | open Fable.Import
6 | open Electron
7 | open Node.Exports
8 | open Fable.PowerPack
9 |
10 | let filesize = import "*" "file-size"
11 | // This is a dynamic programming instruction because we don't have a binding for file-size lib
12 | let sizeToHuman (size: float) : string = (filesize $ (size))?human $ ("si") |> unbox
13 |
14 | // Reference the element of the View used by the application
15 | module Ref =
16 |
17 | let openFolder = Browser.document.getElementById("act-open-folder")
18 | let quit = Browser.document.getElementById("act-quit")
19 | let about = Browser.document.getElementById("act-about")
20 | let addressBar = Browser.document.getElementById("address-bar")
21 | let filesList = Browser.document.getElementById("files-list")
22 |
23 | // Used to storage a reference of the about window
24 | // Otherwise, the window is destroy by the Garbage Collector
25 | let mutable aboutWindow : BrowserWindow option = Option.None
26 |
27 | // Reference to the electron process
28 | // This allow us to create new window later for example
29 | let remote = importMember "electron"
30 |
31 | // Data pass on a navigation event
32 | type Navigate =
33 | { Path : string }
34 |
35 | // Create a navigation event which handle path update
36 | let navigation = Event()
37 |
38 |
39 | ///**Description**
40 | ///
41 | ///**Parameters**
42 | /// * `path` - parameter of type `string` - Absolute path of the directory
43 | /// * `segment` - parameter of type `string` - Name to display
44 | ///
45 | ///**Output Type**
46 | /// * `Browser.HTMLLIElement`
47 | ///
48 | let createBreadcrumbSegment path segment =
49 | let root = Browser.document.createElement_li()
50 | let link = Browser.document.createElement_a()
51 | link.href <- "#"
52 | link.innerText <- segment
53 |
54 | link.addEventListener_click(fun _ ->
55 | navigation.Trigger({ Path = path })
56 | null
57 | )
58 |
59 | root.appendChild(link) |> ignore
60 | root
61 |
62 | ///**Description**
63 | ///
64 | ///**Parameters**
65 | /// * `path` - parameter of type `string` - Absolute path to represent
66 | ///
67 | ///**Output Type**
68 | /// * `Browser.HTMLLIElement []`
69 | ///
70 | let generateBreadcrumb (path : string) =
71 | let segments = path.Split(char Path.sep)
72 |
73 | segments
74 | |> Array.mapi(fun index segment ->
75 | let subPath = segments.[0..index] |> String.concat Path.sep
76 | createBreadcrumbSegment subPath segment
77 | )
78 |
79 |
80 | ///**Description**
81 | ///
82 | ///**Parameters**
83 | /// * `path` - parameter of type `string` - Absolute path to the file
84 | /// * `filename` - parameter of type `string` - Name of the file to display
85 | /// * `fileStats` - parameter of type `Node.Fs.Stats` - Stats over the file
86 | ///
87 | ///**Output Type**
88 | /// * `Browser.HTMLTableRowElement`
89 | ///
90 | let generateFileRow path filename (fileStats : Node.Fs.Stats) =
91 | let root = Browser.document.createElement_tr()
92 | let icon = Browser.document.createElement_td()
93 | let name = Browser.document.createElement_td()
94 | let date = Browser.document.createElement_td()
95 | let ``type`` = Browser.document.createElement_td()
96 | let size = Browser.document.createElement_td()
97 |
98 | let isDirectory = fileStats.isDirectory()
99 |
100 | icon.appendChild(Html.createIcon (Mime.determineIcon filename isDirectory)) |> ignore
101 |
102 | name.appendChild(Html.createLink filename) |> ignore
103 | name.addEventListener_click(fun _ ->
104 | navigation.Trigger({ Path = path })
105 | null
106 | )
107 |
108 | date.innerText <- fileStats.birthtime.ToString("dd-MM-yyyy hh:mm:ss")
109 |
110 | ``type``.innerText <- Mime.determineFileType filename isDirectory
111 |
112 | if not isDirectory then
113 | size.innerText <- sizeToHuman fileStats.size
114 |
115 | Html.replaceChildren root [ icon; name; date; ``type``; size]
116 | root
117 |
118 | let init () =
119 | // Register a listener over the navigation event
120 | navigation.Publish.Add(fun ev ->
121 | let path = ev.Path
122 |
123 | // If the path is a direcotry then update the display
124 | if (Fs.statSync(!^Path.join(path))).isDirectory() then
125 | let segments = generateBreadcrumb path
126 |
127 | // Clean and Fill addres bar
128 | Html.replaceChildren Ref.addressBar segments
129 |
130 | Fs.readdir(!^path, fun error files ->
131 | if error.IsSome then
132 | Browser.console.error error.Value
133 |
134 | unbox> files
135 | // Remove all the files starting with '.'
136 | |> List.filter(fun file ->
137 | not (file.StartsWith("."))
138 | )
139 | // Get stats of the files
140 | |> List.map(fun file ->
141 | (file, Fs.statSync(!^Path.join(path,file)))
142 | )
143 | // Render the file list
144 | |> List.map(fun (file, fileStats) ->
145 | generateFileRow (Path.join(path,file)) file fileStats
146 | )
147 | // Clean and Fill files list
148 | |> Html.replaceChildren Ref.filesList
149 | )
150 | else
151 | // Open the file using default application
152 | ChildProcess.exec(path) |> ignore
153 | )
154 |
155 | // Register click on the About menu
156 | Ref.about.addEventListener_click(fun _ ->
157 | if aboutWindow.IsSome then
158 | aboutWindow.Value.show()
159 | else
160 | let options = createEmpty
161 | options?toolbar <- Some false
162 | options.resizable <- Some false
163 | options.show <- Some true
164 | options.height <- Some 250.
165 | options.width <- Some 600.
166 |
167 | let about = remote.BrowserWindow.Create(options)
168 | // For to remove the menu of the window
169 | about.setMenu(unbox null)
170 |
171 | about.on("closed", unbox(fun () ->
172 | // Dereference the about window object.
173 | aboutWindow <- Option.None
174 | )) |> ignore
175 |
176 | about.loadURL(Path.join("file://", Node.Globals.__dirname, "about.html"))
177 |
178 | aboutWindow <- about |> Some
179 |
180 | null
181 | )
182 |
183 | // Register click of the quickAccess menu
184 | // We use the data attribute to find them
185 | for quickAccess in unbox> (Browser.document.querySelectorAll("[data-quick-access]")) do
186 | quickAccess.addEventListener_click(fun ev ->
187 | let element = ev.target :?> Browser.HTMLElement
188 | let quickAccessInfo = element.dataset.Item("quickAccess")
189 | navigation.Trigger({ Path = remote.app.getPath(!!quickAccessInfo) })
190 | null
191 | //updatePath remote.app.getPath()
192 | )
193 |
194 | // Register click on the OpenFolder menu
195 | Ref.openFolder.addEventListener_click(fun _ ->
196 | let options = createEmpty
197 | options.properties <- ResizeArray(["openDirectory"]) |> Some
198 |
199 | let result = remote.dialog.showOpenDialog(options)
200 |
201 | // Make sure something have been selected
202 | if not (isNull result) && result.Count > 0 then
203 | navigation.Trigger({ Path = result.[0] })
204 |
205 | null
206 | )
207 |
208 | // Register click on the Quit menu
209 | Ref.quit.addEventListener_click(fun _ ->
210 | let win = remote.getCurrentWindow()
211 | win.close()
212 | null
213 | )
214 |
215 | navigation.Trigger({ Path = Node.Globals.``process``.cwd() })
216 |
217 | init()
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/.paket/Paket.Restore.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
8 |
9 | true
10 | $(MSBuildThisFileDirectory)
11 | $(MSBuildThisFileDirectory)..\
12 | $(PaketRootPath)paket-files\paket.restore.cached
13 | $(PaketRootPath)paket.lock
14 | /Library/Frameworks/Mono.framework/Commands/mono
15 | mono
16 |
17 | $(PaketRootPath)paket.exe
18 | $(PaketToolsPath)paket.exe
19 | "$(PaketExePath)"
20 | $(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)"
21 |
22 |
23 | <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)"))
24 | dotnet "$(PaketExePath)"
25 |
26 |
27 | "$(PaketExePath)"
28 |
29 | $(PaketRootPath)paket.bootstrapper.exe
30 | $(PaketToolsPath)paket.bootstrapper.exe
31 | "$(PaketBootStrapperExePath)"
32 | $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)"
33 |
34 |
35 |
36 |
37 | true
38 | true
39 |
40 |
41 |
42 |
43 |
44 |
45 | true
46 | $(NoWarn);NU1603;NU1604;NU1605;NU1608
47 |
48 |
49 |
50 |
51 | /usr/bin/shasum "$(PaketRestoreCacheFile)" | /usr/bin/awk '{ print $1 }'
52 | /usr/bin/shasum "$(PaketLockFilePath)" | /usr/bin/awk '{ print $1 }'
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)'))
69 | $([System.IO.File]::ReadAllText('$(PaketLockFilePath)'))
70 | true
71 | false
72 | true
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 | $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).paket.references.cached
90 |
91 | $(MSBuildProjectFullPath).paket.references
92 |
93 | $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references
94 |
95 | $(MSBuildProjectDirectory)\paket.references
96 |
97 | false
98 | true
99 | true
100 | references-file-or-cache-not-found
101 |
102 |
103 |
104 |
105 | $([System.IO.File]::ReadAllText('$(PaketReferencesCachedFilePath)'))
106 | $([System.IO.File]::ReadAllText('$(PaketOriginalReferencesFilePath)'))
107 | references-file
108 | false
109 |
110 |
111 |
112 |
113 | false
114 |
115 |
116 |
117 |
118 | true
119 | target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths)
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 | false
130 | true
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 | $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])
142 | $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])
143 | $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4])
144 |
145 |
146 | %(PaketReferencesFileLinesInfo.PackageVersion)
147 | All
148 | runtime
149 | true
150 |
151 |
152 |
153 |
154 | $(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).paket.clitools
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 | $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[0])
164 | $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[1])
165 |
166 |
167 | %(PaketCliToolFileLinesInfo.PackageVersion)
168 |
169 |
170 |
171 |
175 |
176 |
177 |
178 |
179 |
180 | false
181 |
182 |
183 |
184 |
185 |
186 | <_NuspecFilesNewLocation Include="$(BaseIntermediateOutputPath)$(Configuration)\*.nuspec"/>
187 |
188 |
189 |
190 | $(MSBuildProjectDirectory)/$(MSBuildProjectFile)
191 | true
192 | false
193 | true
194 | $(BaseIntermediateOutputPath)$(Configuration)
195 | $(BaseIntermediateOutputPath)
196 |
197 |
198 |
199 | <_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.nuspec"/>
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
252 |
253 |
294 |
295 |
296 |
297 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@types/node@^7.0.18":
6 | version "7.0.42"
7 | resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.42.tgz#051ff1cdbd1e1b7523ba425bc388147483344dbf"
8 |
9 | abbrev@1:
10 | version "1.1.0"
11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
12 |
13 | acorn-dynamic-import@^2.0.0:
14 | version "2.0.2"
15 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
16 | dependencies:
17 | acorn "^4.0.3"
18 |
19 | acorn@^4.0.3:
20 | version "4.0.13"
21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
22 |
23 | acorn@^5.0.0:
24 | version "5.1.1"
25 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
26 |
27 | ajv-keywords@^2.0.0:
28 | version "2.1.0"
29 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0"
30 |
31 | ajv@^4.9.1:
32 | version "4.11.8"
33 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
34 | dependencies:
35 | co "^4.6.0"
36 | json-stable-stringify "^1.0.1"
37 |
38 | ajv@^5.1.0:
39 | version "5.5.2"
40 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
41 | dependencies:
42 | co "^4.6.0"
43 | fast-deep-equal "^1.0.0"
44 | fast-json-stable-stringify "^2.0.0"
45 | json-schema-traverse "^0.3.0"
46 |
47 | ajv@^5.1.5:
48 | version "5.2.2"
49 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39"
50 | dependencies:
51 | co "^4.6.0"
52 | fast-deep-equal "^1.0.0"
53 | json-schema-traverse "^0.3.0"
54 | json-stable-stringify "^1.0.1"
55 |
56 | align-text@^0.1.1, align-text@^0.1.3:
57 | version "0.1.4"
58 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
59 | dependencies:
60 | kind-of "^3.0.2"
61 | longest "^1.0.1"
62 | repeat-string "^1.5.2"
63 |
64 | ansi-regex@^2.0.0:
65 | version "2.1.1"
66 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
67 |
68 | ansi-regex@^3.0.0:
69 | version "3.0.0"
70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
71 |
72 | ansi-styles@^2.2.1:
73 | version "2.2.1"
74 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
75 |
76 | anymatch@^1.3.0:
77 | version "1.3.2"
78 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
79 | dependencies:
80 | micromatch "^2.1.5"
81 | normalize-path "^2.0.0"
82 |
83 | aproba@^1.0.3:
84 | version "1.1.2"
85 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
86 |
87 | are-we-there-yet@~1.1.2:
88 | version "1.1.4"
89 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
90 | dependencies:
91 | delegates "^1.0.0"
92 | readable-stream "^2.0.6"
93 |
94 | arr-diff@^2.0.0:
95 | version "2.0.0"
96 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
97 | dependencies:
98 | arr-flatten "^1.0.1"
99 |
100 | arr-flatten@^1.0.1:
101 | version "1.1.0"
102 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
103 |
104 | array-find-index@^1.0.1:
105 | version "1.0.2"
106 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
107 |
108 | array-unique@^0.2.1:
109 | version "0.2.1"
110 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
111 |
112 | asar@^0.14.0:
113 | version "0.14.3"
114 | resolved "https://registry.yarnpkg.com/asar/-/asar-0.14.3.tgz#c72a81542a48e3bca459fb1b07ee2b6adfae265d"
115 | dependencies:
116 | chromium-pickle-js "^0.2.0"
117 | commander "^2.9.0"
118 | cuint "^0.2.1"
119 | glob "^6.0.4"
120 | minimatch "^3.0.3"
121 | mkdirp "^0.5.0"
122 | mksnapshot "^0.3.0"
123 | tmp "0.0.28"
124 |
125 | asn1.js@^4.0.0:
126 | version "4.9.1"
127 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
128 | dependencies:
129 | bn.js "^4.0.0"
130 | inherits "^2.0.1"
131 | minimalistic-assert "^1.0.0"
132 |
133 | asn1@~0.2.3:
134 | version "0.2.3"
135 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
136 |
137 | assert-plus@1.0.0, assert-plus@^1.0.0:
138 | version "1.0.0"
139 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
140 |
141 | assert-plus@^0.2.0:
142 | version "0.2.0"
143 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
144 |
145 | assert@^1.1.1:
146 | version "1.4.1"
147 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
148 | dependencies:
149 | util "0.10.3"
150 |
151 | async-each@^1.0.0:
152 | version "1.0.1"
153 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
154 |
155 | async@^2.1.2:
156 | version "2.5.0"
157 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
158 | dependencies:
159 | lodash "^4.14.0"
160 |
161 | asynckit@^0.4.0:
162 | version "0.4.0"
163 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
164 |
165 | author-regex@^1.0.0:
166 | version "1.0.0"
167 | resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450"
168 |
169 | aws-sign2@~0.6.0:
170 | version "0.6.0"
171 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
172 |
173 | aws-sign2@~0.7.0:
174 | version "0.7.0"
175 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
176 |
177 | aws4@^1.2.1:
178 | version "1.6.0"
179 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
180 |
181 | aws4@^1.6.0:
182 | version "1.7.0"
183 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289"
184 |
185 | babel-code-frame@^6.26.0:
186 | version "6.26.0"
187 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
188 | dependencies:
189 | chalk "^1.1.3"
190 | esutils "^2.0.2"
191 | js-tokens "^3.0.2"
192 |
193 | babel-core@^6.26.0:
194 | version "6.26.0"
195 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
196 | dependencies:
197 | babel-code-frame "^6.26.0"
198 | babel-generator "^6.26.0"
199 | babel-helpers "^6.24.1"
200 | babel-messages "^6.23.0"
201 | babel-register "^6.26.0"
202 | babel-runtime "^6.26.0"
203 | babel-template "^6.26.0"
204 | babel-traverse "^6.26.0"
205 | babel-types "^6.26.0"
206 | babylon "^6.18.0"
207 | convert-source-map "^1.5.0"
208 | debug "^2.6.8"
209 | json5 "^0.5.1"
210 | lodash "^4.17.4"
211 | minimatch "^3.0.4"
212 | path-is-absolute "^1.0.1"
213 | private "^0.1.7"
214 | slash "^1.0.0"
215 | source-map "^0.5.6"
216 |
217 | babel-generator@^6.26.0:
218 | version "6.26.0"
219 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
220 | dependencies:
221 | babel-messages "^6.23.0"
222 | babel-runtime "^6.26.0"
223 | babel-types "^6.26.0"
224 | detect-indent "^4.0.0"
225 | jsesc "^1.3.0"
226 | lodash "^4.17.4"
227 | source-map "^0.5.6"
228 | trim-right "^1.0.1"
229 |
230 | babel-helper-call-delegate@^6.24.1:
231 | version "6.24.1"
232 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
233 | dependencies:
234 | babel-helper-hoist-variables "^6.24.1"
235 | babel-runtime "^6.22.0"
236 | babel-traverse "^6.24.1"
237 | babel-types "^6.24.1"
238 |
239 | babel-helper-define-map@^6.24.1:
240 | version "6.26.0"
241 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
242 | dependencies:
243 | babel-helper-function-name "^6.24.1"
244 | babel-runtime "^6.26.0"
245 | babel-types "^6.26.0"
246 | lodash "^4.17.4"
247 |
248 | babel-helper-function-name@^6.24.1:
249 | version "6.24.1"
250 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
251 | dependencies:
252 | babel-helper-get-function-arity "^6.24.1"
253 | babel-runtime "^6.22.0"
254 | babel-template "^6.24.1"
255 | babel-traverse "^6.24.1"
256 | babel-types "^6.24.1"
257 |
258 | babel-helper-get-function-arity@^6.24.1:
259 | version "6.24.1"
260 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
261 | dependencies:
262 | babel-runtime "^6.22.0"
263 | babel-types "^6.24.1"
264 |
265 | babel-helper-hoist-variables@^6.24.1:
266 | version "6.24.1"
267 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
268 | dependencies:
269 | babel-runtime "^6.22.0"
270 | babel-types "^6.24.1"
271 |
272 | babel-helper-optimise-call-expression@^6.24.1:
273 | version "6.24.1"
274 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
275 | dependencies:
276 | babel-runtime "^6.22.0"
277 | babel-types "^6.24.1"
278 |
279 | babel-helper-regex@^6.24.1:
280 | version "6.26.0"
281 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
282 | dependencies:
283 | babel-runtime "^6.26.0"
284 | babel-types "^6.26.0"
285 | lodash "^4.17.4"
286 |
287 | babel-helper-replace-supers@^6.24.1:
288 | version "6.24.1"
289 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
290 | dependencies:
291 | babel-helper-optimise-call-expression "^6.24.1"
292 | babel-messages "^6.23.0"
293 | babel-runtime "^6.22.0"
294 | babel-template "^6.24.1"
295 | babel-traverse "^6.24.1"
296 | babel-types "^6.24.1"
297 |
298 | babel-helpers@^6.24.1:
299 | version "6.24.1"
300 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
301 | dependencies:
302 | babel-runtime "^6.22.0"
303 | babel-template "^6.24.1"
304 |
305 | babel-loader@^7.1.2:
306 | version "7.1.2"
307 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126"
308 | dependencies:
309 | find-cache-dir "^1.0.0"
310 | loader-utils "^1.0.2"
311 | mkdirp "^0.5.1"
312 |
313 | babel-messages@^6.23.0:
314 | version "6.23.0"
315 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
316 | dependencies:
317 | babel-runtime "^6.22.0"
318 |
319 | babel-plugin-check-es2015-constants@^6.22.0:
320 | version "6.22.0"
321 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
322 | dependencies:
323 | babel-runtime "^6.22.0"
324 |
325 | babel-plugin-transform-es2015-arrow-functions@^6.22.0:
326 | version "6.22.0"
327 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
328 | dependencies:
329 | babel-runtime "^6.22.0"
330 |
331 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
332 | version "6.22.0"
333 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
334 | dependencies:
335 | babel-runtime "^6.22.0"
336 |
337 | babel-plugin-transform-es2015-block-scoping@^6.24.1:
338 | version "6.26.0"
339 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
340 | dependencies:
341 | babel-runtime "^6.26.0"
342 | babel-template "^6.26.0"
343 | babel-traverse "^6.26.0"
344 | babel-types "^6.26.0"
345 | lodash "^4.17.4"
346 |
347 | babel-plugin-transform-es2015-classes@^6.24.1:
348 | version "6.24.1"
349 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
350 | dependencies:
351 | babel-helper-define-map "^6.24.1"
352 | babel-helper-function-name "^6.24.1"
353 | babel-helper-optimise-call-expression "^6.24.1"
354 | babel-helper-replace-supers "^6.24.1"
355 | babel-messages "^6.23.0"
356 | babel-runtime "^6.22.0"
357 | babel-template "^6.24.1"
358 | babel-traverse "^6.24.1"
359 | babel-types "^6.24.1"
360 |
361 | babel-plugin-transform-es2015-computed-properties@^6.24.1:
362 | version "6.24.1"
363 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
364 | dependencies:
365 | babel-runtime "^6.22.0"
366 | babel-template "^6.24.1"
367 |
368 | babel-plugin-transform-es2015-destructuring@^6.22.0:
369 | version "6.23.0"
370 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
371 | dependencies:
372 | babel-runtime "^6.22.0"
373 |
374 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
375 | version "6.24.1"
376 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
377 | dependencies:
378 | babel-runtime "^6.22.0"
379 | babel-types "^6.24.1"
380 |
381 | babel-plugin-transform-es2015-for-of@^6.22.0:
382 | version "6.23.0"
383 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
384 | dependencies:
385 | babel-runtime "^6.22.0"
386 |
387 | babel-plugin-transform-es2015-function-name@^6.24.1:
388 | version "6.24.1"
389 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
390 | dependencies:
391 | babel-helper-function-name "^6.24.1"
392 | babel-runtime "^6.22.0"
393 | babel-types "^6.24.1"
394 |
395 | babel-plugin-transform-es2015-literals@^6.22.0:
396 | version "6.22.0"
397 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
398 | dependencies:
399 | babel-runtime "^6.22.0"
400 |
401 | babel-plugin-transform-es2015-modules-amd@^6.24.1:
402 | version "6.24.1"
403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
404 | dependencies:
405 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
406 | babel-runtime "^6.22.0"
407 | babel-template "^6.24.1"
408 |
409 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
410 | version "6.26.0"
411 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
412 | dependencies:
413 | babel-plugin-transform-strict-mode "^6.24.1"
414 | babel-runtime "^6.26.0"
415 | babel-template "^6.26.0"
416 | babel-types "^6.26.0"
417 |
418 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
419 | version "6.24.1"
420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
421 | dependencies:
422 | babel-helper-hoist-variables "^6.24.1"
423 | babel-runtime "^6.22.0"
424 | babel-template "^6.24.1"
425 |
426 | babel-plugin-transform-es2015-modules-umd@^6.24.1:
427 | version "6.24.1"
428 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
429 | dependencies:
430 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
431 | babel-runtime "^6.22.0"
432 | babel-template "^6.24.1"
433 |
434 | babel-plugin-transform-es2015-object-super@^6.24.1:
435 | version "6.24.1"
436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
437 | dependencies:
438 | babel-helper-replace-supers "^6.24.1"
439 | babel-runtime "^6.22.0"
440 |
441 | babel-plugin-transform-es2015-parameters@^6.24.1:
442 | version "6.24.1"
443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
444 | dependencies:
445 | babel-helper-call-delegate "^6.24.1"
446 | babel-helper-get-function-arity "^6.24.1"
447 | babel-runtime "^6.22.0"
448 | babel-template "^6.24.1"
449 | babel-traverse "^6.24.1"
450 | babel-types "^6.24.1"
451 |
452 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
453 | version "6.24.1"
454 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
455 | dependencies:
456 | babel-runtime "^6.22.0"
457 | babel-types "^6.24.1"
458 |
459 | babel-plugin-transform-es2015-spread@^6.22.0:
460 | version "6.22.0"
461 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
462 | dependencies:
463 | babel-runtime "^6.22.0"
464 |
465 | babel-plugin-transform-es2015-sticky-regex@^6.24.1:
466 | version "6.24.1"
467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
468 | dependencies:
469 | babel-helper-regex "^6.24.1"
470 | babel-runtime "^6.22.0"
471 | babel-types "^6.24.1"
472 |
473 | babel-plugin-transform-es2015-template-literals@^6.22.0:
474 | version "6.22.0"
475 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
476 | dependencies:
477 | babel-runtime "^6.22.0"
478 |
479 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
480 | version "6.23.0"
481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
482 | dependencies:
483 | babel-runtime "^6.22.0"
484 |
485 | babel-plugin-transform-es2015-unicode-regex@^6.24.1:
486 | version "6.24.1"
487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
488 | dependencies:
489 | babel-helper-regex "^6.24.1"
490 | babel-runtime "^6.22.0"
491 | regexpu-core "^2.0.0"
492 |
493 | babel-plugin-transform-regenerator@^6.24.1:
494 | version "6.26.0"
495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
496 | dependencies:
497 | regenerator-transform "^0.10.0"
498 |
499 | babel-plugin-transform-runtime@6.23.0:
500 | version "6.23.0"
501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
502 | dependencies:
503 | babel-runtime "^6.22.0"
504 |
505 | babel-plugin-transform-strict-mode@^6.24.1:
506 | version "6.24.1"
507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
508 | dependencies:
509 | babel-runtime "^6.22.0"
510 | babel-types "^6.24.1"
511 |
512 | babel-preset-es2015@6.24.1:
513 | version "6.24.1"
514 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
515 | dependencies:
516 | babel-plugin-check-es2015-constants "^6.22.0"
517 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
518 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
519 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
520 | babel-plugin-transform-es2015-classes "^6.24.1"
521 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
522 | babel-plugin-transform-es2015-destructuring "^6.22.0"
523 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
524 | babel-plugin-transform-es2015-for-of "^6.22.0"
525 | babel-plugin-transform-es2015-function-name "^6.24.1"
526 | babel-plugin-transform-es2015-literals "^6.22.0"
527 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
528 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
529 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
530 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
531 | babel-plugin-transform-es2015-object-super "^6.24.1"
532 | babel-plugin-transform-es2015-parameters "^6.24.1"
533 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
534 | babel-plugin-transform-es2015-spread "^6.22.0"
535 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
536 | babel-plugin-transform-es2015-template-literals "^6.22.0"
537 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
538 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
539 | babel-plugin-transform-regenerator "^6.24.1"
540 |
541 | babel-register@^6.26.0:
542 | version "6.26.0"
543 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
544 | dependencies:
545 | babel-core "^6.26.0"
546 | babel-runtime "^6.26.0"
547 | core-js "^2.5.0"
548 | home-or-tmp "^2.0.0"
549 | lodash "^4.17.4"
550 | mkdirp "^0.5.1"
551 | source-map-support "^0.4.15"
552 |
553 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
554 | version "6.26.0"
555 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
556 | dependencies:
557 | core-js "^2.4.0"
558 | regenerator-runtime "^0.11.0"
559 |
560 | babel-template@^6.24.1, babel-template@^6.26.0:
561 | version "6.26.0"
562 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
563 | dependencies:
564 | babel-runtime "^6.26.0"
565 | babel-traverse "^6.26.0"
566 | babel-types "^6.26.0"
567 | babylon "^6.18.0"
568 | lodash "^4.17.4"
569 |
570 | babel-traverse@^6.24.1, babel-traverse@^6.26.0:
571 | version "6.26.0"
572 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
573 | dependencies:
574 | babel-code-frame "^6.26.0"
575 | babel-messages "^6.23.0"
576 | babel-runtime "^6.26.0"
577 | babel-types "^6.26.0"
578 | babylon "^6.18.0"
579 | debug "^2.6.8"
580 | globals "^9.18.0"
581 | invariant "^2.2.2"
582 | lodash "^4.17.4"
583 |
584 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
585 | version "6.26.0"
586 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
587 | dependencies:
588 | babel-runtime "^6.26.0"
589 | esutils "^2.0.2"
590 | lodash "^4.17.4"
591 | to-fast-properties "^1.0.3"
592 |
593 | babylon@^6.18.0:
594 | version "6.18.0"
595 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
596 |
597 | balanced-match@^1.0.0:
598 | version "1.0.0"
599 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
600 |
601 | base64-js@1.2.0:
602 | version "1.2.0"
603 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
604 |
605 | base64-js@^1.0.2:
606 | version "1.2.1"
607 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
608 |
609 | bcrypt-pbkdf@^1.0.0:
610 | version "1.0.1"
611 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
612 | dependencies:
613 | tweetnacl "^0.14.3"
614 |
615 | big.js@^3.1.3:
616 | version "3.1.3"
617 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
618 |
619 | binary-extensions@^1.0.0:
620 | version "1.10.0"
621 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
622 |
623 | binary@^0.3.0:
624 | version "0.3.0"
625 | resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79"
626 | dependencies:
627 | buffers "~0.1.1"
628 | chainsaw "~0.1.0"
629 |
630 | block-stream@*:
631 | version "0.0.9"
632 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
633 | dependencies:
634 | inherits "~2.0.0"
635 |
636 | bluebird@^3.1.1, bluebird@^3.5.0:
637 | version "3.5.1"
638 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"
639 |
640 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
641 | version "4.11.8"
642 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
643 |
644 | boom@2.x.x:
645 | version "2.10.1"
646 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
647 | dependencies:
648 | hoek "2.x.x"
649 |
650 | brace-expansion@^1.1.7:
651 | version "1.1.8"
652 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
653 | dependencies:
654 | balanced-match "^1.0.0"
655 | concat-map "0.0.1"
656 |
657 | braces@^1.8.2:
658 | version "1.8.5"
659 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
660 | dependencies:
661 | expand-range "^1.8.1"
662 | preserve "^0.2.0"
663 | repeat-element "^1.1.2"
664 |
665 | brorand@^1.0.1:
666 | version "1.1.0"
667 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
668 |
669 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
670 | version "1.0.6"
671 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
672 | dependencies:
673 | buffer-xor "^1.0.2"
674 | cipher-base "^1.0.0"
675 | create-hash "^1.1.0"
676 | evp_bytestokey "^1.0.0"
677 | inherits "^2.0.1"
678 |
679 | browserify-cipher@^1.0.0:
680 | version "1.0.0"
681 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
682 | dependencies:
683 | browserify-aes "^1.0.4"
684 | browserify-des "^1.0.0"
685 | evp_bytestokey "^1.0.0"
686 |
687 | browserify-des@^1.0.0:
688 | version "1.0.0"
689 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
690 | dependencies:
691 | cipher-base "^1.0.1"
692 | des.js "^1.0.0"
693 | inherits "^2.0.1"
694 |
695 | browserify-rsa@^4.0.0:
696 | version "4.0.1"
697 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
698 | dependencies:
699 | bn.js "^4.1.0"
700 | randombytes "^2.0.1"
701 |
702 | browserify-sign@^4.0.0:
703 | version "4.0.4"
704 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"
705 | dependencies:
706 | bn.js "^4.1.1"
707 | browserify-rsa "^4.0.0"
708 | create-hash "^1.1.0"
709 | create-hmac "^1.1.2"
710 | elliptic "^6.0.0"
711 | inherits "^2.0.1"
712 | parse-asn1 "^5.0.0"
713 |
714 | browserify-zlib@^0.1.4:
715 | version "0.1.4"
716 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
717 | dependencies:
718 | pako "~0.2.0"
719 |
720 | buffer-xor@^1.0.2:
721 | version "1.0.3"
722 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
723 |
724 | buffer@^4.3.0:
725 | version "4.9.1"
726 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
727 | dependencies:
728 | base64-js "^1.0.2"
729 | ieee754 "^1.1.4"
730 | isarray "^1.0.0"
731 |
732 | buffers@~0.1.1:
733 | version "0.1.1"
734 | resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb"
735 |
736 | builtin-modules@^1.0.0:
737 | version "1.1.1"
738 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
739 |
740 | builtin-status-codes@^3.0.0:
741 | version "3.0.0"
742 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
743 |
744 | camelcase-keys@^2.0.0:
745 | version "2.1.0"
746 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
747 | dependencies:
748 | camelcase "^2.0.0"
749 | map-obj "^1.0.0"
750 |
751 | camelcase@^1.0.2:
752 | version "1.2.1"
753 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
754 |
755 | camelcase@^2.0.0:
756 | version "2.1.1"
757 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
758 |
759 | camelcase@^4.1.0:
760 | version "4.1.0"
761 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
762 |
763 | caseless@~0.12.0:
764 | version "0.12.0"
765 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
766 |
767 | center-align@^0.1.1:
768 | version "0.1.3"
769 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
770 | dependencies:
771 | align-text "^0.1.3"
772 | lazy-cache "^1.0.3"
773 |
774 | chainsaw@~0.1.0:
775 | version "0.1.0"
776 | resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98"
777 | dependencies:
778 | traverse ">=0.3.0 <0.4"
779 |
780 | chalk@^1.1.3:
781 | version "1.1.3"
782 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
783 | dependencies:
784 | ansi-styles "^2.2.1"
785 | escape-string-regexp "^1.0.2"
786 | has-ansi "^2.0.0"
787 | strip-ansi "^3.0.0"
788 | supports-color "^2.0.0"
789 |
790 | chokidar@^1.7.0:
791 | version "1.7.0"
792 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
793 | dependencies:
794 | anymatch "^1.3.0"
795 | async-each "^1.0.0"
796 | glob-parent "^2.0.0"
797 | inherits "^2.0.1"
798 | is-binary-path "^1.0.0"
799 | is-glob "^2.0.0"
800 | path-is-absolute "^1.0.0"
801 | readdirp "^2.0.0"
802 | optionalDependencies:
803 | fsevents "^1.0.0"
804 |
805 | chromium-pickle-js@^0.2.0:
806 | version "0.2.0"
807 | resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205"
808 |
809 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
810 | version "1.0.4"
811 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
812 | dependencies:
813 | inherits "^2.0.1"
814 | safe-buffer "^5.0.1"
815 |
816 | cliui@^2.1.0:
817 | version "2.1.0"
818 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
819 | dependencies:
820 | center-align "^0.1.1"
821 | right-align "^0.1.1"
822 | wordwrap "0.0.2"
823 |
824 | cliui@^3.2.0:
825 | version "3.2.0"
826 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
827 | dependencies:
828 | string-width "^1.0.1"
829 | strip-ansi "^3.0.1"
830 | wrap-ansi "^2.0.0"
831 |
832 | co@^4.6.0:
833 | version "4.6.0"
834 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
835 |
836 | code-point-at@^1.0.0:
837 | version "1.1.0"
838 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
839 |
840 | combined-stream@1.0.6:
841 | version "1.0.6"
842 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818"
843 | dependencies:
844 | delayed-stream "~1.0.0"
845 |
846 | combined-stream@^1.0.5, combined-stream@~1.0.5:
847 | version "1.0.5"
848 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
849 | dependencies:
850 | delayed-stream "~1.0.0"
851 |
852 | commander@^2.9.0:
853 | version "2.15.1"
854 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
855 |
856 | commondir@^1.0.1:
857 | version "1.0.1"
858 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
859 |
860 | compare-version@^0.1.2:
861 | version "0.1.2"
862 | resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080"
863 |
864 | concat-map@0.0.1:
865 | version "0.0.1"
866 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
867 |
868 | concat-stream@1.6.0:
869 | version "1.6.0"
870 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
871 | dependencies:
872 | inherits "^2.0.3"
873 | readable-stream "^2.2.2"
874 | typedarray "^0.0.6"
875 |
876 | console-browserify@^1.1.0:
877 | version "1.1.0"
878 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
879 | dependencies:
880 | date-now "^0.1.4"
881 |
882 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
883 | version "1.1.0"
884 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
885 |
886 | constants-browserify@^1.0.0:
887 | version "1.0.0"
888 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
889 |
890 | convert-source-map@^1.5.0:
891 | version "1.5.0"
892 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
893 |
894 | core-js@^2.4.0, core-js@^2.5.0:
895 | version "2.5.0"
896 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086"
897 |
898 | core-util-is@1.0.2, core-util-is@~1.0.0:
899 | version "1.0.2"
900 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
901 |
902 | create-ecdh@^4.0.0:
903 | version "4.0.0"
904 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
905 | dependencies:
906 | bn.js "^4.1.0"
907 | elliptic "^6.0.0"
908 |
909 | create-hash@^1.1.0, create-hash@^1.1.2:
910 | version "1.1.3"
911 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
912 | dependencies:
913 | cipher-base "^1.0.1"
914 | inherits "^2.0.1"
915 | ripemd160 "^2.0.0"
916 | sha.js "^2.4.0"
917 |
918 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
919 | version "1.1.6"
920 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06"
921 | dependencies:
922 | cipher-base "^1.0.3"
923 | create-hash "^1.1.0"
924 | inherits "^2.0.1"
925 | ripemd160 "^2.0.0"
926 | safe-buffer "^5.0.1"
927 | sha.js "^2.4.8"
928 |
929 | cross-spawn@^5.0.1:
930 | version "5.1.0"
931 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
932 | dependencies:
933 | lru-cache "^4.0.1"
934 | shebang-command "^1.2.0"
935 | which "^1.2.9"
936 |
937 | cryptiles@2.x.x:
938 | version "2.0.5"
939 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
940 | dependencies:
941 | boom "2.x.x"
942 |
943 | crypto-browserify@^3.11.0:
944 | version "3.11.1"
945 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f"
946 | dependencies:
947 | browserify-cipher "^1.0.0"
948 | browserify-sign "^4.0.0"
949 | create-ecdh "^4.0.0"
950 | create-hash "^1.1.0"
951 | create-hmac "^1.1.0"
952 | diffie-hellman "^5.0.0"
953 | inherits "^2.0.1"
954 | pbkdf2 "^3.0.3"
955 | public-encrypt "^4.0.0"
956 | randombytes "^2.0.0"
957 |
958 | cuint@^0.2.1:
959 | version "0.2.2"
960 | resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b"
961 |
962 | currently-unhandled@^0.4.1:
963 | version "0.4.1"
964 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
965 | dependencies:
966 | array-find-index "^1.0.1"
967 |
968 | d@1:
969 | version "1.0.0"
970 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f"
971 | dependencies:
972 | es5-ext "^0.10.9"
973 |
974 | dashdash@^1.12.0:
975 | version "1.14.1"
976 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
977 | dependencies:
978 | assert-plus "^1.0.0"
979 |
980 | date-now@^0.1.4:
981 | version "0.1.4"
982 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
983 |
984 | debug@2.2.0:
985 | version "2.2.0"
986 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
987 | dependencies:
988 | ms "0.7.1"
989 |
990 | debug@^2.1.3, debug@^2.2.0, debug@^2.6.8:
991 | version "2.6.8"
992 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
993 | dependencies:
994 | ms "2.0.0"
995 |
996 | debug@^3.0.0, debug@^3.1.0:
997 | version "3.1.0"
998 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
999 | dependencies:
1000 | ms "2.0.0"
1001 |
1002 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
1003 | version "1.2.0"
1004 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1005 |
1006 | decompress-zip@0.3.0:
1007 | version "0.3.0"
1008 | resolved "https://registry.yarnpkg.com/decompress-zip/-/decompress-zip-0.3.0.tgz#ae3bcb7e34c65879adfe77e19c30f86602b4bdb0"
1009 | dependencies:
1010 | binary "^0.3.0"
1011 | graceful-fs "^4.1.3"
1012 | mkpath "^0.1.0"
1013 | nopt "^3.0.1"
1014 | q "^1.1.2"
1015 | readable-stream "^1.1.8"
1016 | touch "0.0.3"
1017 |
1018 | deep-extend@~0.4.0:
1019 | version "0.4.2"
1020 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
1021 |
1022 | delayed-stream@~1.0.0:
1023 | version "1.0.0"
1024 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1025 |
1026 | delegates@^1.0.0:
1027 | version "1.0.0"
1028 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1029 |
1030 | des.js@^1.0.0:
1031 | version "1.0.0"
1032 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1033 | dependencies:
1034 | inherits "^2.0.1"
1035 | minimalistic-assert "^1.0.0"
1036 |
1037 | detect-indent@^4.0.0:
1038 | version "4.0.0"
1039 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1040 | dependencies:
1041 | repeating "^2.0.0"
1042 |
1043 | diffie-hellman@^5.0.0:
1044 | version "5.0.2"
1045 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
1046 | dependencies:
1047 | bn.js "^4.1.0"
1048 | miller-rabin "^4.0.0"
1049 | randombytes "^2.0.0"
1050 |
1051 | domain-browser@^1.1.1:
1052 | version "1.1.7"
1053 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
1054 |
1055 | ecc-jsbn@~0.1.1:
1056 | version "0.1.1"
1057 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1058 | dependencies:
1059 | jsbn "~0.1.0"
1060 |
1061 | electron-download@^3.0.1:
1062 | version "3.3.0"
1063 | resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-3.3.0.tgz#2cfd54d6966c019c4d49ad65fbe65cc9cdef68c8"
1064 | dependencies:
1065 | debug "^2.2.0"
1066 | fs-extra "^0.30.0"
1067 | home-path "^1.0.1"
1068 | minimist "^1.2.0"
1069 | nugget "^2.0.0"
1070 | path-exists "^2.1.0"
1071 | rc "^1.1.2"
1072 | semver "^5.3.0"
1073 | sumchecker "^1.2.0"
1074 |
1075 | electron-download@^4.0.0:
1076 | version "4.1.0"
1077 | resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-4.1.0.tgz#bf932c746f2f87ffcc09d1dd472f2ff6b9187845"
1078 | dependencies:
1079 | debug "^2.2.0"
1080 | env-paths "^1.0.0"
1081 | fs-extra "^2.0.0"
1082 | minimist "^1.2.0"
1083 | nugget "^2.0.0"
1084 | path-exists "^3.0.0"
1085 | rc "^1.1.2"
1086 | semver "^5.3.0"
1087 | sumchecker "^2.0.1"
1088 |
1089 | electron-osx-sign@^0.4.1:
1090 | version "0.4.10"
1091 | resolved "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.4.10.tgz#be4f3b89b2a75a1dc5f1e7249081ab2929ca3a26"
1092 | dependencies:
1093 | bluebird "^3.5.0"
1094 | compare-version "^0.1.2"
1095 | debug "^2.6.8"
1096 | isbinaryfile "^3.0.2"
1097 | minimist "^1.2.0"
1098 | plist "^2.1.0"
1099 |
1100 | electron-packager@^12.1.0:
1101 | version "12.1.0"
1102 | resolved "https://registry.yarnpkg.com/electron-packager/-/electron-packager-12.1.0.tgz#048dd4ff3848be19c5873c315b5b312df6215328"
1103 | dependencies:
1104 | asar "^0.14.0"
1105 | debug "^3.0.0"
1106 | electron-download "^4.0.0"
1107 | electron-osx-sign "^0.4.1"
1108 | extract-zip "^1.0.3"
1109 | fs-extra "^5.0.0"
1110 | galactus "^0.2.1"
1111 | get-package-info "^1.0.0"
1112 | nodeify "^1.0.1"
1113 | parse-author "^2.0.0"
1114 | pify "^3.0.0"
1115 | plist "^2.0.0"
1116 | rcedit "^1.0.0"
1117 | resolve "^1.1.6"
1118 | sanitize-filename "^1.6.0"
1119 | semver "^5.3.0"
1120 | yargs-parser "^10.0.0"
1121 |
1122 | electron@^1.7.5:
1123 | version "1.7.6"
1124 | resolved "https://registry.yarnpkg.com/electron/-/electron-1.7.6.tgz#fb69ea31bd03df0eff247f26f0b538bd29b6ee72"
1125 | dependencies:
1126 | "@types/node" "^7.0.18"
1127 | electron-download "^3.0.1"
1128 | extract-zip "^1.0.3"
1129 |
1130 | elliptic@^6.0.0:
1131 | version "6.4.0"
1132 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
1133 | dependencies:
1134 | bn.js "^4.4.0"
1135 | brorand "^1.0.1"
1136 | hash.js "^1.0.0"
1137 | hmac-drbg "^1.0.0"
1138 | inherits "^2.0.1"
1139 | minimalistic-assert "^1.0.0"
1140 | minimalistic-crypto-utils "^1.0.0"
1141 |
1142 | emojis-list@^2.0.0:
1143 | version "2.1.0"
1144 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1145 |
1146 | enhanced-resolve@^3.4.0:
1147 | version "3.4.1"
1148 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e"
1149 | dependencies:
1150 | graceful-fs "^4.1.2"
1151 | memory-fs "^0.4.0"
1152 | object-assign "^4.0.1"
1153 | tapable "^0.2.7"
1154 |
1155 | env-paths@^1.0.0:
1156 | version "1.0.0"
1157 | resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0"
1158 |
1159 | errno@^0.1.3:
1160 | version "0.1.4"
1161 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1162 | dependencies:
1163 | prr "~0.0.0"
1164 |
1165 | error-ex@^1.2.0:
1166 | version "1.3.1"
1167 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1168 | dependencies:
1169 | is-arrayish "^0.2.1"
1170 |
1171 | es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
1172 | version "0.10.29"
1173 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.29.tgz#768eb2dfc4957bcf35fa0568f193ab71ede53fd8"
1174 | dependencies:
1175 | es6-iterator "2"
1176 | es6-symbol "~3.1"
1177 |
1178 | es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
1179 | version "2.0.1"
1180 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
1181 | dependencies:
1182 | d "1"
1183 | es5-ext "^0.10.14"
1184 | es6-symbol "^3.1"
1185 |
1186 | es6-map@^0.1.3:
1187 | version "0.1.5"
1188 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0"
1189 | dependencies:
1190 | d "1"
1191 | es5-ext "~0.10.14"
1192 | es6-iterator "~2.0.1"
1193 | es6-set "~0.1.5"
1194 | es6-symbol "~3.1.1"
1195 | event-emitter "~0.3.5"
1196 |
1197 | es6-promise@^4.0.5:
1198 | version "4.1.1"
1199 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.1.tgz#8811e90915d9a0dba36274f0b242dbda78f9c92a"
1200 |
1201 | es6-set@~0.1.5:
1202 | version "0.1.5"
1203 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
1204 | dependencies:
1205 | d "1"
1206 | es5-ext "~0.10.14"
1207 | es6-iterator "~2.0.1"
1208 | es6-symbol "3.1.1"
1209 | event-emitter "~0.3.5"
1210 |
1211 | es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1:
1212 | version "3.1.1"
1213 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"
1214 | dependencies:
1215 | d "1"
1216 | es5-ext "~0.10.14"
1217 |
1218 | es6-weak-map@^2.0.1:
1219 | version "2.0.2"
1220 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
1221 | dependencies:
1222 | d "1"
1223 | es5-ext "^0.10.14"
1224 | es6-iterator "^2.0.1"
1225 | es6-symbol "^3.1.1"
1226 |
1227 | escape-string-regexp@^1.0.2:
1228 | version "1.0.5"
1229 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1230 |
1231 | escope@^3.6.0:
1232 | version "3.6.0"
1233 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3"
1234 | dependencies:
1235 | es6-map "^0.1.3"
1236 | es6-weak-map "^2.0.1"
1237 | esrecurse "^4.1.0"
1238 | estraverse "^4.1.1"
1239 |
1240 | esrecurse@^4.1.0:
1241 | version "4.2.0"
1242 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
1243 | dependencies:
1244 | estraverse "^4.1.0"
1245 | object-assign "^4.0.1"
1246 |
1247 | estraverse@^4.1.0, estraverse@^4.1.1:
1248 | version "4.2.0"
1249 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
1250 |
1251 | esutils@^2.0.2:
1252 | version "2.0.2"
1253 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1254 |
1255 | event-emitter@~0.3.5:
1256 | version "0.3.5"
1257 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
1258 | dependencies:
1259 | d "1"
1260 | es5-ext "~0.10.14"
1261 |
1262 | events@^1.0.0:
1263 | version "1.1.1"
1264 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1265 |
1266 | evp_bytestokey@^1.0.0:
1267 | version "1.0.2"
1268 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.2.tgz#f66bb88ecd57f71a766821e20283ea38c68bf80a"
1269 | dependencies:
1270 | md5.js "^1.3.4"
1271 | safe-buffer "^5.1.1"
1272 |
1273 | execa@^0.7.0:
1274 | version "0.7.0"
1275 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
1276 | dependencies:
1277 | cross-spawn "^5.0.1"
1278 | get-stream "^3.0.0"
1279 | is-stream "^1.1.0"
1280 | npm-run-path "^2.0.0"
1281 | p-finally "^1.0.0"
1282 | signal-exit "^3.0.0"
1283 | strip-eof "^1.0.0"
1284 |
1285 | expand-brackets@^0.1.4:
1286 | version "0.1.5"
1287 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1288 | dependencies:
1289 | is-posix-bracket "^0.1.0"
1290 |
1291 | expand-range@^1.8.1:
1292 | version "1.8.2"
1293 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1294 | dependencies:
1295 | fill-range "^2.1.0"
1296 |
1297 | extend@~3.0.0, extend@~3.0.1:
1298 | version "3.0.1"
1299 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
1300 |
1301 | extglob@^0.3.1:
1302 | version "0.3.2"
1303 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1304 | dependencies:
1305 | is-extglob "^1.0.0"
1306 |
1307 | extract-zip@^1.0.3:
1308 | version "1.6.5"
1309 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.5.tgz#99a06735b6ea20ea9b705d779acffcc87cff0440"
1310 | dependencies:
1311 | concat-stream "1.6.0"
1312 | debug "2.2.0"
1313 | mkdirp "0.5.0"
1314 | yauzl "2.4.1"
1315 |
1316 | extsprintf@1.3.0, extsprintf@^1.2.0:
1317 | version "1.3.0"
1318 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
1319 |
1320 | fable-loader@^1.0.7:
1321 | version "1.0.7"
1322 | resolved "https://registry.yarnpkg.com/fable-loader/-/fable-loader-1.0.7.tgz#6a3632e7072e1edfdc192bd04a03ec80c7f0ce33"
1323 | dependencies:
1324 | fable-utils "^1.0.1"
1325 |
1326 | fable-utils@^1.0.1:
1327 | version "1.0.1"
1328 | resolved "https://registry.yarnpkg.com/fable-utils/-/fable-utils-1.0.1.tgz#76046b1da137bd3474918532451c1d47651620af"
1329 |
1330 | fable-utils@^1.0.2:
1331 | version "1.0.2"
1332 | resolved "https://registry.yarnpkg.com/fable-utils/-/fable-utils-1.0.2.tgz#3f687ef9c573c4be915396d6656a6888aa92c259"
1333 |
1334 | fast-deep-equal@^1.0.0:
1335 | version "1.0.0"
1336 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1337 |
1338 | fast-json-stable-stringify@^2.0.0:
1339 | version "2.0.0"
1340 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
1341 |
1342 | fd-slicer@~1.0.1:
1343 | version "1.0.1"
1344 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"
1345 | dependencies:
1346 | pend "~1.2.0"
1347 |
1348 | file-size@^1.0.0:
1349 | version "1.0.0"
1350 | resolved "https://registry.yarnpkg.com/file-size/-/file-size-1.0.0.tgz#3338267d5d206bbf60f4df60c19d7ed3813a4657"
1351 |
1352 | filename-regex@^2.0.0:
1353 | version "2.0.1"
1354 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1355 |
1356 | fill-range@^2.1.0:
1357 | version "2.2.3"
1358 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1359 | dependencies:
1360 | is-number "^2.1.0"
1361 | isobject "^2.0.0"
1362 | randomatic "^1.1.3"
1363 | repeat-element "^1.1.2"
1364 | repeat-string "^1.5.2"
1365 |
1366 | find-cache-dir@^1.0.0:
1367 | version "1.0.0"
1368 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
1369 | dependencies:
1370 | commondir "^1.0.1"
1371 | make-dir "^1.0.0"
1372 | pkg-dir "^2.0.0"
1373 |
1374 | find-up@^1.0.0:
1375 | version "1.1.2"
1376 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1377 | dependencies:
1378 | path-exists "^2.0.0"
1379 | pinkie-promise "^2.0.0"
1380 |
1381 | find-up@^2.0.0, find-up@^2.1.0:
1382 | version "2.1.0"
1383 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1384 | dependencies:
1385 | locate-path "^2.0.0"
1386 |
1387 | flora-colossus@^1.0.0:
1388 | version "1.0.0"
1389 | resolved "https://registry.yarnpkg.com/flora-colossus/-/flora-colossus-1.0.0.tgz#54729c361edecee014dd441679e1a37c1d773a45"
1390 | dependencies:
1391 | debug "^3.1.0"
1392 | fs-extra "^4.0.0"
1393 |
1394 | for-in@^1.0.1:
1395 | version "1.0.2"
1396 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1397 |
1398 | for-own@^0.1.4:
1399 | version "0.1.5"
1400 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1401 | dependencies:
1402 | for-in "^1.0.1"
1403 |
1404 | forever-agent@~0.6.1:
1405 | version "0.6.1"
1406 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1407 |
1408 | form-data@~2.1.1:
1409 | version "2.1.4"
1410 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
1411 | dependencies:
1412 | asynckit "^0.4.0"
1413 | combined-stream "^1.0.5"
1414 | mime-types "^2.1.12"
1415 |
1416 | form-data@~2.3.1:
1417 | version "2.3.2"
1418 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099"
1419 | dependencies:
1420 | asynckit "^0.4.0"
1421 | combined-stream "1.0.6"
1422 | mime-types "^2.1.12"
1423 |
1424 | fs-extra@0.26.7:
1425 | version "0.26.7"
1426 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.26.7.tgz#9ae1fdd94897798edab76d0918cf42d0c3184fa9"
1427 | dependencies:
1428 | graceful-fs "^4.1.2"
1429 | jsonfile "^2.1.0"
1430 | klaw "^1.0.0"
1431 | path-is-absolute "^1.0.0"
1432 | rimraf "^2.2.8"
1433 |
1434 | fs-extra@^0.30.0:
1435 | version "0.30.0"
1436 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
1437 | dependencies:
1438 | graceful-fs "^4.1.2"
1439 | jsonfile "^2.1.0"
1440 | klaw "^1.0.0"
1441 | path-is-absolute "^1.0.0"
1442 | rimraf "^2.2.8"
1443 |
1444 | fs-extra@^2.0.0:
1445 | version "2.1.2"
1446 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35"
1447 | dependencies:
1448 | graceful-fs "^4.1.2"
1449 | jsonfile "^2.1.0"
1450 |
1451 | fs-extra@^4.0.0:
1452 | version "4.0.3"
1453 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94"
1454 | dependencies:
1455 | graceful-fs "^4.1.2"
1456 | jsonfile "^4.0.0"
1457 | universalify "^0.1.0"
1458 |
1459 | fs-extra@^5.0.0:
1460 | version "5.0.0"
1461 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd"
1462 | dependencies:
1463 | graceful-fs "^4.1.2"
1464 | jsonfile "^4.0.0"
1465 | universalify "^0.1.0"
1466 |
1467 | fs.realpath@^1.0.0:
1468 | version "1.0.0"
1469 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1470 |
1471 | fsevents@^1.0.0:
1472 | version "1.1.2"
1473 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"
1474 | dependencies:
1475 | nan "^2.3.0"
1476 | node-pre-gyp "^0.6.36"
1477 |
1478 | fstream-ignore@^1.0.5:
1479 | version "1.0.5"
1480 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1481 | dependencies:
1482 | fstream "^1.0.0"
1483 | inherits "2"
1484 | minimatch "^3.0.0"
1485 |
1486 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
1487 | version "1.0.11"
1488 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
1489 | dependencies:
1490 | graceful-fs "^4.1.2"
1491 | inherits "~2.0.0"
1492 | mkdirp ">=0.5 0"
1493 | rimraf "2"
1494 |
1495 | galactus@^0.2.1:
1496 | version "0.2.1"
1497 | resolved "https://registry.yarnpkg.com/galactus/-/galactus-0.2.1.tgz#cbed2d20a40c1f5679a35908e2b9415733e78db9"
1498 | dependencies:
1499 | debug "^3.1.0"
1500 | flora-colossus "^1.0.0"
1501 | fs-extra "^4.0.0"
1502 |
1503 | gauge@~2.7.3:
1504 | version "2.7.4"
1505 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1506 | dependencies:
1507 | aproba "^1.0.3"
1508 | console-control-strings "^1.0.0"
1509 | has-unicode "^2.0.0"
1510 | object-assign "^4.1.0"
1511 | signal-exit "^3.0.0"
1512 | string-width "^1.0.1"
1513 | strip-ansi "^3.0.1"
1514 | wide-align "^1.1.0"
1515 |
1516 | get-caller-file@^1.0.1:
1517 | version "1.0.2"
1518 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1519 |
1520 | get-package-info@^1.0.0:
1521 | version "1.0.0"
1522 | resolved "https://registry.yarnpkg.com/get-package-info/-/get-package-info-1.0.0.tgz#6432796563e28113cd9474dbbd00052985a4999c"
1523 | dependencies:
1524 | bluebird "^3.1.1"
1525 | debug "^2.2.0"
1526 | lodash.get "^4.0.0"
1527 | read-pkg-up "^2.0.0"
1528 |
1529 | get-stdin@^4.0.1:
1530 | version "4.0.1"
1531 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
1532 |
1533 | get-stream@^3.0.0:
1534 | version "3.0.0"
1535 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
1536 |
1537 | getpass@^0.1.1:
1538 | version "0.1.7"
1539 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
1540 | dependencies:
1541 | assert-plus "^1.0.0"
1542 |
1543 | glob-base@^0.3.0:
1544 | version "0.3.0"
1545 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1546 | dependencies:
1547 | glob-parent "^2.0.0"
1548 | is-glob "^2.0.0"
1549 |
1550 | glob-parent@^2.0.0:
1551 | version "2.0.0"
1552 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1553 | dependencies:
1554 | is-glob "^2.0.0"
1555 |
1556 | glob@^6.0.4:
1557 | version "6.0.4"
1558 | resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"
1559 | dependencies:
1560 | inflight "^1.0.4"
1561 | inherits "2"
1562 | minimatch "2 || 3"
1563 | once "^1.3.0"
1564 | path-is-absolute "^1.0.0"
1565 |
1566 | glob@^7.0.5:
1567 | version "7.1.2"
1568 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1569 | dependencies:
1570 | fs.realpath "^1.0.0"
1571 | inflight "^1.0.4"
1572 | inherits "2"
1573 | minimatch "^3.0.4"
1574 | once "^1.3.0"
1575 | path-is-absolute "^1.0.0"
1576 |
1577 | globals@^9.18.0:
1578 | version "9.18.0"
1579 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1580 |
1581 | graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
1582 | version "4.1.11"
1583 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1584 |
1585 | har-schema@^1.0.5:
1586 | version "1.0.5"
1587 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e"
1588 |
1589 | har-schema@^2.0.0:
1590 | version "2.0.0"
1591 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
1592 |
1593 | har-validator@~4.2.1:
1594 | version "4.2.1"
1595 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a"
1596 | dependencies:
1597 | ajv "^4.9.1"
1598 | har-schema "^1.0.5"
1599 |
1600 | har-validator@~5.0.3:
1601 | version "5.0.3"
1602 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
1603 | dependencies:
1604 | ajv "^5.1.0"
1605 | har-schema "^2.0.0"
1606 |
1607 | has-ansi@^2.0.0:
1608 | version "2.0.0"
1609 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1610 | dependencies:
1611 | ansi-regex "^2.0.0"
1612 |
1613 | has-flag@^2.0.0:
1614 | version "2.0.0"
1615 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
1616 |
1617 | has-unicode@^2.0.0:
1618 | version "2.0.1"
1619 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1620 |
1621 | hash-base@^2.0.0:
1622 | version "2.0.2"
1623 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
1624 | dependencies:
1625 | inherits "^2.0.1"
1626 |
1627 | hash-base@^3.0.0:
1628 | version "3.0.4"
1629 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918"
1630 | dependencies:
1631 | inherits "^2.0.1"
1632 | safe-buffer "^5.0.1"
1633 |
1634 | hash.js@^1.0.0, hash.js@^1.0.3:
1635 | version "1.1.3"
1636 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846"
1637 | dependencies:
1638 | inherits "^2.0.3"
1639 | minimalistic-assert "^1.0.0"
1640 |
1641 | hawk@~3.1.3:
1642 | version "3.1.3"
1643 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1644 | dependencies:
1645 | boom "2.x.x"
1646 | cryptiles "2.x.x"
1647 | hoek "2.x.x"
1648 | sntp "1.x.x"
1649 |
1650 | hmac-drbg@^1.0.0:
1651 | version "1.0.1"
1652 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
1653 | dependencies:
1654 | hash.js "^1.0.3"
1655 | minimalistic-assert "^1.0.0"
1656 | minimalistic-crypto-utils "^1.0.1"
1657 |
1658 | hoek@2.x.x:
1659 | version "2.16.3"
1660 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1661 |
1662 | home-or-tmp@^2.0.0:
1663 | version "2.0.0"
1664 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1665 | dependencies:
1666 | os-homedir "^1.0.0"
1667 | os-tmpdir "^1.0.1"
1668 |
1669 | home-path@^1.0.1:
1670 | version "1.0.5"
1671 | resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.5.tgz#788b29815b12d53bacf575648476e6f9041d133f"
1672 |
1673 | hosted-git-info@^2.1.4:
1674 | version "2.5.0"
1675 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
1676 |
1677 | http-signature@~1.1.0:
1678 | version "1.1.1"
1679 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1680 | dependencies:
1681 | assert-plus "^0.2.0"
1682 | jsprim "^1.2.2"
1683 | sshpk "^1.7.0"
1684 |
1685 | http-signature@~1.2.0:
1686 | version "1.2.0"
1687 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
1688 | dependencies:
1689 | assert-plus "^1.0.0"
1690 | jsprim "^1.2.2"
1691 | sshpk "^1.7.0"
1692 |
1693 | https-browserify@0.0.1:
1694 | version "0.0.1"
1695 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1696 |
1697 | ieee754@^1.1.4:
1698 | version "1.1.8"
1699 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1700 |
1701 | indent-string@^2.1.0:
1702 | version "2.1.0"
1703 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
1704 | dependencies:
1705 | repeating "^2.0.0"
1706 |
1707 | indexof@0.0.1:
1708 | version "0.0.1"
1709 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1710 |
1711 | inflight@^1.0.4:
1712 | version "1.0.6"
1713 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1714 | dependencies:
1715 | once "^1.3.0"
1716 | wrappy "1"
1717 |
1718 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
1719 | version "2.0.3"
1720 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1721 |
1722 | inherits@2.0.1:
1723 | version "2.0.1"
1724 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1725 |
1726 | ini@~1.3.0:
1727 | version "1.3.4"
1728 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1729 |
1730 | interpret@^1.0.0:
1731 | version "1.0.3"
1732 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
1733 |
1734 | invariant@^2.2.2:
1735 | version "2.2.2"
1736 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1737 | dependencies:
1738 | loose-envify "^1.0.0"
1739 |
1740 | invert-kv@^1.0.0:
1741 | version "1.0.0"
1742 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1743 |
1744 | is-arrayish@^0.2.1:
1745 | version "0.2.1"
1746 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1747 |
1748 | is-binary-path@^1.0.0:
1749 | version "1.0.1"
1750 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1751 | dependencies:
1752 | binary-extensions "^1.0.0"
1753 |
1754 | is-buffer@^1.1.5:
1755 | version "1.1.5"
1756 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc"
1757 |
1758 | is-builtin-module@^1.0.0:
1759 | version "1.0.0"
1760 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1761 | dependencies:
1762 | builtin-modules "^1.0.0"
1763 |
1764 | is-dotfile@^1.0.0:
1765 | version "1.0.3"
1766 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1767 |
1768 | is-equal-shallow@^0.1.3:
1769 | version "0.1.3"
1770 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1771 | dependencies:
1772 | is-primitive "^2.0.0"
1773 |
1774 | is-extendable@^0.1.1:
1775 | version "0.1.1"
1776 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1777 |
1778 | is-extglob@^1.0.0:
1779 | version "1.0.0"
1780 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1781 |
1782 | is-finite@^1.0.0:
1783 | version "1.0.2"
1784 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1785 | dependencies:
1786 | number-is-nan "^1.0.0"
1787 |
1788 | is-fullwidth-code-point@^1.0.0:
1789 | version "1.0.0"
1790 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1791 | dependencies:
1792 | number-is-nan "^1.0.0"
1793 |
1794 | is-fullwidth-code-point@^2.0.0:
1795 | version "2.0.0"
1796 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1797 |
1798 | is-glob@^2.0.0, is-glob@^2.0.1:
1799 | version "2.0.1"
1800 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1801 | dependencies:
1802 | is-extglob "^1.0.0"
1803 |
1804 | is-number@^2.1.0:
1805 | version "2.1.0"
1806 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1807 | dependencies:
1808 | kind-of "^3.0.2"
1809 |
1810 | is-number@^3.0.0:
1811 | version "3.0.0"
1812 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
1813 | dependencies:
1814 | kind-of "^3.0.2"
1815 |
1816 | is-posix-bracket@^0.1.0:
1817 | version "0.1.1"
1818 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1819 |
1820 | is-primitive@^2.0.0:
1821 | version "2.0.0"
1822 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1823 |
1824 | is-promise@~1, is-promise@~1.0.0:
1825 | version "1.0.1"
1826 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-1.0.1.tgz#31573761c057e33c2e91aab9e96da08cefbe76e5"
1827 |
1828 | is-stream@^1.1.0:
1829 | version "1.1.0"
1830 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1831 |
1832 | is-typedarray@~1.0.0:
1833 | version "1.0.0"
1834 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1835 |
1836 | is-utf8@^0.2.0:
1837 | version "0.2.1"
1838 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1839 |
1840 | isarray@0.0.1:
1841 | version "0.0.1"
1842 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1843 |
1844 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1845 | version "1.0.0"
1846 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1847 |
1848 | isbinaryfile@^3.0.2:
1849 | version "3.0.2"
1850 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621"
1851 |
1852 | isexe@^2.0.0:
1853 | version "2.0.0"
1854 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1855 |
1856 | isobject@^2.0.0:
1857 | version "2.1.0"
1858 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1859 | dependencies:
1860 | isarray "1.0.0"
1861 |
1862 | isstream@~0.1.2:
1863 | version "0.1.2"
1864 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1865 |
1866 | js-tokens@^3.0.0, js-tokens@^3.0.2:
1867 | version "3.0.2"
1868 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1869 |
1870 | jsbn@~0.1.0:
1871 | version "0.1.1"
1872 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
1873 |
1874 | jsesc@^1.3.0:
1875 | version "1.3.0"
1876 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1877 |
1878 | jsesc@~0.5.0:
1879 | version "0.5.0"
1880 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1881 |
1882 | json-loader@^0.5.4:
1883 | version "0.5.7"
1884 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
1885 |
1886 | json-schema-traverse@^0.3.0:
1887 | version "0.3.1"
1888 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
1889 |
1890 | json-schema@0.2.3:
1891 | version "0.2.3"
1892 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1893 |
1894 | json-stable-stringify@^1.0.1:
1895 | version "1.0.1"
1896 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1897 | dependencies:
1898 | jsonify "~0.0.0"
1899 |
1900 | json-stringify-safe@~5.0.1:
1901 | version "5.0.1"
1902 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1903 |
1904 | json5@^0.5.0, json5@^0.5.1:
1905 | version "0.5.1"
1906 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1907 |
1908 | jsonfile@^2.1.0:
1909 | version "2.4.0"
1910 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
1911 | optionalDependencies:
1912 | graceful-fs "^4.1.6"
1913 |
1914 | jsonfile@^4.0.0:
1915 | version "4.0.0"
1916 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
1917 | optionalDependencies:
1918 | graceful-fs "^4.1.6"
1919 |
1920 | jsonify@~0.0.0:
1921 | version "0.0.0"
1922 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1923 |
1924 | jsprim@^1.2.2:
1925 | version "1.4.1"
1926 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
1927 | dependencies:
1928 | assert-plus "1.0.0"
1929 | extsprintf "1.3.0"
1930 | json-schema "0.2.3"
1931 | verror "1.10.0"
1932 |
1933 | kind-of@^3.0.2:
1934 | version "3.2.2"
1935 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1936 | dependencies:
1937 | is-buffer "^1.1.5"
1938 |
1939 | kind-of@^4.0.0:
1940 | version "4.0.0"
1941 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
1942 | dependencies:
1943 | is-buffer "^1.1.5"
1944 |
1945 | klaw@^1.0.0:
1946 | version "1.3.1"
1947 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
1948 | optionalDependencies:
1949 | graceful-fs "^4.1.9"
1950 |
1951 | lazy-cache@^1.0.3:
1952 | version "1.0.4"
1953 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1954 |
1955 | lcid@^1.0.0:
1956 | version "1.0.0"
1957 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1958 | dependencies:
1959 | invert-kv "^1.0.0"
1960 |
1961 | load-json-file@^1.0.0:
1962 | version "1.1.0"
1963 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1964 | dependencies:
1965 | graceful-fs "^4.1.2"
1966 | parse-json "^2.2.0"
1967 | pify "^2.0.0"
1968 | pinkie-promise "^2.0.0"
1969 | strip-bom "^2.0.0"
1970 |
1971 | load-json-file@^2.0.0:
1972 | version "2.0.0"
1973 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
1974 | dependencies:
1975 | graceful-fs "^4.1.2"
1976 | parse-json "^2.2.0"
1977 | pify "^2.0.0"
1978 | strip-bom "^3.0.0"
1979 |
1980 | loader-runner@^2.3.0:
1981 | version "2.3.0"
1982 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
1983 |
1984 | loader-utils@^1.0.2, loader-utils@^1.1.0:
1985 | version "1.1.0"
1986 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
1987 | dependencies:
1988 | big.js "^3.1.3"
1989 | emojis-list "^2.0.0"
1990 | json5 "^0.5.0"
1991 |
1992 | locate-path@^2.0.0:
1993 | version "2.0.0"
1994 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1995 | dependencies:
1996 | p-locate "^2.0.0"
1997 | path-exists "^3.0.0"
1998 |
1999 | lodash.get@^4.0.0:
2000 | version "4.4.2"
2001 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
2002 |
2003 | lodash@^4.14.0, lodash@^4.17.4:
2004 | version "4.17.4"
2005 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2006 |
2007 | loglevel@^1.4.1:
2008 | version "1.4.1"
2009 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.4.1.tgz#95b383f91a3c2756fd4ab093667e4309161f2bcd"
2010 |
2011 | longest@^1.0.1:
2012 | version "1.0.1"
2013 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2014 |
2015 | loose-envify@^1.0.0:
2016 | version "1.3.1"
2017 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2018 | dependencies:
2019 | js-tokens "^3.0.0"
2020 |
2021 | loud-rejection@^1.0.0:
2022 | version "1.6.0"
2023 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
2024 | dependencies:
2025 | currently-unhandled "^0.4.1"
2026 | signal-exit "^3.0.0"
2027 |
2028 | lru-cache@^4.0.1:
2029 | version "4.1.1"
2030 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55"
2031 | dependencies:
2032 | pseudomap "^1.0.2"
2033 | yallist "^2.1.2"
2034 |
2035 | make-dir@^1.0.0:
2036 | version "1.0.0"
2037 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978"
2038 | dependencies:
2039 | pify "^2.3.0"
2040 |
2041 | map-obj@^1.0.0, map-obj@^1.0.1:
2042 | version "1.0.1"
2043 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2044 |
2045 | md5.js@^1.3.4:
2046 | version "1.3.4"
2047 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d"
2048 | dependencies:
2049 | hash-base "^3.0.0"
2050 | inherits "^2.0.1"
2051 |
2052 | mem@^1.1.0:
2053 | version "1.1.0"
2054 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
2055 | dependencies:
2056 | mimic-fn "^1.0.0"
2057 |
2058 | memory-fs@^0.4.0, memory-fs@~0.4.1:
2059 | version "0.4.1"
2060 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
2061 | dependencies:
2062 | errno "^0.1.3"
2063 | readable-stream "^2.0.1"
2064 |
2065 | meow@^3.1.0:
2066 | version "3.7.0"
2067 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2068 | dependencies:
2069 | camelcase-keys "^2.0.0"
2070 | decamelize "^1.1.2"
2071 | loud-rejection "^1.0.0"
2072 | map-obj "^1.0.1"
2073 | minimist "^1.1.3"
2074 | normalize-package-data "^2.3.4"
2075 | object-assign "^4.0.1"
2076 | read-pkg-up "^1.0.1"
2077 | redent "^1.0.0"
2078 | trim-newlines "^1.0.0"
2079 |
2080 | micromatch@^2.1.5:
2081 | version "2.3.11"
2082 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2083 | dependencies:
2084 | arr-diff "^2.0.0"
2085 | array-unique "^0.2.1"
2086 | braces "^1.8.2"
2087 | expand-brackets "^0.1.4"
2088 | extglob "^0.3.1"
2089 | filename-regex "^2.0.0"
2090 | is-extglob "^1.0.0"
2091 | is-glob "^2.0.1"
2092 | kind-of "^3.0.2"
2093 | normalize-path "^2.0.1"
2094 | object.omit "^2.0.0"
2095 | parse-glob "^3.0.4"
2096 | regex-cache "^0.4.2"
2097 |
2098 | miller-rabin@^4.0.0:
2099 | version "4.0.0"
2100 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
2101 | dependencies:
2102 | bn.js "^4.0.0"
2103 | brorand "^1.0.1"
2104 |
2105 | mime-db@~1.29.0:
2106 | version "1.29.0"
2107 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878"
2108 |
2109 | mime-db@~1.33.0:
2110 | version "1.33.0"
2111 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db"
2112 |
2113 | mime-types@^2.1.12, mime-types@~2.1.7:
2114 | version "2.1.16"
2115 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23"
2116 | dependencies:
2117 | mime-db "~1.29.0"
2118 |
2119 | mime-types@~2.1.17:
2120 | version "2.1.18"
2121 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8"
2122 | dependencies:
2123 | mime-db "~1.33.0"
2124 |
2125 | mimic-fn@^1.0.0:
2126 | version "1.1.0"
2127 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
2128 |
2129 | minimalistic-assert@^1.0.0:
2130 | version "1.0.0"
2131 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2132 |
2133 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
2134 | version "1.0.1"
2135 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
2136 |
2137 | "minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4:
2138 | version "3.0.4"
2139 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2140 | dependencies:
2141 | brace-expansion "^1.1.7"
2142 |
2143 | minimist@0.0.8:
2144 | version "0.0.8"
2145 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2146 |
2147 | minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0:
2148 | version "1.2.0"
2149 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2150 |
2151 | mkdirp@0.5.0:
2152 | version "0.5.0"
2153 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12"
2154 | dependencies:
2155 | minimist "0.0.8"
2156 |
2157 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
2158 | version "0.5.1"
2159 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2160 | dependencies:
2161 | minimist "0.0.8"
2162 |
2163 | mkpath@^0.1.0:
2164 | version "0.1.0"
2165 | resolved "https://registry.yarnpkg.com/mkpath/-/mkpath-0.1.0.tgz#7554a6f8d871834cc97b5462b122c4c124d6de91"
2166 |
2167 | mksnapshot@^0.3.0:
2168 | version "0.3.1"
2169 | resolved "https://registry.yarnpkg.com/mksnapshot/-/mksnapshot-0.3.1.tgz#2501c05657436d742ce958a4ff92c77e40dd37e6"
2170 | dependencies:
2171 | decompress-zip "0.3.0"
2172 | fs-extra "0.26.7"
2173 | request "^2.79.0"
2174 |
2175 | ms@0.7.1:
2176 | version "0.7.1"
2177 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2178 |
2179 | ms@2.0.0:
2180 | version "2.0.0"
2181 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2182 |
2183 | nan@^2.3.0:
2184 | version "2.6.2"
2185 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
2186 |
2187 | node-libs-browser@^2.0.0:
2188 | version "2.0.0"
2189 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
2190 | dependencies:
2191 | assert "^1.1.1"
2192 | browserify-zlib "^0.1.4"
2193 | buffer "^4.3.0"
2194 | console-browserify "^1.1.0"
2195 | constants-browserify "^1.0.0"
2196 | crypto-browserify "^3.11.0"
2197 | domain-browser "^1.1.1"
2198 | events "^1.0.0"
2199 | https-browserify "0.0.1"
2200 | os-browserify "^0.2.0"
2201 | path-browserify "0.0.0"
2202 | process "^0.11.0"
2203 | punycode "^1.2.4"
2204 | querystring-es3 "^0.2.0"
2205 | readable-stream "^2.0.5"
2206 | stream-browserify "^2.0.1"
2207 | stream-http "^2.3.1"
2208 | string_decoder "^0.10.25"
2209 | timers-browserify "^2.0.2"
2210 | tty-browserify "0.0.0"
2211 | url "^0.11.0"
2212 | util "^0.10.3"
2213 | vm-browserify "0.0.4"
2214 |
2215 | node-pre-gyp@^0.6.36:
2216 | version "0.6.36"
2217 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786"
2218 | dependencies:
2219 | mkdirp "^0.5.1"
2220 | nopt "^4.0.1"
2221 | npmlog "^4.0.2"
2222 | rc "^1.1.7"
2223 | request "^2.81.0"
2224 | rimraf "^2.6.1"
2225 | semver "^5.3.0"
2226 | tar "^2.2.1"
2227 | tar-pack "^3.4.0"
2228 |
2229 | nodeify@^1.0.1:
2230 | version "1.0.1"
2231 | resolved "https://registry.yarnpkg.com/nodeify/-/nodeify-1.0.1.tgz#64ab69a7bdbaf03ce107b4f0335c87c0b9e91b1d"
2232 | dependencies:
2233 | is-promise "~1.0.0"
2234 | promise "~1.3.0"
2235 |
2236 | nopt@^3.0.1:
2237 | version "3.0.6"
2238 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2239 | dependencies:
2240 | abbrev "1"
2241 |
2242 | nopt@^4.0.1:
2243 | version "4.0.1"
2244 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2245 | dependencies:
2246 | abbrev "1"
2247 | osenv "^0.1.4"
2248 |
2249 | nopt@~1.0.10:
2250 | version "1.0.10"
2251 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
2252 | dependencies:
2253 | abbrev "1"
2254 |
2255 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
2256 | version "2.4.0"
2257 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f"
2258 | dependencies:
2259 | hosted-git-info "^2.1.4"
2260 | is-builtin-module "^1.0.0"
2261 | semver "2 || 3 || 4 || 5"
2262 | validate-npm-package-license "^3.0.1"
2263 |
2264 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2265 | version "2.1.1"
2266 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2267 | dependencies:
2268 | remove-trailing-separator "^1.0.1"
2269 |
2270 | npm-run-path@^2.0.0:
2271 | version "2.0.2"
2272 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
2273 | dependencies:
2274 | path-key "^2.0.0"
2275 |
2276 | npmlog@^4.0.2:
2277 | version "4.1.2"
2278 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2279 | dependencies:
2280 | are-we-there-yet "~1.1.2"
2281 | console-control-strings "~1.1.0"
2282 | gauge "~2.7.3"
2283 | set-blocking "~2.0.0"
2284 |
2285 | nugget@^2.0.0:
2286 | version "2.0.1"
2287 | resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0"
2288 | dependencies:
2289 | debug "^2.1.3"
2290 | minimist "^1.1.0"
2291 | pretty-bytes "^1.0.2"
2292 | progress-stream "^1.1.0"
2293 | request "^2.45.0"
2294 | single-line-log "^1.1.2"
2295 | throttleit "0.0.2"
2296 |
2297 | number-is-nan@^1.0.0:
2298 | version "1.0.1"
2299 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2300 |
2301 | oauth-sign@~0.8.1, oauth-sign@~0.8.2:
2302 | version "0.8.2"
2303 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2304 |
2305 | object-assign@^4.0.1, object-assign@^4.1.0:
2306 | version "4.1.1"
2307 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2308 |
2309 | object-keys@~0.4.0:
2310 | version "0.4.0"
2311 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336"
2312 |
2313 | object.omit@^2.0.0:
2314 | version "2.0.1"
2315 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2316 | dependencies:
2317 | for-own "^0.1.4"
2318 | is-extendable "^0.1.1"
2319 |
2320 | once@^1.3.0, once@^1.3.3:
2321 | version "1.4.0"
2322 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2323 | dependencies:
2324 | wrappy "1"
2325 |
2326 | os-browserify@^0.2.0:
2327 | version "0.2.1"
2328 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
2329 |
2330 | os-homedir@^1.0.0:
2331 | version "1.0.2"
2332 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2333 |
2334 | os-locale@^2.0.0:
2335 | version "2.1.0"
2336 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2"
2337 | dependencies:
2338 | execa "^0.7.0"
2339 | lcid "^1.0.0"
2340 | mem "^1.1.0"
2341 |
2342 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1:
2343 | version "1.0.2"
2344 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2345 |
2346 | osenv@^0.1.4:
2347 | version "0.1.4"
2348 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
2349 | dependencies:
2350 | os-homedir "^1.0.0"
2351 | os-tmpdir "^1.0.0"
2352 |
2353 | p-finally@^1.0.0:
2354 | version "1.0.0"
2355 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
2356 |
2357 | p-limit@^1.1.0:
2358 | version "1.1.0"
2359 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
2360 |
2361 | p-locate@^2.0.0:
2362 | version "2.0.0"
2363 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
2364 | dependencies:
2365 | p-limit "^1.1.0"
2366 |
2367 | pako@~0.2.0:
2368 | version "0.2.9"
2369 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2370 |
2371 | parse-asn1@^5.0.0:
2372 | version "5.1.0"
2373 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712"
2374 | dependencies:
2375 | asn1.js "^4.0.0"
2376 | browserify-aes "^1.0.0"
2377 | create-hash "^1.1.0"
2378 | evp_bytestokey "^1.0.0"
2379 | pbkdf2 "^3.0.3"
2380 |
2381 | parse-author@^2.0.0:
2382 | version "2.0.0"
2383 | resolved "https://registry.yarnpkg.com/parse-author/-/parse-author-2.0.0.tgz#d3460bf1ddd0dfaeed42da754242e65fb684a81f"
2384 | dependencies:
2385 | author-regex "^1.0.0"
2386 |
2387 | parse-glob@^3.0.4:
2388 | version "3.0.4"
2389 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2390 | dependencies:
2391 | glob-base "^0.3.0"
2392 | is-dotfile "^1.0.0"
2393 | is-extglob "^1.0.0"
2394 | is-glob "^2.0.0"
2395 |
2396 | parse-json@^2.2.0:
2397 | version "2.2.0"
2398 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2399 | dependencies:
2400 | error-ex "^1.2.0"
2401 |
2402 | path-browserify@0.0.0:
2403 | version "0.0.0"
2404 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2405 |
2406 | path-exists@^2.0.0, path-exists@^2.1.0:
2407 | version "2.1.0"
2408 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2409 | dependencies:
2410 | pinkie-promise "^2.0.0"
2411 |
2412 | path-exists@^3.0.0:
2413 | version "3.0.0"
2414 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
2415 |
2416 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2417 | version "1.0.1"
2418 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2419 |
2420 | path-key@^2.0.0:
2421 | version "2.0.1"
2422 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
2423 |
2424 | path-parse@^1.0.5:
2425 | version "1.0.5"
2426 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
2427 |
2428 | path-type@^1.0.0:
2429 | version "1.1.0"
2430 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2431 | dependencies:
2432 | graceful-fs "^4.1.2"
2433 | pify "^2.0.0"
2434 | pinkie-promise "^2.0.0"
2435 |
2436 | path-type@^2.0.0:
2437 | version "2.0.0"
2438 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
2439 | dependencies:
2440 | pify "^2.0.0"
2441 |
2442 | pbkdf2@^3.0.3:
2443 | version "3.0.13"
2444 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.13.tgz#c37d295531e786b1da3e3eadc840426accb0ae25"
2445 | dependencies:
2446 | create-hash "^1.1.2"
2447 | create-hmac "^1.1.4"
2448 | ripemd160 "^2.0.1"
2449 | safe-buffer "^5.0.1"
2450 | sha.js "^2.4.8"
2451 |
2452 | pend@~1.2.0:
2453 | version "1.2.0"
2454 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
2455 |
2456 | performance-now@^0.2.0:
2457 | version "0.2.0"
2458 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
2459 |
2460 | performance-now@^2.1.0:
2461 | version "2.1.0"
2462 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2463 |
2464 | pify@^2.0.0, pify@^2.3.0:
2465 | version "2.3.0"
2466 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2467 |
2468 | pify@^3.0.0:
2469 | version "3.0.0"
2470 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
2471 |
2472 | pinkie-promise@^2.0.0:
2473 | version "2.0.1"
2474 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2475 | dependencies:
2476 | pinkie "^2.0.0"
2477 |
2478 | pinkie@^2.0.0:
2479 | version "2.0.4"
2480 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2481 |
2482 | pkg-dir@^2.0.0:
2483 | version "2.0.0"
2484 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
2485 | dependencies:
2486 | find-up "^2.1.0"
2487 |
2488 | plist@^2.0.0, plist@^2.1.0:
2489 | version "2.1.0"
2490 | resolved "https://registry.yarnpkg.com/plist/-/plist-2.1.0.tgz#57ccdb7a0821df21831217a3cad54e3e146a1025"
2491 | dependencies:
2492 | base64-js "1.2.0"
2493 | xmlbuilder "8.2.2"
2494 | xmldom "0.1.x"
2495 |
2496 | preserve@^0.2.0:
2497 | version "0.2.0"
2498 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2499 |
2500 | pretty-bytes@^1.0.2:
2501 | version "1.0.4"
2502 | resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84"
2503 | dependencies:
2504 | get-stdin "^4.0.1"
2505 | meow "^3.1.0"
2506 |
2507 | private@^0.1.6, private@^0.1.7:
2508 | version "0.1.7"
2509 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"
2510 |
2511 | process-nextick-args@~1.0.6:
2512 | version "1.0.7"
2513 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2514 |
2515 | process@^0.11.0:
2516 | version "0.11.10"
2517 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2518 |
2519 | progress-stream@^1.1.0:
2520 | version "1.2.0"
2521 | resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77"
2522 | dependencies:
2523 | speedometer "~0.1.2"
2524 | through2 "~0.2.3"
2525 |
2526 | promise@~1.3.0:
2527 | version "1.3.0"
2528 | resolved "https://registry.yarnpkg.com/promise/-/promise-1.3.0.tgz#e5cc9a4c8278e4664ffedc01c7da84842b040175"
2529 | dependencies:
2530 | is-promise "~1"
2531 |
2532 | prr@~0.0.0:
2533 | version "0.0.0"
2534 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2535 |
2536 | pseudomap@^1.0.2:
2537 | version "1.0.2"
2538 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
2539 |
2540 | public-encrypt@^4.0.0:
2541 | version "4.0.0"
2542 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2543 | dependencies:
2544 | bn.js "^4.1.0"
2545 | browserify-rsa "^4.0.0"
2546 | create-hash "^1.1.0"
2547 | parse-asn1 "^5.0.0"
2548 | randombytes "^2.0.1"
2549 |
2550 | punycode@1.3.2:
2551 | version "1.3.2"
2552 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2553 |
2554 | punycode@^1.2.4, punycode@^1.4.1:
2555 | version "1.4.1"
2556 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2557 |
2558 | q@^1.1.2:
2559 | version "1.5.1"
2560 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
2561 |
2562 | qs@~6.4.0:
2563 | version "6.4.0"
2564 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233"
2565 |
2566 | qs@~6.5.1:
2567 | version "6.5.2"
2568 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
2569 |
2570 | querystring-es3@^0.2.0:
2571 | version "0.2.1"
2572 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2573 |
2574 | querystring@0.2.0:
2575 | version "0.2.0"
2576 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2577 |
2578 | randomatic@^1.1.3:
2579 | version "1.1.7"
2580 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
2581 | dependencies:
2582 | is-number "^3.0.0"
2583 | kind-of "^4.0.0"
2584 |
2585 | randombytes@^2.0.0, randombytes@^2.0.1:
2586 | version "2.0.5"
2587 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79"
2588 | dependencies:
2589 | safe-buffer "^5.1.0"
2590 |
2591 | rc@^1.1.2, rc@^1.1.7:
2592 | version "1.2.1"
2593 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"
2594 | dependencies:
2595 | deep-extend "~0.4.0"
2596 | ini "~1.3.0"
2597 | minimist "^1.2.0"
2598 | strip-json-comments "~2.0.1"
2599 |
2600 | rcedit@^1.0.0:
2601 | version "1.1.0"
2602 | resolved "https://registry.yarnpkg.com/rcedit/-/rcedit-1.1.0.tgz#ae21c28d4efdd78e95fcab7309a5dd084920b16a"
2603 |
2604 | read-pkg-up@^1.0.1:
2605 | version "1.0.1"
2606 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2607 | dependencies:
2608 | find-up "^1.0.0"
2609 | read-pkg "^1.0.0"
2610 |
2611 | read-pkg-up@^2.0.0:
2612 | version "2.0.0"
2613 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
2614 | dependencies:
2615 | find-up "^2.0.0"
2616 | read-pkg "^2.0.0"
2617 |
2618 | read-pkg@^1.0.0:
2619 | version "1.1.0"
2620 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2621 | dependencies:
2622 | load-json-file "^1.0.0"
2623 | normalize-package-data "^2.3.2"
2624 | path-type "^1.0.0"
2625 |
2626 | read-pkg@^2.0.0:
2627 | version "2.0.0"
2628 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"
2629 | dependencies:
2630 | load-json-file "^2.0.0"
2631 | normalize-package-data "^2.3.2"
2632 | path-type "^2.0.0"
2633 |
2634 | readable-stream@^1.1.8, readable-stream@~1.1.9:
2635 | version "1.1.14"
2636 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
2637 | dependencies:
2638 | core-util-is "~1.0.0"
2639 | inherits "~2.0.1"
2640 | isarray "0.0.1"
2641 | string_decoder "~0.10.x"
2642 |
2643 | 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.2, readable-stream@^2.2.6:
2644 | version "2.3.3"
2645 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
2646 | dependencies:
2647 | core-util-is "~1.0.0"
2648 | inherits "~2.0.3"
2649 | isarray "~1.0.0"
2650 | process-nextick-args "~1.0.6"
2651 | safe-buffer "~5.1.1"
2652 | string_decoder "~1.0.3"
2653 | util-deprecate "~1.0.1"
2654 |
2655 | readdirp@^2.0.0:
2656 | version "2.1.0"
2657 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2658 | dependencies:
2659 | graceful-fs "^4.1.2"
2660 | minimatch "^3.0.2"
2661 | readable-stream "^2.0.2"
2662 | set-immediate-shim "^1.0.1"
2663 |
2664 | redent@^1.0.0:
2665 | version "1.0.0"
2666 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
2667 | dependencies:
2668 | indent-string "^2.1.0"
2669 | strip-indent "^1.0.1"
2670 |
2671 | regenerate@^1.2.1:
2672 | version "1.3.2"
2673 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
2674 |
2675 | regenerator-runtime@^0.11.0:
2676 | version "0.11.0"
2677 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
2678 |
2679 | regenerator-transform@^0.10.0:
2680 | version "0.10.1"
2681 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
2682 | dependencies:
2683 | babel-runtime "^6.18.0"
2684 | babel-types "^6.19.0"
2685 | private "^0.1.6"
2686 |
2687 | regex-cache@^0.4.2:
2688 | version "0.4.3"
2689 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
2690 | dependencies:
2691 | is-equal-shallow "^0.1.3"
2692 | is-primitive "^2.0.0"
2693 |
2694 | regexpu-core@^2.0.0:
2695 | version "2.0.0"
2696 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2697 | dependencies:
2698 | regenerate "^1.2.1"
2699 | regjsgen "^0.2.0"
2700 | regjsparser "^0.1.4"
2701 |
2702 | regjsgen@^0.2.0:
2703 | version "0.2.0"
2704 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2705 |
2706 | regjsparser@^0.1.4:
2707 | version "0.1.5"
2708 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2709 | dependencies:
2710 | jsesc "~0.5.0"
2711 |
2712 | remove-trailing-separator@^1.0.1:
2713 | version "1.1.0"
2714 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2715 |
2716 | repeat-element@^1.1.2:
2717 | version "1.1.2"
2718 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2719 |
2720 | repeat-string@^1.5.2:
2721 | version "1.6.1"
2722 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2723 |
2724 | repeating@^2.0.0:
2725 | version "2.0.1"
2726 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2727 | dependencies:
2728 | is-finite "^1.0.0"
2729 |
2730 | request@^2.45.0, request@^2.81.0:
2731 | version "2.81.0"
2732 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
2733 | dependencies:
2734 | aws-sign2 "~0.6.0"
2735 | aws4 "^1.2.1"
2736 | caseless "~0.12.0"
2737 | combined-stream "~1.0.5"
2738 | extend "~3.0.0"
2739 | forever-agent "~0.6.1"
2740 | form-data "~2.1.1"
2741 | har-validator "~4.2.1"
2742 | hawk "~3.1.3"
2743 | http-signature "~1.1.0"
2744 | is-typedarray "~1.0.0"
2745 | isstream "~0.1.2"
2746 | json-stringify-safe "~5.0.1"
2747 | mime-types "~2.1.7"
2748 | oauth-sign "~0.8.1"
2749 | performance-now "^0.2.0"
2750 | qs "~6.4.0"
2751 | safe-buffer "^5.0.1"
2752 | stringstream "~0.0.4"
2753 | tough-cookie "~2.3.0"
2754 | tunnel-agent "^0.6.0"
2755 | uuid "^3.0.0"
2756 |
2757 | request@^2.79.0:
2758 | version "2.87.0"
2759 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e"
2760 | dependencies:
2761 | aws-sign2 "~0.7.0"
2762 | aws4 "^1.6.0"
2763 | caseless "~0.12.0"
2764 | combined-stream "~1.0.5"
2765 | extend "~3.0.1"
2766 | forever-agent "~0.6.1"
2767 | form-data "~2.3.1"
2768 | har-validator "~5.0.3"
2769 | http-signature "~1.2.0"
2770 | is-typedarray "~1.0.0"
2771 | isstream "~0.1.2"
2772 | json-stringify-safe "~5.0.1"
2773 | mime-types "~2.1.17"
2774 | oauth-sign "~0.8.2"
2775 | performance-now "^2.1.0"
2776 | qs "~6.5.1"
2777 | safe-buffer "^5.1.1"
2778 | tough-cookie "~2.3.3"
2779 | tunnel-agent "^0.6.0"
2780 | uuid "^3.1.0"
2781 |
2782 | require-directory@^2.1.1:
2783 | version "2.1.1"
2784 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2785 |
2786 | require-main-filename@^1.0.1:
2787 | version "1.0.1"
2788 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2789 |
2790 | resolve@^1.1.6:
2791 | version "1.7.1"
2792 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3"
2793 | dependencies:
2794 | path-parse "^1.0.5"
2795 |
2796 | right-align@^0.1.1:
2797 | version "0.1.3"
2798 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2799 | dependencies:
2800 | align-text "^0.1.1"
2801 |
2802 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1:
2803 | version "2.6.1"
2804 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
2805 | dependencies:
2806 | glob "^7.0.5"
2807 |
2808 | ripemd160@^2.0.0, ripemd160@^2.0.1:
2809 | version "2.0.1"
2810 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
2811 | dependencies:
2812 | hash-base "^2.0.0"
2813 | inherits "^2.0.1"
2814 |
2815 | 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:
2816 | version "5.1.1"
2817 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2818 |
2819 | sanitize-filename@^1.6.0:
2820 | version "1.6.1"
2821 | resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a"
2822 | dependencies:
2823 | truncate-utf8-bytes "^1.0.0"
2824 |
2825 | "semver@2 || 3 || 4 || 5", semver@^5.3.0:
2826 | version "5.4.1"
2827 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
2828 |
2829 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2830 | version "2.0.0"
2831 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2832 |
2833 | set-immediate-shim@^1.0.1:
2834 | version "1.0.1"
2835 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2836 |
2837 | setimmediate@^1.0.4:
2838 | version "1.0.5"
2839 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2840 |
2841 | sha.js@^2.4.0, sha.js@^2.4.8:
2842 | version "2.4.8"
2843 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
2844 | dependencies:
2845 | inherits "^2.0.1"
2846 |
2847 | shebang-command@^1.2.0:
2848 | version "1.2.0"
2849 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
2850 | dependencies:
2851 | shebang-regex "^1.0.0"
2852 |
2853 | shebang-regex@^1.0.0:
2854 | version "1.0.0"
2855 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
2856 |
2857 | signal-exit@^3.0.0:
2858 | version "3.0.2"
2859 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2860 |
2861 | single-line-log@^1.1.2:
2862 | version "1.1.2"
2863 | resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364"
2864 | dependencies:
2865 | string-width "^1.0.1"
2866 |
2867 | slash@^1.0.0:
2868 | version "1.0.0"
2869 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2870 |
2871 | sntp@1.x.x:
2872 | version "1.0.9"
2873 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2874 | dependencies:
2875 | hoek "2.x.x"
2876 |
2877 | source-list-map@^2.0.0:
2878 | version "2.0.0"
2879 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
2880 |
2881 | source-map-support@^0.4.15:
2882 | version "0.4.16"
2883 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.16.tgz#16fecf98212467d017d586a2af68d628b9421cd8"
2884 | dependencies:
2885 | source-map "^0.5.6"
2886 |
2887 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
2888 | version "0.5.7"
2889 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
2890 |
2891 | spdx-correct@~1.0.0:
2892 | version "1.0.2"
2893 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2894 | dependencies:
2895 | spdx-license-ids "^1.0.2"
2896 |
2897 | spdx-expression-parse@~1.0.0:
2898 | version "1.0.4"
2899 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2900 |
2901 | spdx-license-ids@^1.0.2:
2902 | version "1.2.2"
2903 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2904 |
2905 | speedometer@~0.1.2:
2906 | version "0.1.4"
2907 | resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d"
2908 |
2909 | sshpk@^1.7.0:
2910 | version "1.13.1"
2911 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
2912 | dependencies:
2913 | asn1 "~0.2.3"
2914 | assert-plus "^1.0.0"
2915 | dashdash "^1.12.0"
2916 | getpass "^0.1.1"
2917 | optionalDependencies:
2918 | bcrypt-pbkdf "^1.0.0"
2919 | ecc-jsbn "~0.1.1"
2920 | jsbn "~0.1.0"
2921 | tweetnacl "~0.14.0"
2922 |
2923 | stream-browserify@^2.0.1:
2924 | version "2.0.1"
2925 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2926 | dependencies:
2927 | inherits "~2.0.1"
2928 | readable-stream "^2.0.2"
2929 |
2930 | stream-http@^2.3.1:
2931 | version "2.7.2"
2932 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad"
2933 | dependencies:
2934 | builtin-status-codes "^3.0.0"
2935 | inherits "^2.0.1"
2936 | readable-stream "^2.2.6"
2937 | to-arraybuffer "^1.0.0"
2938 | xtend "^4.0.0"
2939 |
2940 | string-width@^1.0.1, string-width@^1.0.2:
2941 | version "1.0.2"
2942 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2943 | dependencies:
2944 | code-point-at "^1.0.0"
2945 | is-fullwidth-code-point "^1.0.0"
2946 | strip-ansi "^3.0.0"
2947 |
2948 | string-width@^2.0.0:
2949 | version "2.1.1"
2950 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
2951 | dependencies:
2952 | is-fullwidth-code-point "^2.0.0"
2953 | strip-ansi "^4.0.0"
2954 |
2955 | string_decoder@^0.10.25, string_decoder@~0.10.x:
2956 | version "0.10.31"
2957 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2958 |
2959 | string_decoder@~1.0.3:
2960 | version "1.0.3"
2961 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
2962 | dependencies:
2963 | safe-buffer "~5.1.0"
2964 |
2965 | stringstream@~0.0.4:
2966 | version "0.0.5"
2967 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2968 |
2969 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2970 | version "3.0.1"
2971 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2972 | dependencies:
2973 | ansi-regex "^2.0.0"
2974 |
2975 | strip-ansi@^4.0.0:
2976 | version "4.0.0"
2977 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
2978 | dependencies:
2979 | ansi-regex "^3.0.0"
2980 |
2981 | strip-bom@^2.0.0:
2982 | version "2.0.0"
2983 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
2984 | dependencies:
2985 | is-utf8 "^0.2.0"
2986 |
2987 | strip-bom@^3.0.0:
2988 | version "3.0.0"
2989 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2990 |
2991 | strip-eof@^1.0.0:
2992 | version "1.0.0"
2993 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
2994 |
2995 | strip-indent@^1.0.1:
2996 | version "1.0.1"
2997 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
2998 | dependencies:
2999 | get-stdin "^4.0.1"
3000 |
3001 | strip-json-comments@~2.0.1:
3002 | version "2.0.1"
3003 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3004 |
3005 | sumchecker@^1.2.0:
3006 | version "1.3.1"
3007 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d"
3008 | dependencies:
3009 | debug "^2.2.0"
3010 | es6-promise "^4.0.5"
3011 |
3012 | sumchecker@^2.0.1:
3013 | version "2.0.2"
3014 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-2.0.2.tgz#0f42c10e5d05da5d42eea3e56c3399a37d6c5b3e"
3015 | dependencies:
3016 | debug "^2.2.0"
3017 |
3018 | supports-color@^2.0.0:
3019 | version "2.0.0"
3020 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3021 |
3022 | supports-color@^4.2.1:
3023 | version "4.2.1"
3024 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836"
3025 | dependencies:
3026 | has-flag "^2.0.0"
3027 |
3028 | tapable@^0.2.7:
3029 | version "0.2.8"
3030 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
3031 |
3032 | tar-pack@^3.4.0:
3033 | version "3.4.0"
3034 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
3035 | dependencies:
3036 | debug "^2.2.0"
3037 | fstream "^1.0.10"
3038 | fstream-ignore "^1.0.5"
3039 | once "^1.3.3"
3040 | readable-stream "^2.1.4"
3041 | rimraf "^2.5.1"
3042 | tar "^2.2.1"
3043 | uid-number "^0.0.6"
3044 |
3045 | tar@^2.2.1:
3046 | version "2.2.1"
3047 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3048 | dependencies:
3049 | block-stream "*"
3050 | fstream "^1.0.2"
3051 | inherits "2"
3052 |
3053 | throttleit@0.0.2:
3054 | version "0.0.2"
3055 | resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf"
3056 |
3057 | through2@~0.2.3:
3058 | version "0.2.3"
3059 | resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f"
3060 | dependencies:
3061 | readable-stream "~1.1.9"
3062 | xtend "~2.1.1"
3063 |
3064 | timers-browserify@^2.0.2:
3065 | version "2.0.4"
3066 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"
3067 | dependencies:
3068 | setimmediate "^1.0.4"
3069 |
3070 | tmp@0.0.28:
3071 | version "0.0.28"
3072 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.28.tgz#172735b7f614ea7af39664fa84cf0de4e515d120"
3073 | dependencies:
3074 | os-tmpdir "~1.0.1"
3075 |
3076 | to-arraybuffer@^1.0.0:
3077 | version "1.0.1"
3078 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
3079 |
3080 | to-fast-properties@^1.0.3:
3081 | version "1.0.3"
3082 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3083 |
3084 | touch@0.0.3:
3085 | version "0.0.3"
3086 | resolved "https://registry.yarnpkg.com/touch/-/touch-0.0.3.tgz#51aef3d449571d4f287a5d87c9c8b49181a0db1d"
3087 | dependencies:
3088 | nopt "~1.0.10"
3089 |
3090 | tough-cookie@~2.3.0:
3091 | version "2.3.2"
3092 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
3093 | dependencies:
3094 | punycode "^1.4.1"
3095 |
3096 | tough-cookie@~2.3.3:
3097 | version "2.3.4"
3098 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
3099 | dependencies:
3100 | punycode "^1.4.1"
3101 |
3102 | "traverse@>=0.3.0 <0.4":
3103 | version "0.3.9"
3104 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9"
3105 |
3106 | trim-newlines@^1.0.0:
3107 | version "1.0.0"
3108 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3109 |
3110 | trim-right@^1.0.1:
3111 | version "1.0.1"
3112 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3113 |
3114 | truncate-utf8-bytes@^1.0.0:
3115 | version "1.0.2"
3116 | resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b"
3117 | dependencies:
3118 | utf8-byte-length "^1.0.1"
3119 |
3120 | tty-browserify@0.0.0:
3121 | version "0.0.0"
3122 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
3123 |
3124 | tunnel-agent@^0.6.0:
3125 | version "0.6.0"
3126 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
3127 | dependencies:
3128 | safe-buffer "^5.0.1"
3129 |
3130 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3131 | version "0.14.5"
3132 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3133 |
3134 | typedarray@^0.0.6:
3135 | version "0.0.6"
3136 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
3137 |
3138 | uglify-js@^2.8.29:
3139 | version "2.8.29"
3140 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3141 | dependencies:
3142 | source-map "~0.5.1"
3143 | yargs "~3.10.0"
3144 | optionalDependencies:
3145 | uglify-to-browserify "~1.0.0"
3146 |
3147 | uglify-to-browserify@~1.0.0:
3148 | version "1.0.2"
3149 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3150 |
3151 | uglifyjs-webpack-plugin@^0.4.6:
3152 | version "0.4.6"
3153 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309"
3154 | dependencies:
3155 | source-map "^0.5.6"
3156 | uglify-js "^2.8.29"
3157 | webpack-sources "^1.0.1"
3158 |
3159 | uid-number@^0.0.6:
3160 | version "0.0.6"
3161 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3162 |
3163 | universalify@^0.1.0:
3164 | version "0.1.1"
3165 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
3166 |
3167 | url@^0.11.0:
3168 | version "0.11.0"
3169 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
3170 | dependencies:
3171 | punycode "1.3.2"
3172 | querystring "0.2.0"
3173 |
3174 | utf8-byte-length@^1.0.1:
3175 | version "1.0.4"
3176 | resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61"
3177 |
3178 | util-deprecate@~1.0.1:
3179 | version "1.0.2"
3180 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3181 |
3182 | util@0.10.3, util@^0.10.3:
3183 | version "0.10.3"
3184 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
3185 | dependencies:
3186 | inherits "2.0.1"
3187 |
3188 | uuid@^3.0.0:
3189 | version "3.1.0"
3190 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
3191 |
3192 | uuid@^3.1.0:
3193 | version "3.2.1"
3194 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
3195 |
3196 | validate-npm-package-license@^3.0.1:
3197 | version "3.0.1"
3198 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3199 | dependencies:
3200 | spdx-correct "~1.0.0"
3201 | spdx-expression-parse "~1.0.0"
3202 |
3203 | verror@1.10.0:
3204 | version "1.10.0"
3205 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
3206 | dependencies:
3207 | assert-plus "^1.0.0"
3208 | core-util-is "1.0.2"
3209 | extsprintf "^1.2.0"
3210 |
3211 | vm-browserify@0.0.4:
3212 | version "0.0.4"
3213 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
3214 | dependencies:
3215 | indexof "0.0.1"
3216 |
3217 | watchpack@^1.4.0:
3218 | version "1.4.0"
3219 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac"
3220 | dependencies:
3221 | async "^2.1.2"
3222 | chokidar "^1.7.0"
3223 | graceful-fs "^4.1.2"
3224 |
3225 | webpack-sources@^1.0.1:
3226 | version "1.0.1"
3227 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf"
3228 | dependencies:
3229 | source-list-map "^2.0.0"
3230 | source-map "~0.5.3"
3231 |
3232 | webpack@^3.5.5:
3233 | version "3.5.5"
3234 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.5.5.tgz#3226f09fc8b3e435ff781e7af34f82b68b26996c"
3235 | dependencies:
3236 | acorn "^5.0.0"
3237 | acorn-dynamic-import "^2.0.0"
3238 | ajv "^5.1.5"
3239 | ajv-keywords "^2.0.0"
3240 | async "^2.1.2"
3241 | enhanced-resolve "^3.4.0"
3242 | escope "^3.6.0"
3243 | interpret "^1.0.0"
3244 | json-loader "^0.5.4"
3245 | json5 "^0.5.1"
3246 | loader-runner "^2.3.0"
3247 | loader-utils "^1.1.0"
3248 | memory-fs "~0.4.1"
3249 | mkdirp "~0.5.0"
3250 | node-libs-browser "^2.0.0"
3251 | source-map "^0.5.3"
3252 | supports-color "^4.2.1"
3253 | tapable "^0.2.7"
3254 | uglifyjs-webpack-plugin "^0.4.6"
3255 | watchpack "^1.4.0"
3256 | webpack-sources "^1.0.1"
3257 | yargs "^8.0.2"
3258 |
3259 | which-module@^2.0.0:
3260 | version "2.0.0"
3261 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
3262 |
3263 | which@^1.2.9:
3264 | version "1.3.0"
3265 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
3266 | dependencies:
3267 | isexe "^2.0.0"
3268 |
3269 | wide-align@^1.1.0:
3270 | version "1.1.2"
3271 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
3272 | dependencies:
3273 | string-width "^1.0.2"
3274 |
3275 | window-size@0.1.0:
3276 | version "0.1.0"
3277 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3278 |
3279 | wordwrap@0.0.2:
3280 | version "0.0.2"
3281 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3282 |
3283 | wrap-ansi@^2.0.0:
3284 | version "2.1.0"
3285 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3286 | dependencies:
3287 | string-width "^1.0.1"
3288 | strip-ansi "^3.0.1"
3289 |
3290 | wrappy@1:
3291 | version "1.0.2"
3292 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3293 |
3294 | xmlbuilder@8.2.2:
3295 | version "8.2.2"
3296 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773"
3297 |
3298 | xmldom@0.1.x:
3299 | version "0.1.27"
3300 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9"
3301 |
3302 | xtend@^4.0.0:
3303 | version "4.0.1"
3304 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3305 |
3306 | xtend@~2.1.1:
3307 | version "2.1.2"
3308 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b"
3309 | dependencies:
3310 | object-keys "~0.4.0"
3311 |
3312 | y18n@^3.2.1:
3313 | version "3.2.1"
3314 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3315 |
3316 | yallist@^2.1.2:
3317 | version "2.1.2"
3318 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
3319 |
3320 | yargs-parser@^10.0.0:
3321 | version "10.0.0"
3322 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.0.0.tgz#c737c93de2567657750cb1f2c00be639fd19c994"
3323 | dependencies:
3324 | camelcase "^4.1.0"
3325 |
3326 | yargs-parser@^7.0.0:
3327 | version "7.0.0"
3328 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
3329 | dependencies:
3330 | camelcase "^4.1.0"
3331 |
3332 | yargs@^8.0.2:
3333 | version "8.0.2"
3334 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"
3335 | dependencies:
3336 | camelcase "^4.1.0"
3337 | cliui "^3.2.0"
3338 | decamelize "^1.1.1"
3339 | get-caller-file "^1.0.1"
3340 | os-locale "^2.0.0"
3341 | read-pkg-up "^2.0.0"
3342 | require-directory "^2.1.1"
3343 | require-main-filename "^1.0.1"
3344 | set-blocking "^2.0.0"
3345 | string-width "^2.0.0"
3346 | which-module "^2.0.0"
3347 | y18n "^3.2.1"
3348 | yargs-parser "^7.0.0"
3349 |
3350 | yargs@~3.10.0:
3351 | version "3.10.0"
3352 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3353 | dependencies:
3354 | camelcase "^1.0.2"
3355 | cliui "^2.1.0"
3356 | decamelize "^1.0.0"
3357 | window-size "0.1.0"
3358 |
3359 | yauzl@2.4.1:
3360 | version "2.4.1"
3361 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005"
3362 | dependencies:
3363 | fd-slicer "~1.0.1"
3364 |
--------------------------------------------------------------------------------