urbanopt-reporting 0.2.0 → 0.2.1
This diff has not been reviewed by any users.
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +19 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +15 -0
- data/.github/pull_request_template.md +13 -0
- data/.rdoc_options +36 -0
- data/CHANGELOG.md +10 -0
- data/RDOC_MAIN.md +10 -0
- data/deploy_docs.sh +5 -0
- data/docs/.gitignore +3 -0
- data/docs/.vuepress/components/InnerJsonSchema.vue +76 -0
- data/docs/.vuepress/components/JsonSchema.vue +12 -0
- data/docs/.vuepress/components/ScenarioSchema.vue +12 -0
- data/docs/.vuepress/components/StaticLink.vue +8 -0
- data/docs/.vuepress/config.js +25 -0
- data/docs/.vuepress/highlight.js +8 -0
- data/docs/.vuepress/json-schema-deref-loader.js +22 -0
- data/docs/.vuepress/public/custom_rdoc_styles.css +78 -0
- data/docs/.vuepress/styles/palette.styl +1 -0
- data/docs/.vuepress/utils.js +17 -0
- data/docs/README.md +9 -0
- data/docs/package-lock.json +10018 -0
- data/docs/package.json +30 -0
- data/docs/schemas/scenario-schema.md +3 -0
- data/lib/measures/default_feature_reports/measure.rb +53 -44
- data/lib/urbanopt/reporting/default_reports/end_uses.rb +38 -38
- data/lib/urbanopt/reporting/default_reports/feature_report.rb +35 -19
- data/lib/urbanopt/reporting/default_reports/location.rb +11 -11
- data/lib/urbanopt/reporting/default_reports/program.rb +86 -86
- data/lib/urbanopt/reporting/default_reports/reporting_period.rb +78 -78
- data/lib/urbanopt/reporting/default_reports/schema/scenario_schema.json +80 -80
- data/lib/urbanopt/reporting/default_reports/thermal_storage.rb +10 -10
- data/lib/urbanopt/reporting/version.rb +1 -1
- data/urbanopt-reporting-gem.gemspec +4 -4
- metadata +35 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73d4a00d402cdde91643c03b38449beb6978e5e6cb1af0b9102d607a3c865548
|
4
|
+
data.tar.gz: 8dd9ba4afbd16ba9a08f32edb24e0939cb9689b55683cd50c18a1e002f7fb4fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75c674f97c37f9cdb64ab7c0e523691aae8027dbf74a25be38634924676a526de207306bd0ac05de533e24071af73e98a898058f120748b0c100fcc4f2a3b927
|
7
|
+
data.tar.gz: 44eed7300f9b94e85b431bf7fcee1d47e5a2480f0801036b9839d3b8ea9f057c42e498cd2ef99863abf30375db9be5f2f2acfdc0d2b6a4cd954c5a4759509a46
|
@@ -0,0 +1,19 @@
|
|
1
|
+
### Expected behavior
|
2
|
+
|
3
|
+
_A clear and concise description of what you expected to happen._
|
4
|
+
|
5
|
+
### Actual behavior
|
6
|
+
|
7
|
+
_A clear and concise description of what actually happens._
|
8
|
+
|
9
|
+
### To Reproduce
|
10
|
+
|
11
|
+
Steps to reproduce the behavior:
|
12
|
+
|
13
|
+
1. Go to '...'
|
14
|
+
1. Enter '...'
|
15
|
+
1. Enter '...'
|
16
|
+
|
17
|
+
### Additional context
|
18
|
+
|
19
|
+
_E.g.: Windows, Mac, Linux? Are you behind a firewall? Do you have additional security constraints?_
|
@@ -0,0 +1,15 @@
|
|
1
|
+
### Is your feature request related to a problem?
|
2
|
+
|
3
|
+
A clear and concise description of what the problem is. _I'm frustrated when..._
|
4
|
+
|
5
|
+
### Describe the solution you'd like
|
6
|
+
|
7
|
+
A clear and concise description of what you want to happen.
|
8
|
+
|
9
|
+
### Describe alternatives you've considered
|
10
|
+
|
11
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
12
|
+
|
13
|
+
### Additional context
|
14
|
+
|
15
|
+
Add any other context or screenshots about the feature request here.
|
@@ -0,0 +1,13 @@
|
|
1
|
+
### Resolves #[issue number here]
|
2
|
+
|
3
|
+
### Pull Request Description
|
4
|
+
|
5
|
+
[description here]
|
6
|
+
|
7
|
+
### Checklist (Delete lines that don't apply)
|
8
|
+
|
9
|
+
- [ ] Unit tests have been added or updated
|
10
|
+
- [ ] Documentation has been modified appropriately
|
11
|
+
- [ ] All ci tests pass (green)
|
12
|
+
- [ ] An [ISSUE](https://github.com/urbanopt/urbanopt-reporting-gem/issues) has been created that this is addressing. Issues will get added to the Change Log when the change_log.rb script is run.
|
13
|
+
- [ ] This branch is up-to-date with develop
|
data/.rdoc_options
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
--- !ruby/object:RDoc::Options
|
2
|
+
encoding: UTF-8
|
3
|
+
static_path: []
|
4
|
+
rdoc_include:
|
5
|
+
- lib
|
6
|
+
charset: UTF-8
|
7
|
+
exclude:
|
8
|
+
- doc_templates
|
9
|
+
- docs
|
10
|
+
- lib/measures
|
11
|
+
- node_modules
|
12
|
+
- spec
|
13
|
+
- test
|
14
|
+
- Gemfile
|
15
|
+
- Gemfile.lock
|
16
|
+
- Jenkinsfile
|
17
|
+
- LICENSE.md
|
18
|
+
- README.md
|
19
|
+
- Rakefile
|
20
|
+
- urbanopt-reporting-gem.gemspec
|
21
|
+
- JSON
|
22
|
+
- Object
|
23
|
+
hyperlink_all: false
|
24
|
+
line_numbers: false
|
25
|
+
locale:
|
26
|
+
locale_dir: locale
|
27
|
+
locale_name:
|
28
|
+
main_page: RDOC_MAIN.md
|
29
|
+
output_decoration: true
|
30
|
+
op_dir: ./docs/.vuepress/public/rdoc
|
31
|
+
show_hash: false
|
32
|
+
tab_width: 8
|
33
|
+
template_stylesheets: ["./docs/.vuepress/public/custom_rdoc_styles.css"]
|
34
|
+
title:
|
35
|
+
visibility: :protected
|
36
|
+
webcvs:
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# URBANopt Reporting Gem
|
2
2
|
|
3
|
+
## Version 0.2.1
|
4
|
+
|
5
|
+
Date Range: 09/22/2020 - 11/12/2020
|
6
|
+
|
7
|
+
- Fixed [#12]( https://github.com/urbanopt/urbanopt-reporting-gem/pull/12 ), add units to the json report attributes
|
8
|
+
- Fixed [#14]( https://github.com/urbanopt/urbanopt-reporting-gem/pull/14 ), Add rdocs
|
9
|
+
- Fixed [#16]( https://github.com/urbanopt/urbanopt-reporting-gem/pull/16 ), increase sidebar width to show class names
|
10
|
+
- Fixed [#18]( https://github.com/urbanopt/urbanopt-reporting-gem/pull/18 ), measure: Handle nil values that crash OpenStudio.convert
|
11
|
+
- Fixed [#20]( https://github.com/urbanopt/urbanopt-reporting-gem/pull/20 ), fixed saving csv results bug
|
12
|
+
|
3
13
|
## Version 0.2.0
|
4
14
|
|
5
15
|
Date Range: 08/27/2020 - 09/21/2020
|
data/RDOC_MAIN.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# URBANopt Reporting Gem
|
2
|
+
|
3
|
+
### [back to main docs](../)
|
4
|
+
|
5
|
+
The URBANopt™ Reporting Gem defines the URBANopt Scenario report and Feature reports. It also includes the default reporting measure which queries the simulation results from the energyplus sql database and inserts them into the Feature reports.
|
6
|
+
|
7
|
+
The [schema](https://urbanopt.github.io/urbanopt-reporting-gem/schemas/scenario-schema.html) link contains more information about the JSON schema for Scenario and Feature reports.
|
8
|
+
|
9
|
+
[RDoc Documentation](https://urbanopt.github.io/urbanopt-reporting-gem/)
|
10
|
+
|
data/deploy_docs.sh
ADDED
data/docs/.gitignore
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
<template>
|
2
|
+
<div>
|
3
|
+
<a v-if="rawMode" @click="rawMode = false">view pretty</a>
|
4
|
+
<a v-if="!rawMode" @click="rawMode = true">view raw</a>
|
5
|
+
<div v-show="!rawMode" ref="schemaTarget" class="schema-pretty"/>
|
6
|
+
<pre v-show="rawMode"><code v-html="schemaFormatted" class="json"/></pre>
|
7
|
+
</div>
|
8
|
+
</template>
|
9
|
+
<script>
|
10
|
+
import "json-schema-view-js/dist/style.css";
|
11
|
+
import "highlight.js/styles/railscasts.css";
|
12
|
+
import highlightJson from "../highlight";
|
13
|
+
import { emptyPromise } from '../utils';
|
14
|
+
|
15
|
+
const JSONSchemaViewP = emptyPromise();
|
16
|
+
|
17
|
+
export default {
|
18
|
+
name: "InnerJsonSchema",
|
19
|
+
props: ["schema"],
|
20
|
+
data() {
|
21
|
+
return {
|
22
|
+
rawMode: false,
|
23
|
+
};
|
24
|
+
},
|
25
|
+
created() {
|
26
|
+
// created only runs on the client, which is good because
|
27
|
+
// this module causes an error if we load it in a server context
|
28
|
+
import("json-schema-view-js").then(JSONSchemaViewP.resolve);
|
29
|
+
},
|
30
|
+
computed: {
|
31
|
+
view() {
|
32
|
+
return JSONSchemaViewP
|
33
|
+
.then( () => new window.JSONSchemaView(this.schema, 2, {
|
34
|
+
theme: "dark"
|
35
|
+
}));
|
36
|
+
},
|
37
|
+
schemaFormatted() {
|
38
|
+
return highlightJson(JSON.stringify(this.schema, null, 2));
|
39
|
+
}
|
40
|
+
},
|
41
|
+
methods: {
|
42
|
+
async replaceRenderedSchema() {
|
43
|
+
const v = await this.view; // this never resolves on the server
|
44
|
+
this.$refs.schemaTarget.innerHtml = "";
|
45
|
+
this.$refs.schemaTarget.appendChild(v.render());
|
46
|
+
}
|
47
|
+
},
|
48
|
+
watch: {
|
49
|
+
schema: {
|
50
|
+
handler: "replaceRenderedSchema",
|
51
|
+
immediate: true
|
52
|
+
}
|
53
|
+
}
|
54
|
+
};
|
55
|
+
</script>
|
56
|
+
<style>
|
57
|
+
.schema-pretty {
|
58
|
+
margin-top: 0.85rem;
|
59
|
+
background-color: #282c34;
|
60
|
+
padding: 1.25rem 1.5rem;
|
61
|
+
border-radius: 6px;
|
62
|
+
}
|
63
|
+
.json-formatter-row a {
|
64
|
+
color: white;
|
65
|
+
}
|
66
|
+
.json-formatter-row .json-formatter-bracket,
|
67
|
+
.json-formatter-row .json-formatter-number {
|
68
|
+
color: #9090fb;
|
69
|
+
}
|
70
|
+
.json-formatter-row .json-formatter-key {
|
71
|
+
color: #8665d0;
|
72
|
+
}
|
73
|
+
.json-schema-view .object .inner.oneOf b {
|
74
|
+
color: aqua;
|
75
|
+
}
|
76
|
+
</style>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<template>
|
2
|
+
<JsonSchema :schema="schema"/>
|
3
|
+
</template>
|
4
|
+
<script>
|
5
|
+
import { default as schema } from "../../../lib/urbanopt/reporting/default_reports/schema/scenario_schema.json";
|
6
|
+
export default {
|
7
|
+
name: "ScenarioSchema",
|
8
|
+
data() {
|
9
|
+
return { schema };
|
10
|
+
}
|
11
|
+
};
|
12
|
+
</script>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
const path = require('path');
|
2
|
+
|
3
|
+
module.exports = {
|
4
|
+
base: '/urbanopt-reporting-gem/',
|
5
|
+
themeConfig: {
|
6
|
+
navbar: false,
|
7
|
+
sidebar: [
|
8
|
+
"/",
|
9
|
+
{
|
10
|
+
title: "Schemas",
|
11
|
+
children: [
|
12
|
+
"/schemas/scenario-schema.md"
|
13
|
+
]
|
14
|
+
}
|
15
|
+
]
|
16
|
+
},
|
17
|
+
chainWebpack: config => {
|
18
|
+
config.module
|
19
|
+
.rule('json')
|
20
|
+
.test(/\.json$/)
|
21
|
+
.use(path.join(__dirname, 'json-schema-deref-loader.js'))
|
22
|
+
.loader(path.join(__dirname, 'json-schema-deref-loader.js'))
|
23
|
+
.end()
|
24
|
+
},
|
25
|
+
};
|
@@ -0,0 +1,22 @@
|
|
1
|
+
// thanks to https://gist.github.com/mgesmundo/07d6ea3958ed4c7d19d1161551fa46ca
|
2
|
+
const $RefParser = require('@apidevtools/json-schema-ref-parser')
|
3
|
+
|
4
|
+
module.exports = async function () {
|
5
|
+
const parser = new $RefParser()
|
6
|
+
const schema = await parser.dereference(this.resourcePath, {
|
7
|
+
dereference: {
|
8
|
+
circular: false
|
9
|
+
}
|
10
|
+
})
|
11
|
+
const resolve = await parser.resolve(this.resourcePath, {
|
12
|
+
dereference: {
|
13
|
+
circular: false
|
14
|
+
}
|
15
|
+
})
|
16
|
+
|
17
|
+
for (const dep in resolve._$refs) {
|
18
|
+
this.addDependency(dep)
|
19
|
+
}
|
20
|
+
|
21
|
+
return JSON.stringify(schema)
|
22
|
+
}
|
@@ -0,0 +1,78 @@
|
|
1
|
+
:link, :visited {
|
2
|
+
color: #3eaf7c;
|
3
|
+
}
|
4
|
+
:link:hover {
|
5
|
+
border-bottom: 1px solid #3eaf7c;
|
6
|
+
}
|
7
|
+
body {
|
8
|
+
background-color: #fff;
|
9
|
+
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif !important;
|
10
|
+
}
|
11
|
+
|
12
|
+
main h1, main h2, main h3, main h4, main h5, main h6 {
|
13
|
+
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
|
14
|
+
}
|
15
|
+
h1, h2, h3, h4, h5, h6 {
|
16
|
+
font-weight: 600;
|
17
|
+
line-height: 1.25;
|
18
|
+
}
|
19
|
+
main h1 {
|
20
|
+
margin-top: 1.5rem !important;
|
21
|
+
margin-bottom: 1rem;
|
22
|
+
font-size: 2.2rem;
|
23
|
+
}
|
24
|
+
|
25
|
+
#home-section, #search-section, #fileindex-section {
|
26
|
+
display: none !important;
|
27
|
+
}
|
28
|
+
|
29
|
+
nav {
|
30
|
+
width: 450px;
|
31
|
+
}
|
32
|
+
.nav-section h3 {
|
33
|
+
color: #999;
|
34
|
+
font-size: 1.1em;
|
35
|
+
font-weight: 700;
|
36
|
+
background-color: #fff;
|
37
|
+
text-align: left;
|
38
|
+
}
|
39
|
+
nav .nav-section {
|
40
|
+
border-top: none;
|
41
|
+
font-size: unset;
|
42
|
+
}
|
43
|
+
|
44
|
+
.link-list a {
|
45
|
+
display: inline-block;
|
46
|
+
padding: .35rem 1rem .35rem 2rem;
|
47
|
+
font-weight: 400;
|
48
|
+
color: #2c3e50;
|
49
|
+
border-left: .25rem solid transparent;
|
50
|
+
padding: .35rem 1rem .35rem 1.25rem;
|
51
|
+
line-height: 1.4;
|
52
|
+
width: 100%;
|
53
|
+
box-sizing: border-box;
|
54
|
+
}
|
55
|
+
.link-list a:hover, .link-list :link:hover {
|
56
|
+
color: #3eaf7c;
|
57
|
+
border-bottom: none;
|
58
|
+
}
|
59
|
+
|
60
|
+
/* Hide the URBANopt::Scenario:: prefix common to most links */
|
61
|
+
ul.link-list li {
|
62
|
+
margin: .35rem 1rem .35rem 1.25rem;
|
63
|
+
overflow: hidden;
|
64
|
+
}
|
65
|
+
.link-list a[href^="./URBANopt/Scenario/"] {
|
66
|
+
margin-left: -145px;
|
67
|
+
}
|
68
|
+
.link-list a {
|
69
|
+
padding: 0;
|
70
|
+
margin: -4px;
|
71
|
+
}
|
72
|
+
|
73
|
+
/* Remove some modules that aren't commented */
|
74
|
+
.link-list a[href="./URBANopt.html"],
|
75
|
+
.link-list a[href="./URBANopt/Scenario.html"],
|
76
|
+
.link-list a[href="./URBANopt/Scenario/DefaultReports.html"] {
|
77
|
+
display: none;
|
78
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
$sidebarWidth = 30rem
|
@@ -0,0 +1,17 @@
|
|
1
|
+
export function emptyPromise() {
|
2
|
+
let res;
|
3
|
+
let rej;
|
4
|
+
const p = new Promise((resolve, reject) => {
|
5
|
+
res = resolve;
|
6
|
+
rej = reject;
|
7
|
+
});
|
8
|
+
p.pending = true;
|
9
|
+
p.resolved = p.rejected = null;
|
10
|
+
p.resolve = (...args) => {
|
11
|
+
res(...args); p.resolved = true; p.rejected = false; p.pending = false;
|
12
|
+
};
|
13
|
+
p.reject = (...args) => {
|
14
|
+
rej(...args); p.rejected = true; p.resolved = false; p.pending = false;
|
15
|
+
};
|
16
|
+
return p;
|
17
|
+
}
|
data/docs/README.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# URBANopt Reporting Gem
|
2
|
+
|
3
|
+
### <StaticLink href="rdoc/">Rdocs</StaticLink>
|
4
|
+
|
5
|
+
The URBANopt™ Reporting Gem defines the URBANopt Scenario report and Feature reports. It also includes the default reporting measure which queries the simulation results from the energyplus sql database and inserts them into the Feature reports.
|
6
|
+
|
7
|
+
The <StaticLink href="rdoc/">Rdocs</StaticLink> contain more information about the URBANopt Reporting Gem architecture.
|
8
|
+
|
9
|
+
The [schema](/schemas/scenario-schema.html) link contains more information about the JSON schema for Scenario and Feature reports.
|
@@ -0,0 +1,10018 @@
|
|
1
|
+
{
|
2
|
+
"name": "urbanopt-reporting-gem-docs",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"lockfileVersion": 1,
|
5
|
+
"requires": true,
|
6
|
+
"dependencies": {
|
7
|
+
"@apidevtools/json-schema-ref-parser": {
|
8
|
+
"version": "9.0.6",
|
9
|
+
"resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz",
|
10
|
+
"integrity": "sha512-M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg==",
|
11
|
+
"requires": {
|
12
|
+
"@jsdevtools/ono": "^7.1.3",
|
13
|
+
"call-me-maybe": "^1.0.1",
|
14
|
+
"js-yaml": "^3.13.1"
|
15
|
+
}
|
16
|
+
},
|
17
|
+
"@babel/code-frame": {
|
18
|
+
"version": "7.10.4",
|
19
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
|
20
|
+
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
|
21
|
+
"requires": {
|
22
|
+
"@babel/highlight": "^7.10.4"
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"@babel/compat-data": {
|
26
|
+
"version": "7.12.1",
|
27
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.1.tgz",
|
28
|
+
"integrity": "sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ=="
|
29
|
+
},
|
30
|
+
"@babel/core": {
|
31
|
+
"version": "7.12.3",
|
32
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz",
|
33
|
+
"integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==",
|
34
|
+
"requires": {
|
35
|
+
"@babel/code-frame": "^7.10.4",
|
36
|
+
"@babel/generator": "^7.12.1",
|
37
|
+
"@babel/helper-module-transforms": "^7.12.1",
|
38
|
+
"@babel/helpers": "^7.12.1",
|
39
|
+
"@babel/parser": "^7.12.3",
|
40
|
+
"@babel/template": "^7.10.4",
|
41
|
+
"@babel/traverse": "^7.12.1",
|
42
|
+
"@babel/types": "^7.12.1",
|
43
|
+
"convert-source-map": "^1.7.0",
|
44
|
+
"debug": "^4.1.0",
|
45
|
+
"gensync": "^1.0.0-beta.1",
|
46
|
+
"json5": "^2.1.2",
|
47
|
+
"lodash": "^4.17.19",
|
48
|
+
"resolve": "^1.3.2",
|
49
|
+
"semver": "^5.4.1",
|
50
|
+
"source-map": "^0.5.0"
|
51
|
+
}
|
52
|
+
},
|
53
|
+
"@babel/generator": {
|
54
|
+
"version": "7.12.1",
|
55
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.1.tgz",
|
56
|
+
"integrity": "sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==",
|
57
|
+
"requires": {
|
58
|
+
"@babel/types": "^7.12.1",
|
59
|
+
"jsesc": "^2.5.1",
|
60
|
+
"source-map": "^0.5.0"
|
61
|
+
}
|
62
|
+
},
|
63
|
+
"@babel/helper-annotate-as-pure": {
|
64
|
+
"version": "7.10.4",
|
65
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz",
|
66
|
+
"integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==",
|
67
|
+
"requires": {
|
68
|
+
"@babel/types": "^7.10.4"
|
69
|
+
}
|
70
|
+
},
|
71
|
+
"@babel/helper-builder-binary-assignment-operator-visitor": {
|
72
|
+
"version": "7.10.4",
|
73
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
|
74
|
+
"integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
|
75
|
+
"requires": {
|
76
|
+
"@babel/helper-explode-assignable-expression": "^7.10.4",
|
77
|
+
"@babel/types": "^7.10.4"
|
78
|
+
}
|
79
|
+
},
|
80
|
+
"@babel/helper-compilation-targets": {
|
81
|
+
"version": "7.12.1",
|
82
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz",
|
83
|
+
"integrity": "sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==",
|
84
|
+
"requires": {
|
85
|
+
"@babel/compat-data": "^7.12.1",
|
86
|
+
"@babel/helper-validator-option": "^7.12.1",
|
87
|
+
"browserslist": "^4.12.0",
|
88
|
+
"semver": "^5.5.0"
|
89
|
+
}
|
90
|
+
},
|
91
|
+
"@babel/helper-create-class-features-plugin": {
|
92
|
+
"version": "7.12.1",
|
93
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz",
|
94
|
+
"integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==",
|
95
|
+
"requires": {
|
96
|
+
"@babel/helper-function-name": "^7.10.4",
|
97
|
+
"@babel/helper-member-expression-to-functions": "^7.12.1",
|
98
|
+
"@babel/helper-optimise-call-expression": "^7.10.4",
|
99
|
+
"@babel/helper-replace-supers": "^7.12.1",
|
100
|
+
"@babel/helper-split-export-declaration": "^7.10.4"
|
101
|
+
}
|
102
|
+
},
|
103
|
+
"@babel/helper-create-regexp-features-plugin": {
|
104
|
+
"version": "7.12.1",
|
105
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz",
|
106
|
+
"integrity": "sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==",
|
107
|
+
"requires": {
|
108
|
+
"@babel/helper-annotate-as-pure": "^7.10.4",
|
109
|
+
"@babel/helper-regex": "^7.10.4",
|
110
|
+
"regexpu-core": "^4.7.1"
|
111
|
+
}
|
112
|
+
},
|
113
|
+
"@babel/helper-define-map": {
|
114
|
+
"version": "7.10.5",
|
115
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
|
116
|
+
"integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
|
117
|
+
"requires": {
|
118
|
+
"@babel/helper-function-name": "^7.10.4",
|
119
|
+
"@babel/types": "^7.10.5",
|
120
|
+
"lodash": "^4.17.19"
|
121
|
+
}
|
122
|
+
},
|
123
|
+
"@babel/helper-explode-assignable-expression": {
|
124
|
+
"version": "7.12.1",
|
125
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz",
|
126
|
+
"integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==",
|
127
|
+
"requires": {
|
128
|
+
"@babel/types": "^7.12.1"
|
129
|
+
}
|
130
|
+
},
|
131
|
+
"@babel/helper-function-name": {
|
132
|
+
"version": "7.10.4",
|
133
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
|
134
|
+
"integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
|
135
|
+
"requires": {
|
136
|
+
"@babel/helper-get-function-arity": "^7.10.4",
|
137
|
+
"@babel/template": "^7.10.4",
|
138
|
+
"@babel/types": "^7.10.4"
|
139
|
+
}
|
140
|
+
},
|
141
|
+
"@babel/helper-get-function-arity": {
|
142
|
+
"version": "7.10.4",
|
143
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
|
144
|
+
"integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
|
145
|
+
"requires": {
|
146
|
+
"@babel/types": "^7.10.4"
|
147
|
+
}
|
148
|
+
},
|
149
|
+
"@babel/helper-hoist-variables": {
|
150
|
+
"version": "7.10.4",
|
151
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
|
152
|
+
"integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
|
153
|
+
"requires": {
|
154
|
+
"@babel/types": "^7.10.4"
|
155
|
+
}
|
156
|
+
},
|
157
|
+
"@babel/helper-member-expression-to-functions": {
|
158
|
+
"version": "7.12.1",
|
159
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz",
|
160
|
+
"integrity": "sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==",
|
161
|
+
"requires": {
|
162
|
+
"@babel/types": "^7.12.1"
|
163
|
+
}
|
164
|
+
},
|
165
|
+
"@babel/helper-module-imports": {
|
166
|
+
"version": "7.12.1",
|
167
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz",
|
168
|
+
"integrity": "sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==",
|
169
|
+
"requires": {
|
170
|
+
"@babel/types": "^7.12.1"
|
171
|
+
}
|
172
|
+
},
|
173
|
+
"@babel/helper-module-transforms": {
|
174
|
+
"version": "7.12.1",
|
175
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
|
176
|
+
"integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
|
177
|
+
"requires": {
|
178
|
+
"@babel/helper-module-imports": "^7.12.1",
|
179
|
+
"@babel/helper-replace-supers": "^7.12.1",
|
180
|
+
"@babel/helper-simple-access": "^7.12.1",
|
181
|
+
"@babel/helper-split-export-declaration": "^7.11.0",
|
182
|
+
"@babel/helper-validator-identifier": "^7.10.4",
|
183
|
+
"@babel/template": "^7.10.4",
|
184
|
+
"@babel/traverse": "^7.12.1",
|
185
|
+
"@babel/types": "^7.12.1",
|
186
|
+
"lodash": "^4.17.19"
|
187
|
+
}
|
188
|
+
},
|
189
|
+
"@babel/helper-optimise-call-expression": {
|
190
|
+
"version": "7.10.4",
|
191
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
|
192
|
+
"integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
|
193
|
+
"requires": {
|
194
|
+
"@babel/types": "^7.10.4"
|
195
|
+
}
|
196
|
+
},
|
197
|
+
"@babel/helper-plugin-utils": {
|
198
|
+
"version": "7.10.4",
|
199
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
|
200
|
+
"integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="
|
201
|
+
},
|
202
|
+
"@babel/helper-regex": {
|
203
|
+
"version": "7.10.5",
|
204
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz",
|
205
|
+
"integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==",
|
206
|
+
"requires": {
|
207
|
+
"lodash": "^4.17.19"
|
208
|
+
}
|
209
|
+
},
|
210
|
+
"@babel/helper-remap-async-to-generator": {
|
211
|
+
"version": "7.12.1",
|
212
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz",
|
213
|
+
"integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==",
|
214
|
+
"requires": {
|
215
|
+
"@babel/helper-annotate-as-pure": "^7.10.4",
|
216
|
+
"@babel/helper-wrap-function": "^7.10.4",
|
217
|
+
"@babel/types": "^7.12.1"
|
218
|
+
}
|
219
|
+
},
|
220
|
+
"@babel/helper-replace-supers": {
|
221
|
+
"version": "7.12.1",
|
222
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz",
|
223
|
+
"integrity": "sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==",
|
224
|
+
"requires": {
|
225
|
+
"@babel/helper-member-expression-to-functions": "^7.12.1",
|
226
|
+
"@babel/helper-optimise-call-expression": "^7.10.4",
|
227
|
+
"@babel/traverse": "^7.12.1",
|
228
|
+
"@babel/types": "^7.12.1"
|
229
|
+
}
|
230
|
+
},
|
231
|
+
"@babel/helper-simple-access": {
|
232
|
+
"version": "7.12.1",
|
233
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
|
234
|
+
"integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
|
235
|
+
"requires": {
|
236
|
+
"@babel/types": "^7.12.1"
|
237
|
+
}
|
238
|
+
},
|
239
|
+
"@babel/helper-skip-transparent-expression-wrappers": {
|
240
|
+
"version": "7.12.1",
|
241
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz",
|
242
|
+
"integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==",
|
243
|
+
"requires": {
|
244
|
+
"@babel/types": "^7.12.1"
|
245
|
+
}
|
246
|
+
},
|
247
|
+
"@babel/helper-split-export-declaration": {
|
248
|
+
"version": "7.11.0",
|
249
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
|
250
|
+
"integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
|
251
|
+
"requires": {
|
252
|
+
"@babel/types": "^7.11.0"
|
253
|
+
}
|
254
|
+
},
|
255
|
+
"@babel/helper-validator-identifier": {
|
256
|
+
"version": "7.10.4",
|
257
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
|
258
|
+
"integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
|
259
|
+
},
|
260
|
+
"@babel/helper-validator-option": {
|
261
|
+
"version": "7.12.1",
|
262
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz",
|
263
|
+
"integrity": "sha512-YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A=="
|
264
|
+
},
|
265
|
+
"@babel/helper-wrap-function": {
|
266
|
+
"version": "7.12.3",
|
267
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz",
|
268
|
+
"integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==",
|
269
|
+
"requires": {
|
270
|
+
"@babel/helper-function-name": "^7.10.4",
|
271
|
+
"@babel/template": "^7.10.4",
|
272
|
+
"@babel/traverse": "^7.10.4",
|
273
|
+
"@babel/types": "^7.10.4"
|
274
|
+
}
|
275
|
+
},
|
276
|
+
"@babel/helpers": {
|
277
|
+
"version": "7.12.1",
|
278
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.1.tgz",
|
279
|
+
"integrity": "sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==",
|
280
|
+
"requires": {
|
281
|
+
"@babel/template": "^7.10.4",
|
282
|
+
"@babel/traverse": "^7.12.1",
|
283
|
+
"@babel/types": "^7.12.1"
|
284
|
+
}
|
285
|
+
},
|
286
|
+
"@babel/highlight": {
|
287
|
+
"version": "7.10.4",
|
288
|
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
|
289
|
+
"integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
|
290
|
+
"requires": {
|
291
|
+
"@babel/helper-validator-identifier": "^7.10.4",
|
292
|
+
"chalk": "^2.0.0",
|
293
|
+
"js-tokens": "^4.0.0"
|
294
|
+
}
|
295
|
+
},
|
296
|
+
"@babel/parser": {
|
297
|
+
"version": "7.12.3",
|
298
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.3.tgz",
|
299
|
+
"integrity": "sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw=="
|
300
|
+
},
|
301
|
+
"@babel/plugin-proposal-async-generator-functions": {
|
302
|
+
"version": "7.12.1",
|
303
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz",
|
304
|
+
"integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==",
|
305
|
+
"requires": {
|
306
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
307
|
+
"@babel/helper-remap-async-to-generator": "^7.12.1",
|
308
|
+
"@babel/plugin-syntax-async-generators": "^7.8.0"
|
309
|
+
}
|
310
|
+
},
|
311
|
+
"@babel/plugin-proposal-class-properties": {
|
312
|
+
"version": "7.12.1",
|
313
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz",
|
314
|
+
"integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==",
|
315
|
+
"requires": {
|
316
|
+
"@babel/helper-create-class-features-plugin": "^7.12.1",
|
317
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
318
|
+
}
|
319
|
+
},
|
320
|
+
"@babel/plugin-proposal-decorators": {
|
321
|
+
"version": "7.12.1",
|
322
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz",
|
323
|
+
"integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==",
|
324
|
+
"requires": {
|
325
|
+
"@babel/helper-create-class-features-plugin": "^7.12.1",
|
326
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
327
|
+
"@babel/plugin-syntax-decorators": "^7.12.1"
|
328
|
+
}
|
329
|
+
},
|
330
|
+
"@babel/plugin-proposal-dynamic-import": {
|
331
|
+
"version": "7.12.1",
|
332
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz",
|
333
|
+
"integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==",
|
334
|
+
"requires": {
|
335
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
336
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.0"
|
337
|
+
}
|
338
|
+
},
|
339
|
+
"@babel/plugin-proposal-export-namespace-from": {
|
340
|
+
"version": "7.12.1",
|
341
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz",
|
342
|
+
"integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==",
|
343
|
+
"requires": {
|
344
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
345
|
+
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
|
346
|
+
}
|
347
|
+
},
|
348
|
+
"@babel/plugin-proposal-json-strings": {
|
349
|
+
"version": "7.12.1",
|
350
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz",
|
351
|
+
"integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==",
|
352
|
+
"requires": {
|
353
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
354
|
+
"@babel/plugin-syntax-json-strings": "^7.8.0"
|
355
|
+
}
|
356
|
+
},
|
357
|
+
"@babel/plugin-proposal-logical-assignment-operators": {
|
358
|
+
"version": "7.12.1",
|
359
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz",
|
360
|
+
"integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==",
|
361
|
+
"requires": {
|
362
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
363
|
+
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
|
364
|
+
}
|
365
|
+
},
|
366
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": {
|
367
|
+
"version": "7.12.1",
|
368
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz",
|
369
|
+
"integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==",
|
370
|
+
"requires": {
|
371
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
372
|
+
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
|
373
|
+
}
|
374
|
+
},
|
375
|
+
"@babel/plugin-proposal-numeric-separator": {
|
376
|
+
"version": "7.12.1",
|
377
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz",
|
378
|
+
"integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==",
|
379
|
+
"requires": {
|
380
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
381
|
+
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
|
382
|
+
}
|
383
|
+
},
|
384
|
+
"@babel/plugin-proposal-object-rest-spread": {
|
385
|
+
"version": "7.12.1",
|
386
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz",
|
387
|
+
"integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==",
|
388
|
+
"requires": {
|
389
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
390
|
+
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
|
391
|
+
"@babel/plugin-transform-parameters": "^7.12.1"
|
392
|
+
}
|
393
|
+
},
|
394
|
+
"@babel/plugin-proposal-optional-catch-binding": {
|
395
|
+
"version": "7.12.1",
|
396
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz",
|
397
|
+
"integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==",
|
398
|
+
"requires": {
|
399
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
400
|
+
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
|
401
|
+
}
|
402
|
+
},
|
403
|
+
"@babel/plugin-proposal-optional-chaining": {
|
404
|
+
"version": "7.12.1",
|
405
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz",
|
406
|
+
"integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==",
|
407
|
+
"requires": {
|
408
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
409
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
|
410
|
+
"@babel/plugin-syntax-optional-chaining": "^7.8.0"
|
411
|
+
}
|
412
|
+
},
|
413
|
+
"@babel/plugin-proposal-private-methods": {
|
414
|
+
"version": "7.12.1",
|
415
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz",
|
416
|
+
"integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==",
|
417
|
+
"requires": {
|
418
|
+
"@babel/helper-create-class-features-plugin": "^7.12.1",
|
419
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
420
|
+
}
|
421
|
+
},
|
422
|
+
"@babel/plugin-proposal-unicode-property-regex": {
|
423
|
+
"version": "7.12.1",
|
424
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz",
|
425
|
+
"integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==",
|
426
|
+
"requires": {
|
427
|
+
"@babel/helper-create-regexp-features-plugin": "^7.12.1",
|
428
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
429
|
+
}
|
430
|
+
},
|
431
|
+
"@babel/plugin-syntax-async-generators": {
|
432
|
+
"version": "7.8.4",
|
433
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
|
434
|
+
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
|
435
|
+
"requires": {
|
436
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
437
|
+
}
|
438
|
+
},
|
439
|
+
"@babel/plugin-syntax-class-properties": {
|
440
|
+
"version": "7.12.1",
|
441
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz",
|
442
|
+
"integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==",
|
443
|
+
"requires": {
|
444
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
445
|
+
}
|
446
|
+
},
|
447
|
+
"@babel/plugin-syntax-decorators": {
|
448
|
+
"version": "7.12.1",
|
449
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz",
|
450
|
+
"integrity": "sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w==",
|
451
|
+
"requires": {
|
452
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
453
|
+
}
|
454
|
+
},
|
455
|
+
"@babel/plugin-syntax-dynamic-import": {
|
456
|
+
"version": "7.8.3",
|
457
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
|
458
|
+
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
|
459
|
+
"requires": {
|
460
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
461
|
+
}
|
462
|
+
},
|
463
|
+
"@babel/plugin-syntax-export-namespace-from": {
|
464
|
+
"version": "7.8.3",
|
465
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
|
466
|
+
"integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
|
467
|
+
"requires": {
|
468
|
+
"@babel/helper-plugin-utils": "^7.8.3"
|
469
|
+
}
|
470
|
+
},
|
471
|
+
"@babel/plugin-syntax-json-strings": {
|
472
|
+
"version": "7.8.3",
|
473
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
|
474
|
+
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
|
475
|
+
"requires": {
|
476
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
477
|
+
}
|
478
|
+
},
|
479
|
+
"@babel/plugin-syntax-jsx": {
|
480
|
+
"version": "7.12.1",
|
481
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
|
482
|
+
"integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
|
483
|
+
"requires": {
|
484
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
485
|
+
}
|
486
|
+
},
|
487
|
+
"@babel/plugin-syntax-logical-assignment-operators": {
|
488
|
+
"version": "7.10.4",
|
489
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
|
490
|
+
"integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
|
491
|
+
"requires": {
|
492
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
493
|
+
}
|
494
|
+
},
|
495
|
+
"@babel/plugin-syntax-nullish-coalescing-operator": {
|
496
|
+
"version": "7.8.3",
|
497
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
|
498
|
+
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
|
499
|
+
"requires": {
|
500
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
501
|
+
}
|
502
|
+
},
|
503
|
+
"@babel/plugin-syntax-numeric-separator": {
|
504
|
+
"version": "7.10.4",
|
505
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
|
506
|
+
"integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
|
507
|
+
"requires": {
|
508
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
509
|
+
}
|
510
|
+
},
|
511
|
+
"@babel/plugin-syntax-object-rest-spread": {
|
512
|
+
"version": "7.8.3",
|
513
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
|
514
|
+
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
|
515
|
+
"requires": {
|
516
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
517
|
+
}
|
518
|
+
},
|
519
|
+
"@babel/plugin-syntax-optional-catch-binding": {
|
520
|
+
"version": "7.8.3",
|
521
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
|
522
|
+
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
|
523
|
+
"requires": {
|
524
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
525
|
+
}
|
526
|
+
},
|
527
|
+
"@babel/plugin-syntax-optional-chaining": {
|
528
|
+
"version": "7.8.3",
|
529
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
|
530
|
+
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
|
531
|
+
"requires": {
|
532
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
533
|
+
}
|
534
|
+
},
|
535
|
+
"@babel/plugin-syntax-top-level-await": {
|
536
|
+
"version": "7.12.1",
|
537
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz",
|
538
|
+
"integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==",
|
539
|
+
"requires": {
|
540
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
541
|
+
}
|
542
|
+
},
|
543
|
+
"@babel/plugin-transform-arrow-functions": {
|
544
|
+
"version": "7.12.1",
|
545
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz",
|
546
|
+
"integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==",
|
547
|
+
"requires": {
|
548
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
549
|
+
}
|
550
|
+
},
|
551
|
+
"@babel/plugin-transform-async-to-generator": {
|
552
|
+
"version": "7.12.1",
|
553
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz",
|
554
|
+
"integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==",
|
555
|
+
"requires": {
|
556
|
+
"@babel/helper-module-imports": "^7.12.1",
|
557
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
558
|
+
"@babel/helper-remap-async-to-generator": "^7.12.1"
|
559
|
+
}
|
560
|
+
},
|
561
|
+
"@babel/plugin-transform-block-scoped-functions": {
|
562
|
+
"version": "7.12.1",
|
563
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz",
|
564
|
+
"integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==",
|
565
|
+
"requires": {
|
566
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
567
|
+
}
|
568
|
+
},
|
569
|
+
"@babel/plugin-transform-block-scoping": {
|
570
|
+
"version": "7.12.1",
|
571
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz",
|
572
|
+
"integrity": "sha512-zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==",
|
573
|
+
"requires": {
|
574
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
575
|
+
}
|
576
|
+
},
|
577
|
+
"@babel/plugin-transform-classes": {
|
578
|
+
"version": "7.12.1",
|
579
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz",
|
580
|
+
"integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==",
|
581
|
+
"requires": {
|
582
|
+
"@babel/helper-annotate-as-pure": "^7.10.4",
|
583
|
+
"@babel/helper-define-map": "^7.10.4",
|
584
|
+
"@babel/helper-function-name": "^7.10.4",
|
585
|
+
"@babel/helper-optimise-call-expression": "^7.10.4",
|
586
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
587
|
+
"@babel/helper-replace-supers": "^7.12.1",
|
588
|
+
"@babel/helper-split-export-declaration": "^7.10.4",
|
589
|
+
"globals": "^11.1.0"
|
590
|
+
}
|
591
|
+
},
|
592
|
+
"@babel/plugin-transform-computed-properties": {
|
593
|
+
"version": "7.12.1",
|
594
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz",
|
595
|
+
"integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==",
|
596
|
+
"requires": {
|
597
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
598
|
+
}
|
599
|
+
},
|
600
|
+
"@babel/plugin-transform-destructuring": {
|
601
|
+
"version": "7.12.1",
|
602
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz",
|
603
|
+
"integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==",
|
604
|
+
"requires": {
|
605
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
606
|
+
}
|
607
|
+
},
|
608
|
+
"@babel/plugin-transform-dotall-regex": {
|
609
|
+
"version": "7.12.1",
|
610
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz",
|
611
|
+
"integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==",
|
612
|
+
"requires": {
|
613
|
+
"@babel/helper-create-regexp-features-plugin": "^7.12.1",
|
614
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
615
|
+
}
|
616
|
+
},
|
617
|
+
"@babel/plugin-transform-duplicate-keys": {
|
618
|
+
"version": "7.12.1",
|
619
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz",
|
620
|
+
"integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==",
|
621
|
+
"requires": {
|
622
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
623
|
+
}
|
624
|
+
},
|
625
|
+
"@babel/plugin-transform-exponentiation-operator": {
|
626
|
+
"version": "7.12.1",
|
627
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz",
|
628
|
+
"integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==",
|
629
|
+
"requires": {
|
630
|
+
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
|
631
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
632
|
+
}
|
633
|
+
},
|
634
|
+
"@babel/plugin-transform-for-of": {
|
635
|
+
"version": "7.12.1",
|
636
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz",
|
637
|
+
"integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==",
|
638
|
+
"requires": {
|
639
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
640
|
+
}
|
641
|
+
},
|
642
|
+
"@babel/plugin-transform-function-name": {
|
643
|
+
"version": "7.12.1",
|
644
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz",
|
645
|
+
"integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==",
|
646
|
+
"requires": {
|
647
|
+
"@babel/helper-function-name": "^7.10.4",
|
648
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
649
|
+
}
|
650
|
+
},
|
651
|
+
"@babel/plugin-transform-literals": {
|
652
|
+
"version": "7.12.1",
|
653
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz",
|
654
|
+
"integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==",
|
655
|
+
"requires": {
|
656
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
657
|
+
}
|
658
|
+
},
|
659
|
+
"@babel/plugin-transform-member-expression-literals": {
|
660
|
+
"version": "7.12.1",
|
661
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz",
|
662
|
+
"integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==",
|
663
|
+
"requires": {
|
664
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
665
|
+
}
|
666
|
+
},
|
667
|
+
"@babel/plugin-transform-modules-amd": {
|
668
|
+
"version": "7.12.1",
|
669
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz",
|
670
|
+
"integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==",
|
671
|
+
"requires": {
|
672
|
+
"@babel/helper-module-transforms": "^7.12.1",
|
673
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
674
|
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
675
|
+
}
|
676
|
+
},
|
677
|
+
"@babel/plugin-transform-modules-commonjs": {
|
678
|
+
"version": "7.12.1",
|
679
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz",
|
680
|
+
"integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==",
|
681
|
+
"requires": {
|
682
|
+
"@babel/helper-module-transforms": "^7.12.1",
|
683
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
684
|
+
"@babel/helper-simple-access": "^7.12.1",
|
685
|
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
686
|
+
}
|
687
|
+
},
|
688
|
+
"@babel/plugin-transform-modules-systemjs": {
|
689
|
+
"version": "7.12.1",
|
690
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz",
|
691
|
+
"integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==",
|
692
|
+
"requires": {
|
693
|
+
"@babel/helper-hoist-variables": "^7.10.4",
|
694
|
+
"@babel/helper-module-transforms": "^7.12.1",
|
695
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
696
|
+
"@babel/helper-validator-identifier": "^7.10.4",
|
697
|
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
698
|
+
}
|
699
|
+
},
|
700
|
+
"@babel/plugin-transform-modules-umd": {
|
701
|
+
"version": "7.12.1",
|
702
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz",
|
703
|
+
"integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==",
|
704
|
+
"requires": {
|
705
|
+
"@babel/helper-module-transforms": "^7.12.1",
|
706
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
707
|
+
}
|
708
|
+
},
|
709
|
+
"@babel/plugin-transform-named-capturing-groups-regex": {
|
710
|
+
"version": "7.12.1",
|
711
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz",
|
712
|
+
"integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==",
|
713
|
+
"requires": {
|
714
|
+
"@babel/helper-create-regexp-features-plugin": "^7.12.1"
|
715
|
+
}
|
716
|
+
},
|
717
|
+
"@babel/plugin-transform-new-target": {
|
718
|
+
"version": "7.12.1",
|
719
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz",
|
720
|
+
"integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==",
|
721
|
+
"requires": {
|
722
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
723
|
+
}
|
724
|
+
},
|
725
|
+
"@babel/plugin-transform-object-super": {
|
726
|
+
"version": "7.12.1",
|
727
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz",
|
728
|
+
"integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==",
|
729
|
+
"requires": {
|
730
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
731
|
+
"@babel/helper-replace-supers": "^7.12.1"
|
732
|
+
}
|
733
|
+
},
|
734
|
+
"@babel/plugin-transform-parameters": {
|
735
|
+
"version": "7.12.1",
|
736
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz",
|
737
|
+
"integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==",
|
738
|
+
"requires": {
|
739
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
740
|
+
}
|
741
|
+
},
|
742
|
+
"@babel/plugin-transform-property-literals": {
|
743
|
+
"version": "7.12.1",
|
744
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz",
|
745
|
+
"integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==",
|
746
|
+
"requires": {
|
747
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
748
|
+
}
|
749
|
+
},
|
750
|
+
"@babel/plugin-transform-regenerator": {
|
751
|
+
"version": "7.12.1",
|
752
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz",
|
753
|
+
"integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==",
|
754
|
+
"requires": {
|
755
|
+
"regenerator-transform": "^0.14.2"
|
756
|
+
}
|
757
|
+
},
|
758
|
+
"@babel/plugin-transform-reserved-words": {
|
759
|
+
"version": "7.12.1",
|
760
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz",
|
761
|
+
"integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==",
|
762
|
+
"requires": {
|
763
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
764
|
+
}
|
765
|
+
},
|
766
|
+
"@babel/plugin-transform-runtime": {
|
767
|
+
"version": "7.12.1",
|
768
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz",
|
769
|
+
"integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==",
|
770
|
+
"requires": {
|
771
|
+
"@babel/helper-module-imports": "^7.12.1",
|
772
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
773
|
+
"resolve": "^1.8.1",
|
774
|
+
"semver": "^5.5.1"
|
775
|
+
}
|
776
|
+
},
|
777
|
+
"@babel/plugin-transform-shorthand-properties": {
|
778
|
+
"version": "7.12.1",
|
779
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz",
|
780
|
+
"integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==",
|
781
|
+
"requires": {
|
782
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
783
|
+
}
|
784
|
+
},
|
785
|
+
"@babel/plugin-transform-spread": {
|
786
|
+
"version": "7.12.1",
|
787
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz",
|
788
|
+
"integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==",
|
789
|
+
"requires": {
|
790
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
791
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
|
792
|
+
}
|
793
|
+
},
|
794
|
+
"@babel/plugin-transform-sticky-regex": {
|
795
|
+
"version": "7.12.1",
|
796
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz",
|
797
|
+
"integrity": "sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==",
|
798
|
+
"requires": {
|
799
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
800
|
+
"@babel/helper-regex": "^7.10.4"
|
801
|
+
}
|
802
|
+
},
|
803
|
+
"@babel/plugin-transform-template-literals": {
|
804
|
+
"version": "7.12.1",
|
805
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz",
|
806
|
+
"integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==",
|
807
|
+
"requires": {
|
808
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
809
|
+
}
|
810
|
+
},
|
811
|
+
"@babel/plugin-transform-typeof-symbol": {
|
812
|
+
"version": "7.12.1",
|
813
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz",
|
814
|
+
"integrity": "sha512-EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==",
|
815
|
+
"requires": {
|
816
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
817
|
+
}
|
818
|
+
},
|
819
|
+
"@babel/plugin-transform-unicode-escapes": {
|
820
|
+
"version": "7.12.1",
|
821
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz",
|
822
|
+
"integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==",
|
823
|
+
"requires": {
|
824
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
825
|
+
}
|
826
|
+
},
|
827
|
+
"@babel/plugin-transform-unicode-regex": {
|
828
|
+
"version": "7.12.1",
|
829
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz",
|
830
|
+
"integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==",
|
831
|
+
"requires": {
|
832
|
+
"@babel/helper-create-regexp-features-plugin": "^7.12.1",
|
833
|
+
"@babel/helper-plugin-utils": "^7.10.4"
|
834
|
+
}
|
835
|
+
},
|
836
|
+
"@babel/preset-env": {
|
837
|
+
"version": "7.12.1",
|
838
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz",
|
839
|
+
"integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==",
|
840
|
+
"requires": {
|
841
|
+
"@babel/compat-data": "^7.12.1",
|
842
|
+
"@babel/helper-compilation-targets": "^7.12.1",
|
843
|
+
"@babel/helper-module-imports": "^7.12.1",
|
844
|
+
"@babel/helper-plugin-utils": "^7.10.4",
|
845
|
+
"@babel/helper-validator-option": "^7.12.1",
|
846
|
+
"@babel/plugin-proposal-async-generator-functions": "^7.12.1",
|
847
|
+
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
848
|
+
"@babel/plugin-proposal-dynamic-import": "^7.12.1",
|
849
|
+
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
|
850
|
+
"@babel/plugin-proposal-json-strings": "^7.12.1",
|
851
|
+
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
|
852
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
|
853
|
+
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
|
854
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
|
855
|
+
"@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
|
856
|
+
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
|
857
|
+
"@babel/plugin-proposal-private-methods": "^7.12.1",
|
858
|
+
"@babel/plugin-proposal-unicode-property-regex": "^7.12.1",
|
859
|
+
"@babel/plugin-syntax-async-generators": "^7.8.0",
|
860
|
+
"@babel/plugin-syntax-class-properties": "^7.12.1",
|
861
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
|
862
|
+
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
|
863
|
+
"@babel/plugin-syntax-json-strings": "^7.8.0",
|
864
|
+
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
|
865
|
+
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
|
866
|
+
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
|
867
|
+
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
|
868
|
+
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
|
869
|
+
"@babel/plugin-syntax-optional-chaining": "^7.8.0",
|
870
|
+
"@babel/plugin-syntax-top-level-await": "^7.12.1",
|
871
|
+
"@babel/plugin-transform-arrow-functions": "^7.12.1",
|
872
|
+
"@babel/plugin-transform-async-to-generator": "^7.12.1",
|
873
|
+
"@babel/plugin-transform-block-scoped-functions": "^7.12.1",
|
874
|
+
"@babel/plugin-transform-block-scoping": "^7.12.1",
|
875
|
+
"@babel/plugin-transform-classes": "^7.12.1",
|
876
|
+
"@babel/plugin-transform-computed-properties": "^7.12.1",
|
877
|
+
"@babel/plugin-transform-destructuring": "^7.12.1",
|
878
|
+
"@babel/plugin-transform-dotall-regex": "^7.12.1",
|
879
|
+
"@babel/plugin-transform-duplicate-keys": "^7.12.1",
|
880
|
+
"@babel/plugin-transform-exponentiation-operator": "^7.12.1",
|
881
|
+
"@babel/plugin-transform-for-of": "^7.12.1",
|
882
|
+
"@babel/plugin-transform-function-name": "^7.12.1",
|
883
|
+
"@babel/plugin-transform-literals": "^7.12.1",
|
884
|
+
"@babel/plugin-transform-member-expression-literals": "^7.12.1",
|
885
|
+
"@babel/plugin-transform-modules-amd": "^7.12.1",
|
886
|
+
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
|
887
|
+
"@babel/plugin-transform-modules-systemjs": "^7.12.1",
|
888
|
+
"@babel/plugin-transform-modules-umd": "^7.12.1",
|
889
|
+
"@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1",
|
890
|
+
"@babel/plugin-transform-new-target": "^7.12.1",
|
891
|
+
"@babel/plugin-transform-object-super": "^7.12.1",
|
892
|
+
"@babel/plugin-transform-parameters": "^7.12.1",
|
893
|
+
"@babel/plugin-transform-property-literals": "^7.12.1",
|
894
|
+
"@babel/plugin-transform-regenerator": "^7.12.1",
|
895
|
+
"@babel/plugin-transform-reserved-words": "^7.12.1",
|
896
|
+
"@babel/plugin-transform-shorthand-properties": "^7.12.1",
|
897
|
+
"@babel/plugin-transform-spread": "^7.12.1",
|
898
|
+
"@babel/plugin-transform-sticky-regex": "^7.12.1",
|
899
|
+
"@babel/plugin-transform-template-literals": "^7.12.1",
|
900
|
+
"@babel/plugin-transform-typeof-symbol": "^7.12.1",
|
901
|
+
"@babel/plugin-transform-unicode-escapes": "^7.12.1",
|
902
|
+
"@babel/plugin-transform-unicode-regex": "^7.12.1",
|
903
|
+
"@babel/preset-modules": "^0.1.3",
|
904
|
+
"@babel/types": "^7.12.1",
|
905
|
+
"core-js-compat": "^3.6.2",
|
906
|
+
"semver": "^5.5.0"
|
907
|
+
}
|
908
|
+
},
|
909
|
+
"@babel/preset-modules": {
|
910
|
+
"version": "0.1.4",
|
911
|
+
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz",
|
912
|
+
"integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==",
|
913
|
+
"requires": {
|
914
|
+
"@babel/helper-plugin-utils": "^7.0.0",
|
915
|
+
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
|
916
|
+
"@babel/plugin-transform-dotall-regex": "^7.4.4",
|
917
|
+
"@babel/types": "^7.4.4",
|
918
|
+
"esutils": "^2.0.2"
|
919
|
+
}
|
920
|
+
},
|
921
|
+
"@babel/runtime": {
|
922
|
+
"version": "7.12.1",
|
923
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz",
|
924
|
+
"integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==",
|
925
|
+
"requires": {
|
926
|
+
"regenerator-runtime": "^0.13.4"
|
927
|
+
}
|
928
|
+
},
|
929
|
+
"@babel/template": {
|
930
|
+
"version": "7.10.4",
|
931
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
|
932
|
+
"integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
|
933
|
+
"requires": {
|
934
|
+
"@babel/code-frame": "^7.10.4",
|
935
|
+
"@babel/parser": "^7.10.4",
|
936
|
+
"@babel/types": "^7.10.4"
|
937
|
+
}
|
938
|
+
},
|
939
|
+
"@babel/traverse": {
|
940
|
+
"version": "7.12.1",
|
941
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.1.tgz",
|
942
|
+
"integrity": "sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==",
|
943
|
+
"requires": {
|
944
|
+
"@babel/code-frame": "^7.10.4",
|
945
|
+
"@babel/generator": "^7.12.1",
|
946
|
+
"@babel/helper-function-name": "^7.10.4",
|
947
|
+
"@babel/helper-split-export-declaration": "^7.11.0",
|
948
|
+
"@babel/parser": "^7.12.1",
|
949
|
+
"@babel/types": "^7.12.1",
|
950
|
+
"debug": "^4.1.0",
|
951
|
+
"globals": "^11.1.0",
|
952
|
+
"lodash": "^4.17.19"
|
953
|
+
}
|
954
|
+
},
|
955
|
+
"@babel/types": {
|
956
|
+
"version": "7.12.1",
|
957
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.1.tgz",
|
958
|
+
"integrity": "sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==",
|
959
|
+
"requires": {
|
960
|
+
"@babel/helper-validator-identifier": "^7.10.4",
|
961
|
+
"lodash": "^4.17.19",
|
962
|
+
"to-fast-properties": "^2.0.0"
|
963
|
+
}
|
964
|
+
},
|
965
|
+
"@jsdevtools/ono": {
|
966
|
+
"version": "7.1.3",
|
967
|
+
"resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz",
|
968
|
+
"integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="
|
969
|
+
},
|
970
|
+
"@mrmlnc/readdir-enhanced": {
|
971
|
+
"version": "2.2.1",
|
972
|
+
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
|
973
|
+
"integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
|
974
|
+
"requires": {
|
975
|
+
"call-me-maybe": "^1.0.1",
|
976
|
+
"glob-to-regexp": "^0.3.0"
|
977
|
+
}
|
978
|
+
},
|
979
|
+
"@nodelib/fs.stat": {
|
980
|
+
"version": "1.1.3",
|
981
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
|
982
|
+
"integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="
|
983
|
+
},
|
984
|
+
"@sindresorhus/is": {
|
985
|
+
"version": "0.14.0",
|
986
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
|
987
|
+
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
|
988
|
+
},
|
989
|
+
"@szmarczak/http-timer": {
|
990
|
+
"version": "1.1.2",
|
991
|
+
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
|
992
|
+
"integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
|
993
|
+
"requires": {
|
994
|
+
"defer-to-connect": "^1.0.1"
|
995
|
+
}
|
996
|
+
},
|
997
|
+
"@types/glob": {
|
998
|
+
"version": "7.1.3",
|
999
|
+
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz",
|
1000
|
+
"integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==",
|
1001
|
+
"requires": {
|
1002
|
+
"@types/minimatch": "*",
|
1003
|
+
"@types/node": "*"
|
1004
|
+
}
|
1005
|
+
},
|
1006
|
+
"@types/json-schema": {
|
1007
|
+
"version": "7.0.6",
|
1008
|
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz",
|
1009
|
+
"integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="
|
1010
|
+
},
|
1011
|
+
"@types/minimatch": {
|
1012
|
+
"version": "3.0.3",
|
1013
|
+
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
|
1014
|
+
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
|
1015
|
+
},
|
1016
|
+
"@types/node": {
|
1017
|
+
"version": "14.11.10",
|
1018
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.10.tgz",
|
1019
|
+
"integrity": "sha512-yV1nWZPlMFpoXyoknm4S56y2nlTAuFYaJuQtYRAOU7xA/FJ9RY0Xm7QOkaYMMmr8ESdHIuUb6oQgR/0+2NqlyA=="
|
1020
|
+
},
|
1021
|
+
"@types/q": {
|
1022
|
+
"version": "1.5.4",
|
1023
|
+
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz",
|
1024
|
+
"integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="
|
1025
|
+
},
|
1026
|
+
"@vue/babel-helper-vue-jsx-merge-props": {
|
1027
|
+
"version": "1.2.1",
|
1028
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.2.1.tgz",
|
1029
|
+
"integrity": "sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA=="
|
1030
|
+
},
|
1031
|
+
"@vue/babel-helper-vue-transform-on": {
|
1032
|
+
"version": "1.0.0-rc.2",
|
1033
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0-rc.2.tgz",
|
1034
|
+
"integrity": "sha512-1+7CwjQ0Kasml6rHoNQUmbISwqLNNfFVBUcZl6QBremUl296ZmLrVQPqJP5pyAAWjZke5bpI1hlj+LVVuT7Jcg=="
|
1035
|
+
},
|
1036
|
+
"@vue/babel-plugin-jsx": {
|
1037
|
+
"version": "1.0.0-rc.3",
|
1038
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.0-rc.3.tgz",
|
1039
|
+
"integrity": "sha512-/Ibq0hoKsidnHWPhgRpjcjYhYcHpqEm2fiKVAPO88OXZNHGwaGgS4yXkC6TDEvlZep4mBDo+2S5T81wpbVh90Q==",
|
1040
|
+
"requires": {
|
1041
|
+
"@babel/helper-module-imports": "^7.0.0",
|
1042
|
+
"@babel/plugin-syntax-jsx": "^7.0.0",
|
1043
|
+
"@babel/traverse": "^7.0.0",
|
1044
|
+
"@babel/types": "^7.0.0",
|
1045
|
+
"@vue/babel-helper-vue-transform-on": "^1.0.0-rc.2",
|
1046
|
+
"camelcase": "^6.0.0",
|
1047
|
+
"html-tags": "^3.1.0",
|
1048
|
+
"svg-tags": "^1.0.0"
|
1049
|
+
}
|
1050
|
+
},
|
1051
|
+
"@vue/babel-plugin-transform-vue-jsx": {
|
1052
|
+
"version": "1.2.1",
|
1053
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.2.1.tgz",
|
1054
|
+
"integrity": "sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA==",
|
1055
|
+
"requires": {
|
1056
|
+
"@babel/helper-module-imports": "^7.0.0",
|
1057
|
+
"@babel/plugin-syntax-jsx": "^7.2.0",
|
1058
|
+
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
|
1059
|
+
"html-tags": "^2.0.0",
|
1060
|
+
"lodash.kebabcase": "^4.1.1",
|
1061
|
+
"svg-tags": "^1.0.0"
|
1062
|
+
},
|
1063
|
+
"dependencies": {
|
1064
|
+
"html-tags": {
|
1065
|
+
"version": "2.0.0",
|
1066
|
+
"resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz",
|
1067
|
+
"integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos="
|
1068
|
+
}
|
1069
|
+
}
|
1070
|
+
},
|
1071
|
+
"@vue/babel-preset-app": {
|
1072
|
+
"version": "4.5.8",
|
1073
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.8.tgz",
|
1074
|
+
"integrity": "sha512-efCBo2HY8Jcs6+SyCnvWl8jGeF1Fl38reFL35AjO4SBcro0ol/qjPkeeJLjzvXUxrHAsM9DMfL/DvPa/hBmZwQ==",
|
1075
|
+
"requires": {
|
1076
|
+
"@babel/core": "^7.11.0",
|
1077
|
+
"@babel/helper-compilation-targets": "^7.9.6",
|
1078
|
+
"@babel/helper-module-imports": "^7.8.3",
|
1079
|
+
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
1080
|
+
"@babel/plugin-proposal-decorators": "^7.8.3",
|
1081
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
1082
|
+
"@babel/plugin-syntax-jsx": "^7.8.3",
|
1083
|
+
"@babel/plugin-transform-runtime": "^7.11.0",
|
1084
|
+
"@babel/preset-env": "^7.11.0",
|
1085
|
+
"@babel/runtime": "^7.11.0",
|
1086
|
+
"@vue/babel-plugin-jsx": "^1.0.0-0",
|
1087
|
+
"@vue/babel-preset-jsx": "^1.1.2",
|
1088
|
+
"babel-plugin-dynamic-import-node": "^2.3.3",
|
1089
|
+
"core-js": "^3.6.5",
|
1090
|
+
"core-js-compat": "^3.6.5",
|
1091
|
+
"semver": "^6.1.0"
|
1092
|
+
},
|
1093
|
+
"dependencies": {
|
1094
|
+
"semver": {
|
1095
|
+
"version": "6.3.0",
|
1096
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
1097
|
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
1098
|
+
}
|
1099
|
+
}
|
1100
|
+
},
|
1101
|
+
"@vue/babel-preset-jsx": {
|
1102
|
+
"version": "1.2.2",
|
1103
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.2.2.tgz",
|
1104
|
+
"integrity": "sha512-+PQKZwoh98oHnRnifT5XD4Ybkwe0McDGkcZcFQRfynL1SFg5zfGRscntZ8Lt4QmYs5NiYc2WOQbyrolUlLZedQ==",
|
1105
|
+
"requires": {
|
1106
|
+
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
|
1107
|
+
"@vue/babel-plugin-transform-vue-jsx": "^1.2.1",
|
1108
|
+
"@vue/babel-sugar-composition-api-inject-h": "^1.2.1",
|
1109
|
+
"@vue/babel-sugar-composition-api-render-instance": "^1.2.1",
|
1110
|
+
"@vue/babel-sugar-functional-vue": "^1.2.2",
|
1111
|
+
"@vue/babel-sugar-inject-h": "^1.2.2",
|
1112
|
+
"@vue/babel-sugar-v-model": "^1.2.1",
|
1113
|
+
"@vue/babel-sugar-v-on": "^1.2.1"
|
1114
|
+
}
|
1115
|
+
},
|
1116
|
+
"@vue/babel-sugar-composition-api-inject-h": {
|
1117
|
+
"version": "1.2.1",
|
1118
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.2.1.tgz",
|
1119
|
+
"integrity": "sha512-4B3L5Z2G+7s+9Bwbf+zPIifkFNcKth7fQwekVbnOA3cr3Pq71q71goWr97sk4/yyzH8phfe5ODVzEjX7HU7ItQ==",
|
1120
|
+
"requires": {
|
1121
|
+
"@babel/plugin-syntax-jsx": "^7.2.0"
|
1122
|
+
}
|
1123
|
+
},
|
1124
|
+
"@vue/babel-sugar-composition-api-render-instance": {
|
1125
|
+
"version": "1.2.1",
|
1126
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.2.1.tgz",
|
1127
|
+
"integrity": "sha512-F2gQbEMOUPyapqc85/O1Tbw0qBuvgXC/qBcBsjMKqC7KWJ4hK1eJUvU3iLHHTbre6V7zzIjrqEe0SoE1lR4mfw==",
|
1128
|
+
"requires": {
|
1129
|
+
"@babel/plugin-syntax-jsx": "^7.2.0"
|
1130
|
+
}
|
1131
|
+
},
|
1132
|
+
"@vue/babel-sugar-functional-vue": {
|
1133
|
+
"version": "1.2.2",
|
1134
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.2.2.tgz",
|
1135
|
+
"integrity": "sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w==",
|
1136
|
+
"requires": {
|
1137
|
+
"@babel/plugin-syntax-jsx": "^7.2.0"
|
1138
|
+
}
|
1139
|
+
},
|
1140
|
+
"@vue/babel-sugar-inject-h": {
|
1141
|
+
"version": "1.2.2",
|
1142
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.2.2.tgz",
|
1143
|
+
"integrity": "sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw==",
|
1144
|
+
"requires": {
|
1145
|
+
"@babel/plugin-syntax-jsx": "^7.2.0"
|
1146
|
+
}
|
1147
|
+
},
|
1148
|
+
"@vue/babel-sugar-v-model": {
|
1149
|
+
"version": "1.2.1",
|
1150
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.2.1.tgz",
|
1151
|
+
"integrity": "sha512-6kTx+hZVJ6dclAwWXSvfnv4XlkzCzKthQ/xlnypFW8+9uhy3E5ehNiAaHfr83R8+7d3DlvbZrQ9xgbZc1quuJg==",
|
1152
|
+
"requires": {
|
1153
|
+
"@babel/plugin-syntax-jsx": "^7.2.0",
|
1154
|
+
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
|
1155
|
+
"@vue/babel-plugin-transform-vue-jsx": "^1.2.1",
|
1156
|
+
"camelcase": "^5.0.0",
|
1157
|
+
"html-tags": "^2.0.0",
|
1158
|
+
"svg-tags": "^1.0.0"
|
1159
|
+
},
|
1160
|
+
"dependencies": {
|
1161
|
+
"camelcase": {
|
1162
|
+
"version": "5.3.1",
|
1163
|
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
1164
|
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
1165
|
+
},
|
1166
|
+
"html-tags": {
|
1167
|
+
"version": "2.0.0",
|
1168
|
+
"resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz",
|
1169
|
+
"integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos="
|
1170
|
+
}
|
1171
|
+
}
|
1172
|
+
},
|
1173
|
+
"@vue/babel-sugar-v-on": {
|
1174
|
+
"version": "1.2.1",
|
1175
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.2.1.tgz",
|
1176
|
+
"integrity": "sha512-rQhM52dC/vWxgMmi8ZY5MwudOb9sWrqN4gffbPDV44TNqyd2j1+PmW2qLR0QfcDsAccR5U+gcguHc3qhLSrXNw==",
|
1177
|
+
"requires": {
|
1178
|
+
"@babel/plugin-syntax-jsx": "^7.2.0",
|
1179
|
+
"@vue/babel-plugin-transform-vue-jsx": "^1.2.1",
|
1180
|
+
"camelcase": "^5.0.0"
|
1181
|
+
},
|
1182
|
+
"dependencies": {
|
1183
|
+
"camelcase": {
|
1184
|
+
"version": "5.3.1",
|
1185
|
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
1186
|
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
1187
|
+
}
|
1188
|
+
}
|
1189
|
+
},
|
1190
|
+
"@vue/component-compiler-utils": {
|
1191
|
+
"version": "3.2.0",
|
1192
|
+
"resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz",
|
1193
|
+
"integrity": "sha512-lejBLa7xAMsfiZfNp7Kv51zOzifnb29FwdnMLa96z26kXErPFioSf9BMcePVIQ6/Gc6/mC0UrPpxAWIHyae0vw==",
|
1194
|
+
"requires": {
|
1195
|
+
"consolidate": "^0.15.1",
|
1196
|
+
"hash-sum": "^1.0.2",
|
1197
|
+
"lru-cache": "^4.1.2",
|
1198
|
+
"merge-source-map": "^1.1.0",
|
1199
|
+
"postcss": "^7.0.14",
|
1200
|
+
"postcss-selector-parser": "^6.0.2",
|
1201
|
+
"prettier": "^1.18.2",
|
1202
|
+
"source-map": "~0.6.1",
|
1203
|
+
"vue-template-es2015-compiler": "^1.9.0"
|
1204
|
+
},
|
1205
|
+
"dependencies": {
|
1206
|
+
"lru-cache": {
|
1207
|
+
"version": "4.1.5",
|
1208
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
|
1209
|
+
"integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
|
1210
|
+
"requires": {
|
1211
|
+
"pseudomap": "^1.0.2",
|
1212
|
+
"yallist": "^2.1.2"
|
1213
|
+
}
|
1214
|
+
},
|
1215
|
+
"source-map": {
|
1216
|
+
"version": "0.6.1",
|
1217
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
1218
|
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
1219
|
+
},
|
1220
|
+
"yallist": {
|
1221
|
+
"version": "2.1.2",
|
1222
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
|
1223
|
+
"integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI="
|
1224
|
+
}
|
1225
|
+
}
|
1226
|
+
},
|
1227
|
+
"@vuepress/core": {
|
1228
|
+
"version": "1.7.1",
|
1229
|
+
"resolved": "https://registry.npmjs.org/@vuepress/core/-/core-1.7.1.tgz",
|
1230
|
+
"integrity": "sha512-M5sxZq30Ke1vXa4ZZjk6185fwtpiJOqzXNnzcIe0GxtvtaF8Yij6b+KqQKlUJnnUXm+CKxiLCr8PTzDY26N7yw==",
|
1231
|
+
"requires": {
|
1232
|
+
"@babel/core": "^7.8.4",
|
1233
|
+
"@vue/babel-preset-app": "^4.1.2",
|
1234
|
+
"@vuepress/markdown": "1.7.1",
|
1235
|
+
"@vuepress/markdown-loader": "1.7.1",
|
1236
|
+
"@vuepress/plugin-last-updated": "1.7.1",
|
1237
|
+
"@vuepress/plugin-register-components": "1.7.1",
|
1238
|
+
"@vuepress/shared-utils": "1.7.1",
|
1239
|
+
"autoprefixer": "^9.5.1",
|
1240
|
+
"babel-loader": "^8.0.4",
|
1241
|
+
"cache-loader": "^3.0.0",
|
1242
|
+
"chokidar": "^2.0.3",
|
1243
|
+
"connect-history-api-fallback": "^1.5.0",
|
1244
|
+
"copy-webpack-plugin": "^5.0.2",
|
1245
|
+
"core-js": "^3.6.4",
|
1246
|
+
"cross-spawn": "^6.0.5",
|
1247
|
+
"css-loader": "^2.1.1",
|
1248
|
+
"file-loader": "^3.0.1",
|
1249
|
+
"js-yaml": "^3.13.1",
|
1250
|
+
"lru-cache": "^5.1.1",
|
1251
|
+
"mini-css-extract-plugin": "0.6.0",
|
1252
|
+
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
1253
|
+
"portfinder": "^1.0.13",
|
1254
|
+
"postcss-loader": "^3.0.0",
|
1255
|
+
"postcss-safe-parser": "^4.0.1",
|
1256
|
+
"toml": "^3.0.0",
|
1257
|
+
"url-loader": "^1.0.1",
|
1258
|
+
"vue": "^2.6.10",
|
1259
|
+
"vue-loader": "^15.7.1",
|
1260
|
+
"vue-router": "^3.4.5",
|
1261
|
+
"vue-server-renderer": "^2.6.10",
|
1262
|
+
"vue-template-compiler": "^2.6.10",
|
1263
|
+
"vuepress-html-webpack-plugin": "^3.2.0",
|
1264
|
+
"vuepress-plugin-container": "^2.0.2",
|
1265
|
+
"webpack": "^4.8.1",
|
1266
|
+
"webpack-chain": "^6.0.0",
|
1267
|
+
"webpack-dev-server": "^3.5.1",
|
1268
|
+
"webpack-merge": "^4.1.2",
|
1269
|
+
"webpackbar": "3.2.0"
|
1270
|
+
}
|
1271
|
+
},
|
1272
|
+
"@vuepress/markdown": {
|
1273
|
+
"version": "1.7.1",
|
1274
|
+
"resolved": "https://registry.npmjs.org/@vuepress/markdown/-/markdown-1.7.1.tgz",
|
1275
|
+
"integrity": "sha512-Ava9vJECHG1+RC53ut1dXSze35IH5tc3qesC06Ny37WS93iDSQy09j8y+a0Lugy12j1369+QQeRFWa40tdHczA==",
|
1276
|
+
"requires": {
|
1277
|
+
"@vuepress/shared-utils": "1.7.1",
|
1278
|
+
"markdown-it": "^8.4.1",
|
1279
|
+
"markdown-it-anchor": "^5.0.2",
|
1280
|
+
"markdown-it-chain": "^1.3.0",
|
1281
|
+
"markdown-it-emoji": "^1.4.0",
|
1282
|
+
"markdown-it-table-of-contents": "^0.4.0",
|
1283
|
+
"prismjs": "^1.13.0"
|
1284
|
+
}
|
1285
|
+
},
|
1286
|
+
"@vuepress/markdown-loader": {
|
1287
|
+
"version": "1.7.1",
|
1288
|
+
"resolved": "https://registry.npmjs.org/@vuepress/markdown-loader/-/markdown-loader-1.7.1.tgz",
|
1289
|
+
"integrity": "sha512-GM1F/tRhP9qZydTC89FXJPlLH+BmZijMKom5BYLAMEXsU20A9kABTRoatPjOUbZuKT+gn03JgG97qVd8xa/ETw==",
|
1290
|
+
"requires": {
|
1291
|
+
"@vuepress/markdown": "1.7.1",
|
1292
|
+
"loader-utils": "^1.1.0",
|
1293
|
+
"lru-cache": "^5.1.1"
|
1294
|
+
}
|
1295
|
+
},
|
1296
|
+
"@vuepress/plugin-active-header-links": {
|
1297
|
+
"version": "1.7.1",
|
1298
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-active-header-links/-/plugin-active-header-links-1.7.1.tgz",
|
1299
|
+
"integrity": "sha512-Wgf/oB9oPZLnYoLjQ/xbQc4Qa3RU5tXAo2dB4Xl/7bUL6SqBxO866kX3wPxKdSOIL58tq8iH9XbUe3Sxi8/ISQ==",
|
1300
|
+
"requires": {
|
1301
|
+
"lodash.debounce": "^4.0.8"
|
1302
|
+
}
|
1303
|
+
},
|
1304
|
+
"@vuepress/plugin-last-updated": {
|
1305
|
+
"version": "1.7.1",
|
1306
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-last-updated/-/plugin-last-updated-1.7.1.tgz",
|
1307
|
+
"integrity": "sha512-VW5jhBuO0WRHDsBmFsKC6QtEyBLCgyhuH9nQ65aairCn3tdoJPz0uQ4g3lr/boVbgsPexO677Sn3dRPgYqnMug==",
|
1308
|
+
"requires": {
|
1309
|
+
"cross-spawn": "^6.0.5"
|
1310
|
+
}
|
1311
|
+
},
|
1312
|
+
"@vuepress/plugin-nprogress": {
|
1313
|
+
"version": "1.7.1",
|
1314
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-nprogress/-/plugin-nprogress-1.7.1.tgz",
|
1315
|
+
"integrity": "sha512-KtqfI3RitbsEbm22EhbooTvhjfMf6zttKlbND7LcyJwP3MEPVYyzQJuET03hk9z4SgCfNV2r/W3sYyejzzTMog==",
|
1316
|
+
"requires": {
|
1317
|
+
"nprogress": "^0.2.0"
|
1318
|
+
}
|
1319
|
+
},
|
1320
|
+
"@vuepress/plugin-register-components": {
|
1321
|
+
"version": "1.7.1",
|
1322
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-register-components/-/plugin-register-components-1.7.1.tgz",
|
1323
|
+
"integrity": "sha512-MlFdH6l3rTCJlGMvyssXVG998cq5LSMzxCuQLYcRdtHQT4HbikIcV4HSPGarWInD1mP12+qX/PvKUawGwp1eVg==",
|
1324
|
+
"requires": {
|
1325
|
+
"@vuepress/shared-utils": "1.7.1"
|
1326
|
+
}
|
1327
|
+
},
|
1328
|
+
"@vuepress/plugin-search": {
|
1329
|
+
"version": "1.7.1",
|
1330
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-search/-/plugin-search-1.7.1.tgz",
|
1331
|
+
"integrity": "sha512-OmiGM5eYg9c+uC50b6/cSxAhqxfD7AIui6JEztFGeECrlP33RLHmteXK9YBBZjp5wTNmoYs+NXI/cWggYUPW8Q=="
|
1332
|
+
},
|
1333
|
+
"@vuepress/shared-utils": {
|
1334
|
+
"version": "1.7.1",
|
1335
|
+
"resolved": "https://registry.npmjs.org/@vuepress/shared-utils/-/shared-utils-1.7.1.tgz",
|
1336
|
+
"integrity": "sha512-ydB2ZKsFZE6hFRb9FWqzZksxAPIMJjtBawk50RP6F+YX5HbID/HlyYYZM9aDSbk6RTkjgB5UzJjggA2xM8POlw==",
|
1337
|
+
"requires": {
|
1338
|
+
"chalk": "^2.3.2",
|
1339
|
+
"escape-html": "^1.0.3",
|
1340
|
+
"fs-extra": "^7.0.1",
|
1341
|
+
"globby": "^9.2.0",
|
1342
|
+
"gray-matter": "^4.0.1",
|
1343
|
+
"hash-sum": "^1.0.2",
|
1344
|
+
"semver": "^6.0.0",
|
1345
|
+
"toml": "^3.0.0",
|
1346
|
+
"upath": "^1.1.0"
|
1347
|
+
},
|
1348
|
+
"dependencies": {
|
1349
|
+
"semver": {
|
1350
|
+
"version": "6.3.0",
|
1351
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
1352
|
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
1353
|
+
}
|
1354
|
+
}
|
1355
|
+
},
|
1356
|
+
"@vuepress/theme-default": {
|
1357
|
+
"version": "1.7.1",
|
1358
|
+
"resolved": "https://registry.npmjs.org/@vuepress/theme-default/-/theme-default-1.7.1.tgz",
|
1359
|
+
"integrity": "sha512-a9HeTrlcWQj3ONHiABmlN2z9TyIxKfQtLsA8AL+WgjN3PikhFuZFIJGzfr+NLt67Y9oiI+S9ZfiaVyvWM+7bWQ==",
|
1360
|
+
"requires": {
|
1361
|
+
"@vuepress/plugin-active-header-links": "1.7.1",
|
1362
|
+
"@vuepress/plugin-nprogress": "1.7.1",
|
1363
|
+
"@vuepress/plugin-search": "1.7.1",
|
1364
|
+
"docsearch.js": "^2.5.2",
|
1365
|
+
"lodash": "^4.17.15",
|
1366
|
+
"stylus": "^0.54.8",
|
1367
|
+
"stylus-loader": "^3.0.2",
|
1368
|
+
"vuepress-plugin-container": "^2.0.2",
|
1369
|
+
"vuepress-plugin-smooth-scroll": "^0.0.3"
|
1370
|
+
}
|
1371
|
+
},
|
1372
|
+
"@webassemblyjs/ast": {
|
1373
|
+
"version": "1.9.0",
|
1374
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
|
1375
|
+
"integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
|
1376
|
+
"requires": {
|
1377
|
+
"@webassemblyjs/helper-module-context": "1.9.0",
|
1378
|
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
1379
|
+
"@webassemblyjs/wast-parser": "1.9.0"
|
1380
|
+
}
|
1381
|
+
},
|
1382
|
+
"@webassemblyjs/floating-point-hex-parser": {
|
1383
|
+
"version": "1.9.0",
|
1384
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
|
1385
|
+
"integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA=="
|
1386
|
+
},
|
1387
|
+
"@webassemblyjs/helper-api-error": {
|
1388
|
+
"version": "1.9.0",
|
1389
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
|
1390
|
+
"integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw=="
|
1391
|
+
},
|
1392
|
+
"@webassemblyjs/helper-buffer": {
|
1393
|
+
"version": "1.9.0",
|
1394
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
|
1395
|
+
"integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA=="
|
1396
|
+
},
|
1397
|
+
"@webassemblyjs/helper-code-frame": {
|
1398
|
+
"version": "1.9.0",
|
1399
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
|
1400
|
+
"integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
|
1401
|
+
"requires": {
|
1402
|
+
"@webassemblyjs/wast-printer": "1.9.0"
|
1403
|
+
}
|
1404
|
+
},
|
1405
|
+
"@webassemblyjs/helper-fsm": {
|
1406
|
+
"version": "1.9.0",
|
1407
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
|
1408
|
+
"integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw=="
|
1409
|
+
},
|
1410
|
+
"@webassemblyjs/helper-module-context": {
|
1411
|
+
"version": "1.9.0",
|
1412
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
|
1413
|
+
"integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
|
1414
|
+
"requires": {
|
1415
|
+
"@webassemblyjs/ast": "1.9.0"
|
1416
|
+
}
|
1417
|
+
},
|
1418
|
+
"@webassemblyjs/helper-wasm-bytecode": {
|
1419
|
+
"version": "1.9.0",
|
1420
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
|
1421
|
+
"integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw=="
|
1422
|
+
},
|
1423
|
+
"@webassemblyjs/helper-wasm-section": {
|
1424
|
+
"version": "1.9.0",
|
1425
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
|
1426
|
+
"integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
|
1427
|
+
"requires": {
|
1428
|
+
"@webassemblyjs/ast": "1.9.0",
|
1429
|
+
"@webassemblyjs/helper-buffer": "1.9.0",
|
1430
|
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
1431
|
+
"@webassemblyjs/wasm-gen": "1.9.0"
|
1432
|
+
}
|
1433
|
+
},
|
1434
|
+
"@webassemblyjs/ieee754": {
|
1435
|
+
"version": "1.9.0",
|
1436
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
|
1437
|
+
"integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
|
1438
|
+
"requires": {
|
1439
|
+
"@xtuc/ieee754": "^1.2.0"
|
1440
|
+
}
|
1441
|
+
},
|
1442
|
+
"@webassemblyjs/leb128": {
|
1443
|
+
"version": "1.9.0",
|
1444
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
|
1445
|
+
"integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
|
1446
|
+
"requires": {
|
1447
|
+
"@xtuc/long": "4.2.2"
|
1448
|
+
}
|
1449
|
+
},
|
1450
|
+
"@webassemblyjs/utf8": {
|
1451
|
+
"version": "1.9.0",
|
1452
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
|
1453
|
+
"integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w=="
|
1454
|
+
},
|
1455
|
+
"@webassemblyjs/wasm-edit": {
|
1456
|
+
"version": "1.9.0",
|
1457
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
|
1458
|
+
"integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
|
1459
|
+
"requires": {
|
1460
|
+
"@webassemblyjs/ast": "1.9.0",
|
1461
|
+
"@webassemblyjs/helper-buffer": "1.9.0",
|
1462
|
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
1463
|
+
"@webassemblyjs/helper-wasm-section": "1.9.0",
|
1464
|
+
"@webassemblyjs/wasm-gen": "1.9.0",
|
1465
|
+
"@webassemblyjs/wasm-opt": "1.9.0",
|
1466
|
+
"@webassemblyjs/wasm-parser": "1.9.0",
|
1467
|
+
"@webassemblyjs/wast-printer": "1.9.0"
|
1468
|
+
}
|
1469
|
+
},
|
1470
|
+
"@webassemblyjs/wasm-gen": {
|
1471
|
+
"version": "1.9.0",
|
1472
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
|
1473
|
+
"integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
|
1474
|
+
"requires": {
|
1475
|
+
"@webassemblyjs/ast": "1.9.0",
|
1476
|
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
1477
|
+
"@webassemblyjs/ieee754": "1.9.0",
|
1478
|
+
"@webassemblyjs/leb128": "1.9.0",
|
1479
|
+
"@webassemblyjs/utf8": "1.9.0"
|
1480
|
+
}
|
1481
|
+
},
|
1482
|
+
"@webassemblyjs/wasm-opt": {
|
1483
|
+
"version": "1.9.0",
|
1484
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
|
1485
|
+
"integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
|
1486
|
+
"requires": {
|
1487
|
+
"@webassemblyjs/ast": "1.9.0",
|
1488
|
+
"@webassemblyjs/helper-buffer": "1.9.0",
|
1489
|
+
"@webassemblyjs/wasm-gen": "1.9.0",
|
1490
|
+
"@webassemblyjs/wasm-parser": "1.9.0"
|
1491
|
+
}
|
1492
|
+
},
|
1493
|
+
"@webassemblyjs/wasm-parser": {
|
1494
|
+
"version": "1.9.0",
|
1495
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
|
1496
|
+
"integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
|
1497
|
+
"requires": {
|
1498
|
+
"@webassemblyjs/ast": "1.9.0",
|
1499
|
+
"@webassemblyjs/helper-api-error": "1.9.0",
|
1500
|
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
1501
|
+
"@webassemblyjs/ieee754": "1.9.0",
|
1502
|
+
"@webassemblyjs/leb128": "1.9.0",
|
1503
|
+
"@webassemblyjs/utf8": "1.9.0"
|
1504
|
+
}
|
1505
|
+
},
|
1506
|
+
"@webassemblyjs/wast-parser": {
|
1507
|
+
"version": "1.9.0",
|
1508
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
|
1509
|
+
"integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
|
1510
|
+
"requires": {
|
1511
|
+
"@webassemblyjs/ast": "1.9.0",
|
1512
|
+
"@webassemblyjs/floating-point-hex-parser": "1.9.0",
|
1513
|
+
"@webassemblyjs/helper-api-error": "1.9.0",
|
1514
|
+
"@webassemblyjs/helper-code-frame": "1.9.0",
|
1515
|
+
"@webassemblyjs/helper-fsm": "1.9.0",
|
1516
|
+
"@xtuc/long": "4.2.2"
|
1517
|
+
}
|
1518
|
+
},
|
1519
|
+
"@webassemblyjs/wast-printer": {
|
1520
|
+
"version": "1.9.0",
|
1521
|
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
|
1522
|
+
"integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
|
1523
|
+
"requires": {
|
1524
|
+
"@webassemblyjs/ast": "1.9.0",
|
1525
|
+
"@webassemblyjs/wast-parser": "1.9.0",
|
1526
|
+
"@xtuc/long": "4.2.2"
|
1527
|
+
}
|
1528
|
+
},
|
1529
|
+
"@xtuc/ieee754": {
|
1530
|
+
"version": "1.2.0",
|
1531
|
+
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
|
1532
|
+
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="
|
1533
|
+
},
|
1534
|
+
"@xtuc/long": {
|
1535
|
+
"version": "4.2.2",
|
1536
|
+
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
|
1537
|
+
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
|
1538
|
+
},
|
1539
|
+
"abbrev": {
|
1540
|
+
"version": "1.1.1",
|
1541
|
+
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
|
1542
|
+
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
|
1543
|
+
},
|
1544
|
+
"accepts": {
|
1545
|
+
"version": "1.3.7",
|
1546
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
|
1547
|
+
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
|
1548
|
+
"requires": {
|
1549
|
+
"mime-types": "~2.1.24",
|
1550
|
+
"negotiator": "0.6.2"
|
1551
|
+
}
|
1552
|
+
},
|
1553
|
+
"acorn": {
|
1554
|
+
"version": "6.4.2",
|
1555
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz",
|
1556
|
+
"integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="
|
1557
|
+
},
|
1558
|
+
"agentkeepalive": {
|
1559
|
+
"version": "2.2.0",
|
1560
|
+
"resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-2.2.0.tgz",
|
1561
|
+
"integrity": "sha1-xdG9SxKQCPEWPyNvhuX66iAm4u8="
|
1562
|
+
},
|
1563
|
+
"ajv": {
|
1564
|
+
"version": "6.12.6",
|
1565
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
1566
|
+
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
1567
|
+
"requires": {
|
1568
|
+
"fast-deep-equal": "^3.1.1",
|
1569
|
+
"fast-json-stable-stringify": "^2.0.0",
|
1570
|
+
"json-schema-traverse": "^0.4.1",
|
1571
|
+
"uri-js": "^4.2.2"
|
1572
|
+
}
|
1573
|
+
},
|
1574
|
+
"ajv-errors": {
|
1575
|
+
"version": "1.0.1",
|
1576
|
+
"resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
|
1577
|
+
"integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ=="
|
1578
|
+
},
|
1579
|
+
"ajv-keywords": {
|
1580
|
+
"version": "3.5.2",
|
1581
|
+
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
1582
|
+
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
|
1583
|
+
},
|
1584
|
+
"algoliasearch": {
|
1585
|
+
"version": "3.35.1",
|
1586
|
+
"resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-3.35.1.tgz",
|
1587
|
+
"integrity": "sha512-K4yKVhaHkXfJ/xcUnil04xiSrB8B8yHZoFEhWNpXg23eiCnqvTZw1tn/SqvdsANlYHLJlKl0qi3I/Q2Sqo7LwQ==",
|
1588
|
+
"requires": {
|
1589
|
+
"agentkeepalive": "^2.2.0",
|
1590
|
+
"debug": "^2.6.9",
|
1591
|
+
"envify": "^4.0.0",
|
1592
|
+
"es6-promise": "^4.1.0",
|
1593
|
+
"events": "^1.1.0",
|
1594
|
+
"foreach": "^2.0.5",
|
1595
|
+
"global": "^4.3.2",
|
1596
|
+
"inherits": "^2.0.1",
|
1597
|
+
"isarray": "^2.0.1",
|
1598
|
+
"load-script": "^1.0.0",
|
1599
|
+
"object-keys": "^1.0.11",
|
1600
|
+
"querystring-es3": "^0.2.1",
|
1601
|
+
"reduce": "^1.0.1",
|
1602
|
+
"semver": "^5.1.0",
|
1603
|
+
"tunnel-agent": "^0.6.0"
|
1604
|
+
},
|
1605
|
+
"dependencies": {
|
1606
|
+
"debug": {
|
1607
|
+
"version": "2.6.9",
|
1608
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
1609
|
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
1610
|
+
"requires": {
|
1611
|
+
"ms": "2.0.0"
|
1612
|
+
}
|
1613
|
+
},
|
1614
|
+
"events": {
|
1615
|
+
"version": "1.1.1",
|
1616
|
+
"resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
|
1617
|
+
"integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ="
|
1618
|
+
},
|
1619
|
+
"isarray": {
|
1620
|
+
"version": "2.0.5",
|
1621
|
+
"resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
|
1622
|
+
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
|
1623
|
+
},
|
1624
|
+
"ms": {
|
1625
|
+
"version": "2.0.0",
|
1626
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
1627
|
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
1628
|
+
}
|
1629
|
+
}
|
1630
|
+
},
|
1631
|
+
"alphanum-sort": {
|
1632
|
+
"version": "1.0.2",
|
1633
|
+
"resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
|
1634
|
+
"integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM="
|
1635
|
+
},
|
1636
|
+
"ansi-align": {
|
1637
|
+
"version": "3.0.0",
|
1638
|
+
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz",
|
1639
|
+
"integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==",
|
1640
|
+
"requires": {
|
1641
|
+
"string-width": "^3.0.0"
|
1642
|
+
}
|
1643
|
+
},
|
1644
|
+
"ansi-colors": {
|
1645
|
+
"version": "3.2.4",
|
1646
|
+
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
|
1647
|
+
"integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA=="
|
1648
|
+
},
|
1649
|
+
"ansi-escapes": {
|
1650
|
+
"version": "4.3.1",
|
1651
|
+
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz",
|
1652
|
+
"integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==",
|
1653
|
+
"requires": {
|
1654
|
+
"type-fest": "^0.11.0"
|
1655
|
+
}
|
1656
|
+
},
|
1657
|
+
"ansi-html": {
|
1658
|
+
"version": "0.0.7",
|
1659
|
+
"resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz",
|
1660
|
+
"integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4="
|
1661
|
+
},
|
1662
|
+
"ansi-regex": {
|
1663
|
+
"version": "2.1.1",
|
1664
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
1665
|
+
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
|
1666
|
+
},
|
1667
|
+
"ansi-styles": {
|
1668
|
+
"version": "3.2.1",
|
1669
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
1670
|
+
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
1671
|
+
"requires": {
|
1672
|
+
"color-convert": "^1.9.0"
|
1673
|
+
}
|
1674
|
+
},
|
1675
|
+
"anymatch": {
|
1676
|
+
"version": "2.0.0",
|
1677
|
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
|
1678
|
+
"integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
|
1679
|
+
"requires": {
|
1680
|
+
"micromatch": "^3.1.4",
|
1681
|
+
"normalize-path": "^2.1.1"
|
1682
|
+
},
|
1683
|
+
"dependencies": {
|
1684
|
+
"normalize-path": {
|
1685
|
+
"version": "2.1.1",
|
1686
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
|
1687
|
+
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
|
1688
|
+
"requires": {
|
1689
|
+
"remove-trailing-separator": "^1.0.1"
|
1690
|
+
}
|
1691
|
+
}
|
1692
|
+
}
|
1693
|
+
},
|
1694
|
+
"aproba": {
|
1695
|
+
"version": "1.2.0",
|
1696
|
+
"resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
|
1697
|
+
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
|
1698
|
+
},
|
1699
|
+
"argparse": {
|
1700
|
+
"version": "1.0.10",
|
1701
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
1702
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
1703
|
+
"requires": {
|
1704
|
+
"sprintf-js": "~1.0.2"
|
1705
|
+
}
|
1706
|
+
},
|
1707
|
+
"arr-diff": {
|
1708
|
+
"version": "4.0.0",
|
1709
|
+
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
|
1710
|
+
"integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
|
1711
|
+
},
|
1712
|
+
"arr-flatten": {
|
1713
|
+
"version": "1.1.0",
|
1714
|
+
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
|
1715
|
+
"integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
|
1716
|
+
},
|
1717
|
+
"arr-union": {
|
1718
|
+
"version": "3.1.0",
|
1719
|
+
"resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
|
1720
|
+
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
|
1721
|
+
},
|
1722
|
+
"array-flatten": {
|
1723
|
+
"version": "2.1.2",
|
1724
|
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
|
1725
|
+
"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
|
1726
|
+
},
|
1727
|
+
"array-union": {
|
1728
|
+
"version": "1.0.2",
|
1729
|
+
"resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
|
1730
|
+
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
|
1731
|
+
"requires": {
|
1732
|
+
"array-uniq": "^1.0.1"
|
1733
|
+
}
|
1734
|
+
},
|
1735
|
+
"array-uniq": {
|
1736
|
+
"version": "1.0.3",
|
1737
|
+
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
1738
|
+
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
|
1739
|
+
},
|
1740
|
+
"array-unique": {
|
1741
|
+
"version": "0.3.2",
|
1742
|
+
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
|
1743
|
+
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
|
1744
|
+
},
|
1745
|
+
"asn1": {
|
1746
|
+
"version": "0.2.4",
|
1747
|
+
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
|
1748
|
+
"integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
|
1749
|
+
"requires": {
|
1750
|
+
"safer-buffer": "~2.1.0"
|
1751
|
+
}
|
1752
|
+
},
|
1753
|
+
"asn1.js": {
|
1754
|
+
"version": "5.4.1",
|
1755
|
+
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
|
1756
|
+
"integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
|
1757
|
+
"requires": {
|
1758
|
+
"bn.js": "^4.0.0",
|
1759
|
+
"inherits": "^2.0.1",
|
1760
|
+
"minimalistic-assert": "^1.0.0",
|
1761
|
+
"safer-buffer": "^2.1.0"
|
1762
|
+
},
|
1763
|
+
"dependencies": {
|
1764
|
+
"bn.js": {
|
1765
|
+
"version": "4.11.9",
|
1766
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz",
|
1767
|
+
"integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="
|
1768
|
+
}
|
1769
|
+
}
|
1770
|
+
},
|
1771
|
+
"assert": {
|
1772
|
+
"version": "1.5.0",
|
1773
|
+
"resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
|
1774
|
+
"integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
|
1775
|
+
"requires": {
|
1776
|
+
"object-assign": "^4.1.1",
|
1777
|
+
"util": "0.10.3"
|
1778
|
+
},
|
1779
|
+
"dependencies": {
|
1780
|
+
"inherits": {
|
1781
|
+
"version": "2.0.1",
|
1782
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
|
1783
|
+
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE="
|
1784
|
+
},
|
1785
|
+
"util": {
|
1786
|
+
"version": "0.10.3",
|
1787
|
+
"resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
|
1788
|
+
"integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
|
1789
|
+
"requires": {
|
1790
|
+
"inherits": "2.0.1"
|
1791
|
+
}
|
1792
|
+
}
|
1793
|
+
}
|
1794
|
+
},
|
1795
|
+
"assert-plus": {
|
1796
|
+
"version": "1.0.0",
|
1797
|
+
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
|
1798
|
+
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
|
1799
|
+
},
|
1800
|
+
"assign-symbols": {
|
1801
|
+
"version": "1.0.0",
|
1802
|
+
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
|
1803
|
+
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
|
1804
|
+
},
|
1805
|
+
"async": {
|
1806
|
+
"version": "2.6.3",
|
1807
|
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
|
1808
|
+
"integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
|
1809
|
+
"requires": {
|
1810
|
+
"lodash": "^4.17.14"
|
1811
|
+
}
|
1812
|
+
},
|
1813
|
+
"async-each": {
|
1814
|
+
"version": "1.0.3",
|
1815
|
+
"resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
|
1816
|
+
"integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="
|
1817
|
+
},
|
1818
|
+
"async-limiter": {
|
1819
|
+
"version": "1.0.1",
|
1820
|
+
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
|
1821
|
+
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
|
1822
|
+
},
|
1823
|
+
"asynckit": {
|
1824
|
+
"version": "0.4.0",
|
1825
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
1826
|
+
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
1827
|
+
},
|
1828
|
+
"atob": {
|
1829
|
+
"version": "2.1.2",
|
1830
|
+
"resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
|
1831
|
+
"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
|