urbanopt-scenario 0.4.2 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/pull_request_template.md +1 -1
- data/CHANGELOG.md +39 -0
- data/Gemfile +8 -14
- data/LICENSE.md +29 -17
- data/RDOC_MAIN.md +2 -2
- data/README.md +1 -1
- data/Rakefile +16 -6
- data/docs/.vuepress/components/InnerJsonSchema.vue +7 -15
- data/docs/.vuepress/config.js +13 -9
- data/docs/.vuepress/highlight.js +1 -1
- data/docs/.vuepress/json-schema-deref-loader.js +22 -0
- data/docs/README.md +2 -2
- data/docs/package-lock.json +429 -498
- data/docs/package.json +7 -4
- data/lib/urbanopt-scenario.rb +16 -6
- data/lib/urbanopt/scenario.rb +16 -6
- data/lib/urbanopt/scenario/default_reports.rb +16 -6
- data/lib/urbanopt/scenario/extension.rb +21 -9
- data/lib/urbanopt/scenario/logger.rb +16 -6
- data/lib/urbanopt/scenario/scenario_base.rb +20 -10
- data/lib/urbanopt/scenario/scenario_csv.rb +54 -28
- data/lib/urbanopt/scenario/scenario_datapoint_base.rb +20 -10
- data/lib/urbanopt/scenario/scenario_post_processor_base.rb +18 -8
- data/lib/urbanopt/scenario/scenario_post_processor_default.rb +40 -25
- data/lib/urbanopt/scenario/scenario_post_processor_opendss.rb +25 -15
- data/lib/urbanopt/scenario/scenario_runner_base.rb +22 -11
- data/lib/urbanopt/scenario/scenario_runner_osw.rb +22 -10
- data/lib/urbanopt/scenario/scenario_visualization.rb +25 -15
- data/lib/urbanopt/scenario/simulation_dir_base.rb +19 -9
- data/lib/urbanopt/scenario/simulation_dir_osw.rb +20 -10
- data/lib/urbanopt/scenario/simulation_mapper_base.rb +19 -9
- data/lib/urbanopt/scenario/version.rb +17 -7
- data/urbanopt-scenario-gem.gemspec +13 -8
- metadata +8 -65
- data/docs/.vuepress/components/ScenarioSchema.vue +0 -12
- data/docs/schemas/scenario-schema.md +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6806b8d26475423d39fb4de3b5e3f51b1db8b1caf7f4ce17feca438b8f482315
|
4
|
+
data.tar.gz: 8a565d268d69710c0e58799cac2bef11a29cc5286756a8e9da00f618ca4cbe33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a99e381e8803d2e5428877fe963de5cba17826cc97256cdc434da1bb10e41972e9d51d5f4001f3915fb0881c766347eb02068027e7f096d4b8215190aebd3a31
|
7
|
+
data.tar.gz: 752857f0afd9ce62e9e9462837657a5bf827518a989b1375f2a052ae0dbb8f52c0a94f18bb54fcbd0d273da7d3563fd19d4c9f54536745f3678434c9fa75fbee
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,44 @@
|
|
1
1
|
# URBANopt Scenario Gem
|
2
2
|
|
3
|
+
## Version 0.6.0
|
4
|
+
Date Range: 02/05/21 - 04/29/21
|
5
|
+
|
6
|
+
- Fixed [#198]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/198 ), Update copyrights for 2021
|
7
|
+
- Fixed [#205]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/205 ), Incorrect bundle paths being used in UO project
|
8
|
+
- Updated dependencies for OpenStudio 3.2.0 / Ruby 2.7
|
9
|
+
|
10
|
+
## Version 0.5.1
|
11
|
+
Date Range: 12/15/20 - 02/04/21
|
12
|
+
|
13
|
+
- Fixed [#175]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/175 ), Need additional reporting output to supply to DES (Modelica) team
|
14
|
+
- Fixed [#194]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/194 ), In the visualization reports, update graphs to show names of features and not feature ids
|
15
|
+
- Fixed [#196]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/196 ), In opendss postprocessor: update scenario reports saving method to not save the feature reports.
|
16
|
+
|
17
|
+
## Version 0.5.0
|
18
|
+
Date Range: 11/17/20 - 12/09/20
|
19
|
+
|
20
|
+
- Fixed [#177]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/177 ), Fix bug in the method that saves the CSV report
|
21
|
+
- Fixed [#188]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/188 ), support OpenStudio 3.1.0
|
22
|
+
|
23
|
+
## Version 0.4.4
|
24
|
+
Date Range: 11/13/20 - 11/16/20
|
25
|
+
|
26
|
+
- Fixed [#183]( https://github.com/urbanopt/urbanopt-scenario-gem/issues/183 ), Bug in query for scenario_db output file
|
27
|
+
|
28
|
+
## Version 0.4.3
|
29
|
+
Date Range: 10/01/20 - 11/12/20
|
30
|
+
|
31
|
+
- Fixed [#161]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/161 ), updated tests to work with the added units in the json reports
|
32
|
+
- Fixed [#162]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/162 ), update spec Gemfile for new geojson version
|
33
|
+
- Fixed [#163]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/163 ), Db method
|
34
|
+
- Fixed [#165]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/165 ), Update rdoc packages
|
35
|
+
- Fixed [#166]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/166 ), use issue-closing keyword and remove period
|
36
|
+
- Fixed [#168]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/168 ), Aggregates monthly values to get the annual values.
|
37
|
+
- Fixed [#169]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/169 ), Formatting for web display of rdocs
|
38
|
+
- Fixed [#171]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/171 ), only use years after 1900 in query
|
39
|
+
- Fixed [#173]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/173 ), pin dependencies that upgraded and broke us
|
40
|
+
- Fixed [#174]( https://github.com/urbanopt/urbanopt-scenario-gem/pull/174 ), results bug fix
|
41
|
+
|
3
42
|
## Version 0.4.2
|
4
43
|
Date Range: 09/29/20 - 09/30/20
|
5
44
|
|
data/Gemfile
CHANGED
@@ -20,10 +20,16 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
20
20
|
# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
|
21
21
|
# end
|
22
22
|
|
23
|
+
# if allow_local && File.exist?('../urbanopt-core-gem')
|
24
|
+
# gem 'urbanopt-core', path: '../urbanopt-core-gem'
|
25
|
+
# elsif allow_local
|
26
|
+
# gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'develop'
|
27
|
+
# end
|
28
|
+
|
23
29
|
# if allow_local && File.exist?('../openstudio-common-measures-gem')
|
24
30
|
# gem 'openstudio-common-measures', path: '../openstudio-common-measures-gem'
|
25
31
|
# elsif allow_local
|
26
|
-
#
|
32
|
+
# gem 'openstudio-common-measures', github: 'NREL/openstudio-common-measures-gem', branch: 'develop'
|
27
33
|
# end
|
28
34
|
|
29
35
|
# if allow_local && File.exist?('../openstudio-model-articulation-gem')
|
@@ -32,24 +38,12 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
|
|
32
38
|
# gem 'openstudio-model-articulation', github: 'NREL/openstudio-model-articulation-gem', branch: 'develop'
|
33
39
|
# end
|
34
40
|
|
35
|
-
# if allow_local && File.exist?('../urbanopt-core-gem')
|
36
|
-
# gem 'urbanopt-core', path: '../urbanopt-core-gem'
|
37
|
-
# elsif allow_local
|
38
|
-
# gem 'urbanopt-core', github: 'URBANopt/urbanopt-core-gem', branch: 'develop'
|
39
|
-
# else
|
40
|
-
# gem 'urbanopt-core', '~>0.4.0'
|
41
|
-
# end
|
42
|
-
|
43
41
|
# if allow_local && File.exist?('../urbanopt-reporting-gem')
|
44
42
|
# gem 'urbanopt-reporting', path: '../urbanopt-reporting-gem'
|
45
43
|
# elsif allow_local
|
46
|
-
# gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop'
|
47
|
-
# else
|
48
|
-
# gem 'urbanopt-reporting', '~> 0.2.0'
|
49
|
-
# end
|
50
44
|
|
51
45
|
# if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem')
|
52
46
|
# gem 'openstudio-load-flexibility-measures', path: '../openstudio-load-flexibility-measures-gem'
|
53
47
|
# elseif allow_local
|
54
|
-
# gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: '
|
48
|
+
# gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: 'develop'
|
55
49
|
# end
|
data/LICENSE.md
CHANGED
@@ -1,27 +1,39 @@
|
|
1
|
-
|
1
|
+
# License
|
2
|
+
|
3
|
+
URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
|
2
4
|
contributors. All rights reserved.
|
3
5
|
|
4
|
-
Redistribution and use in source and binary forms, with or without modification,
|
6
|
+
Redistribution and use in source and binary forms, with or without modification,
|
5
7
|
are permitted provided that the following conditions are met:
|
6
8
|
|
7
|
-
Redistributions of source code must retain the above copyright notice, this list
|
9
|
+
Redistributions of source code must retain the above copyright notice, this list
|
8
10
|
of conditions and the following disclaimer.
|
9
11
|
|
10
|
-
Redistributions in binary form must reproduce the above copyright notice, this
|
11
|
-
list of conditions and the following disclaimer in the documentation and/or other
|
12
|
+
Redistributions in binary form must reproduce the above copyright notice, this
|
13
|
+
list of conditions and the following disclaimer in the documentation and/or other
|
12
14
|
materials provided with the distribution.
|
13
|
-
|
14
|
-
Neither the name of the copyright holder nor the names of its contributors may be
|
15
|
-
used to endorse or promote products derived from this software without specific
|
15
|
+
|
16
|
+
Neither the name of the copyright holder nor the names of its contributors may be
|
17
|
+
used to endorse or promote products derived from this software without specific
|
16
18
|
prior written permission.
|
17
19
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
20
|
+
Redistribution of this software, without modification, must refer to the software
|
21
|
+
by the same designation. Redistribution of a modified version of this software
|
22
|
+
(i) may not refer to the modified version by the same designation, or by any
|
23
|
+
confusingly similar designation, and (ii) must refer to the underlying software
|
24
|
+
originally provided by Alliance as “URBANopt”. Except to comply with the foregoing,
|
25
|
+
the term “URBANopt”, or any confusingly similar designation may not be used to
|
26
|
+
refer to any modified version of this software or any modified version of the
|
27
|
+
underlying software originally provided by Alliance without the prior written
|
28
|
+
consent of Alliance.
|
29
|
+
|
30
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
31
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
32
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
33
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
34
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
35
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
36
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
37
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
38
|
+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
27
39
|
OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/RDOC_MAIN.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
### [back to main docs](../)
|
4
4
|
|
5
|
-
The URBANopt
|
5
|
+
The URBANopt™ Scenario Gem includes functionality for defining scenarios, running simulations, and post-processing results. User defined SimulationMapper classes translate each Feature to a SimulationDir which is a directory containing simulation input files. A ScenarioRunner is used to perform simulations for each SimulationDir. Finally, a ScenarioPostProcessor can run on a Scenario to generate scenario level results.
|
6
6
|
|
7
|
-
[RDoc Documentation](https://urbanopt.github.io/urbanopt-scenario-gem/)
|
7
|
+
[RDoc Documentation](https://urbanopt.github.io/urbanopt-scenario-gem/rdoc)
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# URBANopt Scenario Gem
|
2
2
|
|
3
|
-
The URBANopt
|
3
|
+
The URBANopt™ Scenario Gem includes functionality for defining scenarios, running simulations, and post-processing results. User defined SimulationMapper classes translate each Feature to a SimulationDir which is a directory containing simulation input files. The ScenarioRunner is used to perform simulations for each SimulationDir. Finally, a ScenarioPostProcessor can run on a Scenario to generate scenario level results.
|
4
4
|
|
5
5
|
[RDoc Documentation](https://urbanopt.github.io/urbanopt-scenario-gem/)
|
6
6
|
|
data/Rakefile
CHANGED
@@ -1,21 +1,31 @@
|
|
1
1
|
# *********************************************************************************
|
2
|
-
# URBANopt
|
2
|
+
# URBANopt™, Copyright (c) 2019-2021, Alliance for Sustainable Energy, LLC, and other
|
3
3
|
# contributors. All rights reserved.
|
4
|
-
|
4
|
+
|
5
5
|
# Redistribution and use in source and binary forms, with or without modification,
|
6
6
|
# are permitted provided that the following conditions are met:
|
7
|
-
|
7
|
+
|
8
8
|
# Redistributions of source code must retain the above copyright notice, this list
|
9
9
|
# of conditions and the following disclaimer.
|
10
|
-
|
10
|
+
|
11
11
|
# Redistributions in binary form must reproduce the above copyright notice, this
|
12
12
|
# list of conditions and the following disclaimer in the documentation and/or other
|
13
13
|
# materials provided with the distribution.
|
14
|
-
|
14
|
+
|
15
15
|
# Neither the name of the copyright holder nor the names of its contributors may be
|
16
16
|
# used to endorse or promote products derived from this software without specific
|
17
17
|
# prior written permission.
|
18
|
-
|
18
|
+
|
19
|
+
# Redistribution of this software, without modification, must refer to the software
|
20
|
+
# by the same designation. Redistribution of a modified version of this software
|
21
|
+
# (i) may not refer to the modified version by the same designation, or by any
|
22
|
+
# confusingly similar designation, and (ii) must refer to the underlying software
|
23
|
+
# originally provided by Alliance as “URBANopt”. Except to comply with the foregoing,
|
24
|
+
# the term “URBANopt”, or any confusingly similar designation may not be used to
|
25
|
+
# refer to any modified version of this software or any modified version of the
|
26
|
+
# underlying software originally provided by Alliance without the prior written
|
27
|
+
# consent of Alliance.
|
28
|
+
|
19
29
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
30
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
31
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
@@ -13,7 +13,6 @@ import highlightJson from "../highlight";
|
|
13
13
|
import { emptyPromise } from '../utils';
|
14
14
|
|
15
15
|
const JSONSchemaViewP = emptyPromise();
|
16
|
-
const $RefParserP = emptyPromise();
|
17
16
|
|
18
17
|
export default {
|
19
18
|
name: "InnerJsonSchema",
|
@@ -24,19 +23,16 @@ export default {
|
|
24
23
|
};
|
25
24
|
},
|
26
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
|
27
28
|
import("json-schema-view-js").then(JSONSchemaViewP.resolve);
|
28
|
-
import("json-schema-ref-parser/dist/ref-parser.js").then($RefParserP.resolve);
|
29
29
|
},
|
30
30
|
computed: {
|
31
31
|
view() {
|
32
|
-
return
|
33
|
-
.then((
|
34
|
-
|
35
|
-
|
36
|
-
new window.JSONSchemaView(s, 2, {
|
37
|
-
theme: "dark"
|
38
|
-
})
|
39
|
-
);
|
32
|
+
return JSONSchemaViewP
|
33
|
+
.then( () => new window.JSONSchemaView(this.schema, 2, {
|
34
|
+
theme: "dark"
|
35
|
+
}));
|
40
36
|
},
|
41
37
|
schemaFormatted() {
|
42
38
|
return highlightJson(JSON.stringify(this.schema, null, 2));
|
@@ -44,7 +40,7 @@ export default {
|
|
44
40
|
},
|
45
41
|
methods: {
|
46
42
|
async replaceRenderedSchema() {
|
47
|
-
const v = await this.view;
|
43
|
+
const v = await this.view; // this never resolves on the server
|
48
44
|
this.$refs.schemaTarget.innerHtml = "";
|
49
45
|
this.$refs.schemaTarget.appendChild(v.render());
|
50
46
|
}
|
@@ -63,7 +59,6 @@ export default {
|
|
63
59
|
background-color: #282c34;
|
64
60
|
padding: 1.25rem 1.5rem;
|
65
61
|
border-radius: 6px;
|
66
|
-
width: fit-content
|
67
62
|
}
|
68
63
|
.json-formatter-row a {
|
69
64
|
color: white;
|
@@ -78,7 +73,4 @@ export default {
|
|
78
73
|
.json-schema-view .object .inner.oneOf b {
|
79
74
|
color: aqua;
|
80
75
|
}
|
81
|
-
.json-schema-view .default {
|
82
|
-
color: #5f96df
|
83
|
-
}
|
84
76
|
</style>
|
data/docs/.vuepress/config.js
CHANGED
@@ -1,15 +1,19 @@
|
|
1
|
+
const path = require('path');
|
2
|
+
|
1
3
|
module.exports = {
|
2
4
|
base: '/urbanopt-scenario-gem/',
|
3
5
|
themeConfig: {
|
4
6
|
navbar: false,
|
5
7
|
sidebar: [
|
6
|
-
"/"
|
7
|
-
{
|
8
|
-
title: "Schemas",
|
9
|
-
children: [
|
10
|
-
"/schemas/scenario-schema.md"
|
11
|
-
]
|
12
|
-
}
|
8
|
+
"/"
|
13
9
|
]
|
14
|
-
}
|
15
|
-
|
10
|
+
},
|
11
|
+
chainWebpack: config => {
|
12
|
+
config.module
|
13
|
+
.rule('json')
|
14
|
+
.test(/\.json$/)
|
15
|
+
.use(path.join(__dirname, 'json-schema-deref-loader.js'))
|
16
|
+
.loader(path.join(__dirname, 'json-schema-deref-loader.js'))
|
17
|
+
.end()
|
18
|
+
},
|
19
|
+
};
|
data/docs/.vuepress/highlight.js
CHANGED
@@ -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
|
+
}
|
data/docs/README.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
### <StaticLink href="rdoc/">Rdocs</StaticLink>
|
4
4
|
|
5
|
-
The URBANopt
|
5
|
+
The URBANopt™ Scenario Gem includes functionality for defining scenarios, running simulations, and post-processing results. User defined SimulationMapper classes translate each Feature to a SimulationDir which is a directory containing simulation input files. A ScenarioRunner is used to perform simulations for each SimulationDir. Finally, a ScenarioPostProcessor can run on a Scenario to generate scenario level results.
|
6
6
|
|
7
|
-
[RDoc Documentation](https://urbanopt.github.io/urbanopt-scenario-gem/)
|
7
|
+
[RDoc Documentation](https://urbanopt.github.io/urbanopt-scenario-gem/rdoc)
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
data/docs/package-lock.json
CHANGED
@@ -999,11 +999,6 @@
|
|
999
999
|
"defer-to-connect": "^1.0.1"
|
1000
1000
|
}
|
1001
1001
|
},
|
1002
|
-
"@types/color-name": {
|
1003
|
-
"version": "1.1.1",
|
1004
|
-
"resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
|
1005
|
-
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
|
1006
|
-
},
|
1007
1002
|
"@types/glob": {
|
1008
1003
|
"version": "7.1.3",
|
1009
1004
|
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz",
|
@@ -1024,9 +1019,9 @@
|
|
1024
1019
|
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
|
1025
1020
|
},
|
1026
1021
|
"@types/node": {
|
1027
|
-
"version": "14.11.
|
1028
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.
|
1029
|
-
"integrity": "sha512-
|
1022
|
+
"version": "14.11.8",
|
1023
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.11.8.tgz",
|
1024
|
+
"integrity": "sha512-KPcKqKm5UKDkaYPTuXSx8wEP7vE9GnuaXIZKijwRYcePpZFDVuy2a57LarFKiORbHOuTOOwYzxVxcUzsh2P2Pw=="
|
1030
1025
|
},
|
1031
1026
|
"@types/q": {
|
1032
1027
|
"version": "1.5.4",
|
@@ -1079,9 +1074,9 @@
|
|
1079
1074
|
}
|
1080
1075
|
},
|
1081
1076
|
"@vue/babel-preset-app": {
|
1082
|
-
"version": "4.5.
|
1083
|
-
"resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.
|
1084
|
-
"integrity": "sha512-
|
1077
|
+
"version": "4.5.7",
|
1078
|
+
"resolved": "https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.7.tgz",
|
1079
|
+
"integrity": "sha512-A9ujqmvR9wb8nWiMnEYZW/8QfGZbqxC/etzbKIDrUdsqJ27jx106leMHJc8nmAn58RqGd6iww6uZ3Sx7aYiG3A==",
|
1085
1080
|
"requires": {
|
1086
1081
|
"@babel/core": "^7.11.0",
|
1087
1082
|
"@babel/helper-compilation-targets": "^7.9.6",
|
@@ -1217,17 +1212,17 @@
|
|
1217
1212
|
}
|
1218
1213
|
},
|
1219
1214
|
"@vuepress/core": {
|
1220
|
-
"version": "1.
|
1221
|
-
"resolved": "https://registry.npmjs.org/@vuepress/core/-/core-1.
|
1222
|
-
"integrity": "sha512-
|
1215
|
+
"version": "1.6.0",
|
1216
|
+
"resolved": "https://registry.npmjs.org/@vuepress/core/-/core-1.6.0.tgz",
|
1217
|
+
"integrity": "sha512-zce6xMB77pk4g44CHYE75cBuJpa3lmLPujknymH0sD1LKkSrlkgH04x+LGhu98bVU/hiS0xjV3jDs3X37Texbw==",
|
1223
1218
|
"requires": {
|
1224
1219
|
"@babel/core": "^7.8.4",
|
1225
1220
|
"@vue/babel-preset-app": "^4.1.2",
|
1226
|
-
"@vuepress/markdown": "1.
|
1227
|
-
"@vuepress/markdown-loader": "1.
|
1228
|
-
"@vuepress/plugin-last-updated": "1.
|
1229
|
-
"@vuepress/plugin-register-components": "1.
|
1230
|
-
"@vuepress/shared-utils": "1.
|
1221
|
+
"@vuepress/markdown": "1.6.0",
|
1222
|
+
"@vuepress/markdown-loader": "1.6.0",
|
1223
|
+
"@vuepress/plugin-last-updated": "1.6.0",
|
1224
|
+
"@vuepress/plugin-register-components": "1.6.0",
|
1225
|
+
"@vuepress/shared-utils": "1.6.0",
|
1231
1226
|
"autoprefixer": "^9.5.1",
|
1232
1227
|
"babel-loader": "^8.0.4",
|
1233
1228
|
"cache-loader": "^3.0.0",
|
@@ -1262,11 +1257,11 @@
|
|
1262
1257
|
}
|
1263
1258
|
},
|
1264
1259
|
"@vuepress/markdown": {
|
1265
|
-
"version": "1.
|
1266
|
-
"resolved": "https://registry.npmjs.org/@vuepress/markdown/-/markdown-1.
|
1267
|
-
"integrity": "sha512-
|
1260
|
+
"version": "1.6.0",
|
1261
|
+
"resolved": "https://registry.npmjs.org/@vuepress/markdown/-/markdown-1.6.0.tgz",
|
1262
|
+
"integrity": "sha512-niFP+mKbEPu82OkkYf+dZMd8cWYfKEeIFq2jrQCJcVnCuSGVmJbKJbQF+cP/iu+94RHFVUtKwsh4X3Ef/1PLXw==",
|
1268
1263
|
"requires": {
|
1269
|
-
"@vuepress/shared-utils": "1.
|
1264
|
+
"@vuepress/shared-utils": "1.6.0",
|
1270
1265
|
"markdown-it": "^8.4.1",
|
1271
1266
|
"markdown-it-anchor": "^5.0.2",
|
1272
1267
|
"markdown-it-chain": "^1.3.0",
|
@@ -1276,56 +1271,56 @@
|
|
1276
1271
|
}
|
1277
1272
|
},
|
1278
1273
|
"@vuepress/markdown-loader": {
|
1279
|
-
"version": "1.
|
1280
|
-
"resolved": "https://registry.npmjs.org/@vuepress/markdown-loader/-/markdown-loader-1.
|
1281
|
-
"integrity": "sha512-
|
1274
|
+
"version": "1.6.0",
|
1275
|
+
"resolved": "https://registry.npmjs.org/@vuepress/markdown-loader/-/markdown-loader-1.6.0.tgz",
|
1276
|
+
"integrity": "sha512-7cYD9+td89u0EePoHw+nVwxCoafYvpP10r6RfdN3Ongvd2apyn37Mjjv+85U1jnSTRvjZHV4v7KFs4H8+Y0xiw==",
|
1282
1277
|
"requires": {
|
1283
|
-
"@vuepress/markdown": "1.
|
1278
|
+
"@vuepress/markdown": "1.6.0",
|
1284
1279
|
"loader-utils": "^1.1.0",
|
1285
1280
|
"lru-cache": "^5.1.1"
|
1286
1281
|
}
|
1287
1282
|
},
|
1288
1283
|
"@vuepress/plugin-active-header-links": {
|
1289
|
-
"version": "1.
|
1290
|
-
"resolved": "https://registry.npmjs.org/@vuepress/plugin-active-header-links/-/plugin-active-header-links-1.
|
1291
|
-
"integrity": "sha512-
|
1284
|
+
"version": "1.6.0",
|
1285
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-active-header-links/-/plugin-active-header-links-1.6.0.tgz",
|
1286
|
+
"integrity": "sha512-AsbUptcwtBJtlvrcDyiW2HZAHz/tLoYXrGopJVPtWUZ9LzNIcXuSFVIRzKd1Jc+86VPUYLeDhLBIWe0rfsphAQ==",
|
1292
1287
|
"requires": {
|
1293
1288
|
"lodash.debounce": "^4.0.8"
|
1294
1289
|
}
|
1295
1290
|
},
|
1296
1291
|
"@vuepress/plugin-last-updated": {
|
1297
|
-
"version": "1.
|
1298
|
-
"resolved": "https://registry.npmjs.org/@vuepress/plugin-last-updated/-/plugin-last-updated-1.
|
1299
|
-
"integrity": "sha512
|
1292
|
+
"version": "1.6.0",
|
1293
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-last-updated/-/plugin-last-updated-1.6.0.tgz",
|
1294
|
+
"integrity": "sha512-/gnk9HGaZw3ow/i9ODjZxK40TbriTWuMY3YYIzqvP7CT3mrM92nMKYDygYbffbu6xkWdUZppN8JadtJ7we4z9A==",
|
1300
1295
|
"requires": {
|
1301
1296
|
"cross-spawn": "^6.0.5"
|
1302
1297
|
}
|
1303
1298
|
},
|
1304
1299
|
"@vuepress/plugin-nprogress": {
|
1305
|
-
"version": "1.
|
1306
|
-
"resolved": "https://registry.npmjs.org/@vuepress/plugin-nprogress/-/plugin-nprogress-1.
|
1307
|
-
"integrity": "sha512-
|
1300
|
+
"version": "1.6.0",
|
1301
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-nprogress/-/plugin-nprogress-1.6.0.tgz",
|
1302
|
+
"integrity": "sha512-dhIho2z33aGjPavcdVYRlqR3+ZC5Vd3FPd+HkRP8MdIIFxhVR1HLFxVgaSUcASOCGAwuG58OB2RStvgMQLtTEA==",
|
1308
1303
|
"requires": {
|
1309
1304
|
"nprogress": "^0.2.0"
|
1310
1305
|
}
|
1311
1306
|
},
|
1312
1307
|
"@vuepress/plugin-register-components": {
|
1313
|
-
"version": "1.
|
1314
|
-
"resolved": "https://registry.npmjs.org/@vuepress/plugin-register-components/-/plugin-register-components-1.
|
1315
|
-
"integrity": "sha512-
|
1308
|
+
"version": "1.6.0",
|
1309
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-register-components/-/plugin-register-components-1.6.0.tgz",
|
1310
|
+
"integrity": "sha512-w9Lafh1G3514rulpjSoIfZXt94wZ5oMkpXyVzXyC2wRHqSu/4fKpcxhwxf6HeT57jIBdPifT+eUrL+XIZWnXLQ==",
|
1316
1311
|
"requires": {
|
1317
|
-
"@vuepress/shared-utils": "1.
|
1312
|
+
"@vuepress/shared-utils": "1.6.0"
|
1318
1313
|
}
|
1319
1314
|
},
|
1320
1315
|
"@vuepress/plugin-search": {
|
1321
|
-
"version": "1.
|
1322
|
-
"resolved": "https://registry.npmjs.org/@vuepress/plugin-search/-/plugin-search-1.
|
1323
|
-
"integrity": "sha512-
|
1316
|
+
"version": "1.6.0",
|
1317
|
+
"resolved": "https://registry.npmjs.org/@vuepress/plugin-search/-/plugin-search-1.6.0.tgz",
|
1318
|
+
"integrity": "sha512-Js7zRmM6/b6dYfnJsSP2MQN0lzjUfSX8l3z9y/QHxK8BaXIx7LdTcQY6FGK4pxuwlWcg02CIUS5BMc1gZKn6Nw=="
|
1324
1319
|
},
|
1325
1320
|
"@vuepress/shared-utils": {
|
1326
|
-
"version": "1.
|
1327
|
-
"resolved": "https://registry.npmjs.org/@vuepress/shared-utils/-/shared-utils-1.
|
1328
|
-
"integrity": "sha512
|
1321
|
+
"version": "1.6.0",
|
1322
|
+
"resolved": "https://registry.npmjs.org/@vuepress/shared-utils/-/shared-utils-1.6.0.tgz",
|
1323
|
+
"integrity": "sha512-+TMHgW7gmVY2lRX5qpPbsLkbxTBbzRo+Ar05tvEI0bAG0c6v2gWyQr3BchdbLyRJxrAVk530PABAjM8roDJ9bw==",
|
1329
1324
|
"requires": {
|
1330
1325
|
"chalk": "^2.3.2",
|
1331
1326
|
"escape-html": "^1.0.3",
|
@@ -1346,16 +1341,16 @@
|
|
1346
1341
|
}
|
1347
1342
|
},
|
1348
1343
|
"@vuepress/theme-default": {
|
1349
|
-
"version": "1.
|
1350
|
-
"resolved": "https://registry.npmjs.org/@vuepress/theme-default/-/theme-default-1.
|
1351
|
-
"integrity": "sha512-
|
1344
|
+
"version": "1.6.0",
|
1345
|
+
"resolved": "https://registry.npmjs.org/@vuepress/theme-default/-/theme-default-1.6.0.tgz",
|
1346
|
+
"integrity": "sha512-dV6awQzV+gQqxYK8oHY5A9Hwj34H23bA2khPjqqLDpgLMnw4tvxMfriwK5tuaAjgnHT+MZB1VmgsNdUA9T9HIQ==",
|
1352
1347
|
"requires": {
|
1353
|
-
"@vuepress/plugin-active-header-links": "1.
|
1354
|
-
"@vuepress/plugin-nprogress": "1.
|
1355
|
-
"@vuepress/plugin-search": "1.
|
1348
|
+
"@vuepress/plugin-active-header-links": "1.6.0",
|
1349
|
+
"@vuepress/plugin-nprogress": "1.6.0",
|
1350
|
+
"@vuepress/plugin-search": "1.6.0",
|
1356
1351
|
"docsearch.js": "^2.5.2",
|
1357
1352
|
"lodash": "^4.17.15",
|
1358
|
-
"stylus": "^0.54.
|
1353
|
+
"stylus": "^0.54.8",
|
1359
1354
|
"stylus-loader": "^3.0.2",
|
1360
1355
|
"vuepress-plugin-container": "^2.0.2",
|
1361
1356
|
"vuepress-plugin-smooth-scroll": "^0.0.3"
|
@@ -1543,9 +1538,9 @@
|
|
1543
1538
|
}
|
1544
1539
|
},
|
1545
1540
|
"acorn": {
|
1546
|
-
"version": "6.4.
|
1547
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.
|
1548
|
-
"integrity": "sha512-
|
1541
|
+
"version": "6.4.2",
|
1542
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz",
|
1543
|
+
"integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="
|
1549
1544
|
},
|
1550
1545
|
"agentkeepalive": {
|
1551
1546
|
"version": "2.2.0",
|
@@ -1553,9 +1548,9 @@
|
|
1553
1548
|
"integrity": "sha1-xdG9SxKQCPEWPyNvhuX66iAm4u8="
|
1554
1549
|
},
|
1555
1550
|
"ajv": {
|
1556
|
-
"version": "6.12.
|
1557
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.
|
1558
|
-
"integrity": "sha512-
|
1551
|
+
"version": "6.12.6",
|
1552
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
1553
|
+
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
1559
1554
|
"requires": {
|
1560
1555
|
"fast-deep-equal": "^3.1.1",
|
1561
1556
|
"fast-json-stable-stringify": "^2.0.0",
|
@@ -2052,11 +2047,10 @@
|
|
2052
2047
|
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
|
2053
2048
|
},
|
2054
2049
|
"ansi-styles": {
|
2055
|
-
"version": "4.
|
2056
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.
|
2057
|
-
"integrity": "sha512-
|
2050
|
+
"version": "4.3.0",
|
2051
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
2052
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
2058
2053
|
"requires": {
|
2059
|
-
"@types/color-name": "^1.1.1",
|
2060
2054
|
"color-convert": "^2.0.1"
|
2061
2055
|
}
|
2062
2056
|
},
|
@@ -2148,9 +2142,31 @@
|
|
2148
2142
|
"version": "3.0.2",
|
2149
2143
|
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
2150
2144
|
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
2151
|
-
"dev": true,
|
2152
2145
|
"requires": {
|
2153
2146
|
"fill-range": "^7.0.1"
|
2147
|
+
},
|
2148
|
+
"dependencies": {
|
2149
|
+
"fill-range": {
|
2150
|
+
"version": "7.0.1",
|
2151
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
2152
|
+
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
2153
|
+
"requires": {
|
2154
|
+
"to-regex-range": "^5.0.1"
|
2155
|
+
}
|
2156
|
+
},
|
2157
|
+
"is-number": {
|
2158
|
+
"version": "7.0.0",
|
2159
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
2160
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
|
2161
|
+
},
|
2162
|
+
"to-regex-range": {
|
2163
|
+
"version": "5.0.1",
|
2164
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
2165
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
2166
|
+
"requires": {
|
2167
|
+
"is-number": "^7.0.0"
|
2168
|
+
}
|
2169
|
+
}
|
2154
2170
|
}
|
2155
2171
|
},
|
2156
2172
|
"brorand": {
|
@@ -2224,11 +2240,6 @@
|
|
2224
2240
|
"safe-buffer": "^5.2.0"
|
2225
2241
|
},
|
2226
2242
|
"dependencies": {
|
2227
|
-
"inherits": {
|
2228
|
-
"version": "2.0.4",
|
2229
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
2230
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
2231
|
-
},
|
2232
2243
|
"readable-stream": {
|
2233
2244
|
"version": "3.6.0",
|
2234
2245
|
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
@@ -2255,12 +2266,12 @@
|
|
2255
2266
|
}
|
2256
2267
|
},
|
2257
2268
|
"browserslist": {
|
2258
|
-
"version": "4.14.
|
2259
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.
|
2260
|
-
"integrity": "sha512-
|
2269
|
+
"version": "4.14.5",
|
2270
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.5.tgz",
|
2271
|
+
"integrity": "sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==",
|
2261
2272
|
"requires": {
|
2262
|
-
"caniuse-lite": "^1.0.
|
2263
|
-
"electron-to-chromium": "^1.3.
|
2273
|
+
"caniuse-lite": "^1.0.30001135",
|
2274
|
+
"electron-to-chromium": "^1.3.571",
|
2264
2275
|
"escalade": "^3.1.0",
|
2265
2276
|
"node-releases": "^1.1.61"
|
2266
2277
|
}
|
@@ -2327,24 +2338,8 @@
|
|
2327
2338
|
"move-concurrently": "^1.0.1",
|
2328
2339
|
"promise-inflight": "^1.0.1",
|
2329
2340
|
"rimraf": "^2.6.3",
|
2330
|
-
"ssri": "^6.0.1",
|
2331
2341
|
"unique-filename": "^1.1.1",
|
2332
2342
|
"y18n": "^4.0.0"
|
2333
|
-
},
|
2334
|
-
"dependencies": {
|
2335
|
-
"glob": {
|
2336
|
-
"version": "7.1.6",
|
2337
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
2338
|
-
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
2339
|
-
"requires": {
|
2340
|
-
"fs.realpath": "^1.0.0",
|
2341
|
-
"inflight": "^1.0.4",
|
2342
|
-
"inherits": "2",
|
2343
|
-
"minimatch": "^3.0.4",
|
2344
|
-
"once": "^1.3.0",
|
2345
|
-
"path-is-absolute": "^1.0.0"
|
2346
|
-
}
|
2347
|
-
}
|
2348
2343
|
}
|
2349
2344
|
},
|
2350
2345
|
"cache-base": {
|
@@ -2479,9 +2474,9 @@
|
|
2479
2474
|
}
|
2480
2475
|
},
|
2481
2476
|
"camelcase": {
|
2482
|
-
"version": "6.
|
2483
|
-
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.
|
2484
|
-
"integrity": "sha512-
|
2477
|
+
"version": "6.1.0",
|
2478
|
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.1.0.tgz",
|
2479
|
+
"integrity": "sha512-WCMml9ivU60+8rEJgELlFp1gxFcEGxwYleE3bziHEDeqsqAWGHdimB7beBFGjLzVNgPGyDsfgXLQEYMpmIFnVQ=="
|
2485
2480
|
},
|
2486
2481
|
"caniuse-api": {
|
2487
2482
|
"version": "3.0.0",
|
@@ -2495,9 +2490,9 @@
|
|
2495
2490
|
}
|
2496
2491
|
},
|
2497
2492
|
"caniuse-lite": {
|
2498
|
-
"version": "1.0.
|
2499
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
2500
|
-
"integrity": "sha512-
|
2493
|
+
"version": "1.0.30001148",
|
2494
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001148.tgz",
|
2495
|
+
"integrity": "sha512-E66qcd0KMKZHNJQt9hiLZGE3J4zuTqE1OnU53miEVtylFbwOEmeA5OsRu90noZful+XGSQOni1aT2tiqu/9yYw=="
|
2501
2496
|
},
|
2502
2497
|
"caseless": {
|
2503
2498
|
"version": "0.12.0",
|
@@ -2557,26 +2552,6 @@
|
|
2557
2552
|
"requires": {
|
2558
2553
|
"is-extendable": "^0.1.0"
|
2559
2554
|
}
|
2560
|
-
},
|
2561
|
-
"fill-range": {
|
2562
|
-
"version": "4.0.0",
|
2563
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
|
2564
|
-
"integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
|
2565
|
-
"requires": {
|
2566
|
-
"extend-shallow": "^2.0.1",
|
2567
|
-
"is-number": "^3.0.0",
|
2568
|
-
"repeat-string": "^1.6.1",
|
2569
|
-
"to-regex-range": "^2.1.0"
|
2570
|
-
}
|
2571
|
-
},
|
2572
|
-
"to-regex-range": {
|
2573
|
-
"version": "2.1.1",
|
2574
|
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
|
2575
|
-
"integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
|
2576
|
-
"requires": {
|
2577
|
-
"is-number": "^3.0.0",
|
2578
|
-
"repeat-string": "^1.6.1"
|
2579
|
-
}
|
2580
2555
|
}
|
2581
2556
|
}
|
2582
2557
|
},
|
@@ -2737,12 +2712,12 @@
|
|
2737
2712
|
}
|
2738
2713
|
},
|
2739
2714
|
"color": {
|
2740
|
-
"version": "3.1.
|
2741
|
-
"resolved": "https://registry.npmjs.org/color/-/color-3.1.
|
2742
|
-
"integrity": "sha512-
|
2715
|
+
"version": "3.1.3",
|
2716
|
+
"resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz",
|
2717
|
+
"integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==",
|
2743
2718
|
"requires": {
|
2744
2719
|
"color-convert": "^1.9.1",
|
2745
|
-
"color-string": "^1.5.
|
2720
|
+
"color-string": "^1.5.4"
|
2746
2721
|
}
|
2747
2722
|
},
|
2748
2723
|
"color-convert": {
|
@@ -2759,9 +2734,9 @@
|
|
2759
2734
|
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
|
2760
2735
|
},
|
2761
2736
|
"color-string": {
|
2762
|
-
"version": "1.5.
|
2763
|
-
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.
|
2764
|
-
"integrity": "sha512-
|
2737
|
+
"version": "1.5.4",
|
2738
|
+
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz",
|
2739
|
+
"integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==",
|
2765
2740
|
"requires": {
|
2766
2741
|
"color-name": "^1.0.0",
|
2767
2742
|
"simple-swizzle": "^0.2.2"
|
@@ -2781,9 +2756,9 @@
|
|
2781
2756
|
}
|
2782
2757
|
},
|
2783
2758
|
"commander": {
|
2784
|
-
"version": "2.
|
2785
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-2.
|
2786
|
-
"integrity": "sha512-
|
2759
|
+
"version": "2.17.1",
|
2760
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
|
2761
|
+
"integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg=="
|
2787
2762
|
},
|
2788
2763
|
"commondir": {
|
2789
2764
|
"version": "1.0.1",
|
@@ -3246,9 +3221,9 @@
|
|
3246
3221
|
}
|
3247
3222
|
},
|
3248
3223
|
"css-what": {
|
3249
|
-
"version": "3.
|
3250
|
-
"resolved": "https://registry.npmjs.org/css-what/-/css-what-3.
|
3251
|
-
"integrity": "sha512-
|
3224
|
+
"version": "3.4.2",
|
3225
|
+
"resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz",
|
3226
|
+
"integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="
|
3252
3227
|
},
|
3253
3228
|
"cssesc": {
|
3254
3229
|
"version": "3.0.0",
|
@@ -3374,11 +3349,11 @@
|
|
3374
3349
|
"integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0="
|
3375
3350
|
},
|
3376
3351
|
"debug": {
|
3377
|
-
"version": "4.
|
3378
|
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.
|
3379
|
-
"integrity": "sha512-
|
3352
|
+
"version": "4.2.0",
|
3353
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz",
|
3354
|
+
"integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==",
|
3380
3355
|
"requires": {
|
3381
|
-
"ms": "
|
3356
|
+
"ms": "2.1.2"
|
3382
3357
|
}
|
3383
3358
|
},
|
3384
3359
|
"decamelize": {
|
@@ -3712,28 +3687,28 @@
|
|
3712
3687
|
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
|
3713
3688
|
},
|
3714
3689
|
"electron-to-chromium": {
|
3715
|
-
"version": "1.3.
|
3716
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.
|
3717
|
-
"integrity": "sha512-
|
3690
|
+
"version": "1.3.578",
|
3691
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz",
|
3692
|
+
"integrity": "sha512-z4gU6dA1CbBJsAErW5swTGAaU2TBzc2mPAonJb00zqW1rOraDo2zfBMDRvaz9cVic+0JEZiYbHWPw/fTaZlG2Q=="
|
3718
3693
|
},
|
3719
3694
|
"elliptic": {
|
3720
|
-
"version": "6.5.
|
3721
|
-
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.
|
3722
|
-
"integrity": "sha512-
|
3695
|
+
"version": "6.5.4",
|
3696
|
+
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
|
3697
|
+
"integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
|
3723
3698
|
"requires": {
|
3724
|
-
"bn.js": "^4.
|
3725
|
-
"brorand": "^1.0
|
3699
|
+
"bn.js": "^4.11.9",
|
3700
|
+
"brorand": "^1.1.0",
|
3726
3701
|
"hash.js": "^1.0.0",
|
3727
|
-
"hmac-drbg": "^1.0.
|
3728
|
-
"inherits": "^2.0.
|
3729
|
-
"minimalistic-assert": "^1.0.
|
3730
|
-
"minimalistic-crypto-utils": "^1.0.
|
3702
|
+
"hmac-drbg": "^1.0.1",
|
3703
|
+
"inherits": "^2.0.4",
|
3704
|
+
"minimalistic-assert": "^1.0.1",
|
3705
|
+
"minimalistic-crypto-utils": "^1.0.1"
|
3731
3706
|
},
|
3732
3707
|
"dependencies": {
|
3733
3708
|
"bn.js": {
|
3734
|
-
"version": "4.
|
3735
|
-
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.
|
3736
|
-
"integrity": "sha512-
|
3709
|
+
"version": "4.12.0",
|
3710
|
+
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
|
3711
|
+
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
|
3737
3712
|
}
|
3738
3713
|
}
|
3739
3714
|
},
|
@@ -3823,20 +3798,20 @@
|
|
3823
3798
|
}
|
3824
3799
|
},
|
3825
3800
|
"es-abstract": {
|
3826
|
-
"version": "1.18.0-next.
|
3827
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.
|
3828
|
-
"integrity": "sha512-
|
3801
|
+
"version": "1.18.0-next.1",
|
3802
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz",
|
3803
|
+
"integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==",
|
3829
3804
|
"requires": {
|
3830
3805
|
"es-to-primitive": "^1.2.1",
|
3831
3806
|
"function-bind": "^1.1.1",
|
3832
3807
|
"has": "^1.0.3",
|
3833
3808
|
"has-symbols": "^1.0.1",
|
3834
|
-
"is-callable": "^1.2.
|
3809
|
+
"is-callable": "^1.2.2",
|
3835
3810
|
"is-negative-zero": "^2.0.0",
|
3836
3811
|
"is-regex": "^1.1.1",
|
3837
3812
|
"object-inspect": "^1.8.0",
|
3838
3813
|
"object-keys": "^1.1.1",
|
3839
|
-
"object.assign": "^4.1.
|
3814
|
+
"object.assign": "^4.1.1",
|
3840
3815
|
"string.prototype.trimend": "^1.0.1",
|
3841
3816
|
"string.prototype.trimstart": "^1.0.1"
|
3842
3817
|
}
|
@@ -3857,9 +3832,9 @@
|
|
3857
3832
|
"integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
|
3858
3833
|
},
|
3859
3834
|
"escalade": {
|
3860
|
-
"version": "3.1.
|
3861
|
-
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.
|
3862
|
-
"integrity": "sha512-
|
3835
|
+
"version": "3.1.1",
|
3836
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
|
3837
|
+
"integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="
|
3863
3838
|
},
|
3864
3839
|
"escape-goat": {
|
3865
3840
|
"version": "2.1.1",
|
@@ -4174,6 +4149,12 @@
|
|
4174
4149
|
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
4175
4150
|
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
4176
4151
|
},
|
4152
|
+
"fast-xml-parser": {
|
4153
|
+
"version": "3.19.0",
|
4154
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz",
|
4155
|
+
"integrity": "sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==",
|
4156
|
+
"dev": true
|
4157
|
+
},
|
4177
4158
|
"faye-websocket": {
|
4178
4159
|
"version": "0.10.0",
|
4179
4160
|
"resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
|
@@ -4250,12 +4231,24 @@
|
|
4250
4231
|
}
|
4251
4232
|
},
|
4252
4233
|
"fill-range": {
|
4253
|
-
"version": "
|
4254
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-
|
4255
|
-
"integrity": "
|
4256
|
-
"dev": true,
|
4234
|
+
"version": "4.0.0",
|
4235
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
|
4236
|
+
"integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
|
4257
4237
|
"requires": {
|
4258
|
-
"
|
4238
|
+
"extend-shallow": "^2.0.1",
|
4239
|
+
"is-number": "^3.0.0",
|
4240
|
+
"repeat-string": "^1.6.1",
|
4241
|
+
"to-regex-range": "^2.1.0"
|
4242
|
+
},
|
4243
|
+
"dependencies": {
|
4244
|
+
"extend-shallow": {
|
4245
|
+
"version": "2.0.1",
|
4246
|
+
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
|
4247
|
+
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
|
4248
|
+
"requires": {
|
4249
|
+
"is-extendable": "^0.1.0"
|
4250
|
+
}
|
4251
|
+
}
|
4259
4252
|
}
|
4260
4253
|
},
|
4261
4254
|
"finalhandler": {
|
@@ -4458,6 +4451,12 @@
|
|
4458
4451
|
"globby": "^6.1.0"
|
4459
4452
|
},
|
4460
4453
|
"dependencies": {
|
4454
|
+
"commander": {
|
4455
|
+
"version": "2.20.3",
|
4456
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
4457
|
+
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
|
4458
|
+
"dev": true
|
4459
|
+
},
|
4461
4460
|
"find-cache-dir": {
|
4462
4461
|
"version": "3.3.1",
|
4463
4462
|
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz",
|
@@ -4503,12 +4502,6 @@
|
|
4503
4502
|
"pinkie-promise": "^2.0.0"
|
4504
4503
|
}
|
4505
4504
|
},
|
4506
|
-
"graceful-fs": {
|
4507
|
-
"version": "4.2.4",
|
4508
|
-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
4509
|
-
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
4510
|
-
"dev": true
|
4511
|
-
},
|
4512
4505
|
"locate-path": {
|
4513
4506
|
"version": "5.0.0",
|
4514
4507
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
|
@@ -4566,9 +4559,9 @@
|
|
4566
4559
|
}
|
4567
4560
|
},
|
4568
4561
|
"glob": {
|
4569
|
-
"version": "7.1.
|
4570
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.
|
4571
|
-
"integrity": "sha512-
|
4562
|
+
"version": "7.1.6",
|
4563
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
4564
|
+
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
4572
4565
|
"requires": {
|
4573
4566
|
"fs.realpath": "^1.0.0",
|
4574
4567
|
"inflight": "^1.0.4",
|
@@ -4617,6 +4610,13 @@
|
|
4617
4610
|
"integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==",
|
4618
4611
|
"requires": {
|
4619
4612
|
"ini": "^1.3.5"
|
4613
|
+
},
|
4614
|
+
"dependencies": {
|
4615
|
+
"ini": {
|
4616
|
+
"version": "1.3.8",
|
4617
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
4618
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
4619
|
+
}
|
4620
4620
|
}
|
4621
4621
|
},
|
4622
4622
|
"globals": {
|
@@ -4667,9 +4667,9 @@
|
|
4667
4667
|
}
|
4668
4668
|
},
|
4669
4669
|
"graceful-fs": {
|
4670
|
-
"version": "4.
|
4671
|
-
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.
|
4672
|
-
"integrity": "sha512-
|
4670
|
+
"version": "4.2.4",
|
4671
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
4672
|
+
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="
|
4673
4673
|
},
|
4674
4674
|
"gray-matter": {
|
4675
4675
|
"version": "4.0.2",
|
@@ -4771,11 +4771,6 @@
|
|
4771
4771
|
"safe-buffer": "^5.2.0"
|
4772
4772
|
},
|
4773
4773
|
"dependencies": {
|
4774
|
-
"inherits": {
|
4775
|
-
"version": "2.0.4",
|
4776
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
4777
|
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
4778
|
-
},
|
4779
4774
|
"readable-stream": {
|
4780
4775
|
"version": "3.6.0",
|
4781
4776
|
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
@@ -4818,9 +4813,9 @@
|
|
4818
4813
|
"integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ=="
|
4819
4814
|
},
|
4820
4815
|
"highlight.js": {
|
4821
|
-
"version": "10.
|
4822
|
-
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.
|
4823
|
-
"integrity": "sha512-
|
4816
|
+
"version": "10.4.1",
|
4817
|
+
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.4.1.tgz",
|
4818
|
+
"integrity": "sha512-yR5lWvNz7c85OhVAEAeFhVCc/GV4C30Fjzc/rCP0aCWzc1UUOPUk55dK/qdwTZHBvMZo+eZ2jpk62ndX/xMFlg=="
|
4824
4819
|
},
|
4825
4820
|
"hmac-drbg": {
|
4826
4821
|
"version": "1.0.1",
|
@@ -4891,13 +4886,6 @@
|
|
4891
4886
|
"param-case": "2.1.x",
|
4892
4887
|
"relateurl": "0.2.x",
|
4893
4888
|
"uglify-js": "3.4.x"
|
4894
|
-
},
|
4895
|
-
"dependencies": {
|
4896
|
-
"commander": {
|
4897
|
-
"version": "2.17.1",
|
4898
|
-
"resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz",
|
4899
|
-
"integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg=="
|
4900
|
-
}
|
4901
4889
|
}
|
4902
4890
|
},
|
4903
4891
|
"html-tags": {
|
@@ -4950,6 +4938,13 @@
|
|
4950
4938
|
"setprototypeof": "1.1.1",
|
4951
4939
|
"statuses": ">= 1.5.0 < 2",
|
4952
4940
|
"toidentifier": "1.0.0"
|
4941
|
+
},
|
4942
|
+
"dependencies": {
|
4943
|
+
"inherits": {
|
4944
|
+
"version": "2.0.3",
|
4945
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
4946
|
+
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
4947
|
+
}
|
4953
4948
|
}
|
4954
4949
|
},
|
4955
4950
|
"http-proxy": {
|
@@ -4996,6 +4991,45 @@
|
|
4996
4991
|
"requires": {
|
4997
4992
|
"normalize-url": "^1.0.0",
|
4998
4993
|
"strip-url-auth": "^1.0.0"
|
4994
|
+
},
|
4995
|
+
"dependencies": {
|
4996
|
+
"normalize-url": {
|
4997
|
+
"version": "1.9.1",
|
4998
|
+
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz",
|
4999
|
+
"integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=",
|
5000
|
+
"dev": true,
|
5001
|
+
"requires": {
|
5002
|
+
"object-assign": "^4.0.1",
|
5003
|
+
"prepend-http": "^1.0.0",
|
5004
|
+
"query-string": "^4.1.0",
|
5005
|
+
"sort-keys": "^1.0.0"
|
5006
|
+
}
|
5007
|
+
},
|
5008
|
+
"prepend-http": {
|
5009
|
+
"version": "1.0.4",
|
5010
|
+
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
|
5011
|
+
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
|
5012
|
+
"dev": true
|
5013
|
+
},
|
5014
|
+
"query-string": {
|
5015
|
+
"version": "4.3.4",
|
5016
|
+
"resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz",
|
5017
|
+
"integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
|
5018
|
+
"dev": true,
|
5019
|
+
"requires": {
|
5020
|
+
"object-assign": "^4.1.0",
|
5021
|
+
"strict-uri-encode": "^1.0.0"
|
5022
|
+
}
|
5023
|
+
},
|
5024
|
+
"sort-keys": {
|
5025
|
+
"version": "1.1.2",
|
5026
|
+
"resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz",
|
5027
|
+
"integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=",
|
5028
|
+
"dev": true,
|
5029
|
+
"requires": {
|
5030
|
+
"is-plain-obj": "^1.0.0"
|
5031
|
+
}
|
5032
|
+
}
|
4999
5033
|
}
|
5000
5034
|
},
|
5001
5035
|
"iconv-lite": {
|
@@ -5103,14 +5137,15 @@
|
|
5103
5137
|
}
|
5104
5138
|
},
|
5105
5139
|
"inherits": {
|
5106
|
-
"version": "2.0.
|
5107
|
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.
|
5108
|
-
"integrity": "
|
5140
|
+
"version": "2.0.4",
|
5141
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
5142
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
5109
5143
|
},
|
5110
5144
|
"ini": {
|
5111
|
-
"version": "
|
5112
|
-
"resolved": "https://registry.npmjs.org/ini/-/ini-
|
5113
|
-
"integrity": "sha512-
|
5145
|
+
"version": "2.0.0",
|
5146
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
|
5147
|
+
"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
|
5148
|
+
"dev": true
|
5114
5149
|
},
|
5115
5150
|
"internal-ip": {
|
5116
5151
|
"version": "4.3.0",
|
@@ -5191,9 +5226,9 @@
|
|
5191
5226
|
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
|
5192
5227
|
},
|
5193
5228
|
"is-callable": {
|
5194
|
-
"version": "1.2.
|
5195
|
-
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.
|
5196
|
-
"integrity": "sha512-
|
5229
|
+
"version": "1.2.2",
|
5230
|
+
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz",
|
5231
|
+
"integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA=="
|
5197
5232
|
},
|
5198
5233
|
"is-ci": {
|
5199
5234
|
"version": "2.0.0",
|
@@ -5372,13 +5407,6 @@
|
|
5372
5407
|
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
|
5373
5408
|
"requires": {
|
5374
5409
|
"isobject": "^3.0.1"
|
5375
|
-
},
|
5376
|
-
"dependencies": {
|
5377
|
-
"isobject": {
|
5378
|
-
"version": "3.0.1",
|
5379
|
-
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
|
5380
|
-
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8="
|
5381
|
-
}
|
5382
5410
|
}
|
5383
5411
|
},
|
5384
5412
|
"is-regex": {
|
@@ -5400,11 +5428,12 @@
|
|
5400
5428
|
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
|
5401
5429
|
},
|
5402
5430
|
"is-svg": {
|
5403
|
-
"version": "3.
|
5404
|
-
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.
|
5405
|
-
"integrity": "sha512-
|
5431
|
+
"version": "4.3.1",
|
5432
|
+
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz",
|
5433
|
+
"integrity": "sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA==",
|
5434
|
+
"dev": true,
|
5406
5435
|
"requires": {
|
5407
|
-
"
|
5436
|
+
"fast-xml-parser": "^3.19.0"
|
5408
5437
|
}
|
5409
5438
|
},
|
5410
5439
|
"is-symbol": {
|
@@ -5658,9 +5687,9 @@
|
|
5658
5687
|
}
|
5659
5688
|
},
|
5660
5689
|
"lodash": {
|
5661
|
-
"version": "4.17.
|
5662
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.
|
5663
|
-
"integrity": "sha512-
|
5690
|
+
"version": "4.17.20",
|
5691
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz",
|
5692
|
+
"integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
|
5664
5693
|
},
|
5665
5694
|
"lodash._reinterpolate": {
|
5666
5695
|
"version": "3.0.0",
|
@@ -5923,36 +5952,6 @@
|
|
5923
5952
|
}
|
5924
5953
|
}
|
5925
5954
|
}
|
5926
|
-
},
|
5927
|
-
"fill-range": {
|
5928
|
-
"version": "4.0.0",
|
5929
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
|
5930
|
-
"integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
|
5931
|
-
"requires": {
|
5932
|
-
"extend-shallow": "^2.0.1",
|
5933
|
-
"is-number": "^3.0.0",
|
5934
|
-
"repeat-string": "^1.6.1",
|
5935
|
-
"to-regex-range": "^2.1.0"
|
5936
|
-
},
|
5937
|
-
"dependencies": {
|
5938
|
-
"extend-shallow": {
|
5939
|
-
"version": "2.0.1",
|
5940
|
-
"resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
|
5941
|
-
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
|
5942
|
-
"requires": {
|
5943
|
-
"is-extendable": "^0.1.0"
|
5944
|
-
}
|
5945
|
-
}
|
5946
|
-
}
|
5947
|
-
},
|
5948
|
-
"to-regex-range": {
|
5949
|
-
"version": "2.1.1",
|
5950
|
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
|
5951
|
-
"integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
|
5952
|
-
"requires": {
|
5953
|
-
"is-number": "^3.0.0",
|
5954
|
-
"repeat-string": "^1.6.1"
|
5955
|
-
}
|
5956
5955
|
}
|
5957
5956
|
}
|
5958
5957
|
},
|
@@ -6014,31 +6013,6 @@
|
|
6014
6013
|
"webpack-sources": "^1.1.0"
|
6015
6014
|
},
|
6016
6015
|
"dependencies": {
|
6017
|
-
"normalize-url": {
|
6018
|
-
"version": "2.0.1",
|
6019
|
-
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz",
|
6020
|
-
"integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==",
|
6021
|
-
"requires": {
|
6022
|
-
"prepend-http": "^2.0.0",
|
6023
|
-
"query-string": "^5.0.1",
|
6024
|
-
"sort-keys": "^2.0.0"
|
6025
|
-
}
|
6026
|
-
},
|
6027
|
-
"prepend-http": {
|
6028
|
-
"version": "2.0.0",
|
6029
|
-
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
|
6030
|
-
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc="
|
6031
|
-
},
|
6032
|
-
"query-string": {
|
6033
|
-
"version": "5.1.1",
|
6034
|
-
"resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz",
|
6035
|
-
"integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==",
|
6036
|
-
"requires": {
|
6037
|
-
"decode-uri-component": "^0.2.0",
|
6038
|
-
"object-assign": "^4.1.0",
|
6039
|
-
"strict-uri-encode": "^1.0.0"
|
6040
|
-
}
|
6041
|
-
},
|
6042
6016
|
"schema-utils": {
|
6043
6017
|
"version": "1.0.0",
|
6044
6018
|
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
|
@@ -6048,14 +6022,6 @@
|
|
6048
6022
|
"ajv-errors": "^1.0.0",
|
6049
6023
|
"ajv-keywords": "^3.1.0"
|
6050
6024
|
}
|
6051
|
-
},
|
6052
|
-
"sort-keys": {
|
6053
|
-
"version": "2.0.0",
|
6054
|
-
"resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
|
6055
|
-
"integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=",
|
6056
|
-
"requires": {
|
6057
|
-
"is-plain-obj": "^1.0.0"
|
6058
|
-
}
|
6059
6025
|
}
|
6060
6026
|
}
|
6061
6027
|
},
|
@@ -6082,6 +6048,23 @@
|
|
6082
6048
|
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
|
6083
6049
|
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
|
6084
6050
|
},
|
6051
|
+
"minipass": {
|
6052
|
+
"version": "3.1.3",
|
6053
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz",
|
6054
|
+
"integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==",
|
6055
|
+
"dev": true,
|
6056
|
+
"requires": {
|
6057
|
+
"yallist": "^4.0.0"
|
6058
|
+
},
|
6059
|
+
"dependencies": {
|
6060
|
+
"yallist": {
|
6061
|
+
"version": "4.0.0",
|
6062
|
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
6063
|
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
6064
|
+
"dev": true
|
6065
|
+
}
|
6066
|
+
}
|
6067
|
+
},
|
6085
6068
|
"mississippi": {
|
6086
6069
|
"version": "3.0.0",
|
6087
6070
|
"resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
|
@@ -6159,9 +6142,9 @@
|
|
6159
6142
|
"integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE="
|
6160
6143
|
},
|
6161
6144
|
"nan": {
|
6162
|
-
"version": "2.14.
|
6163
|
-
"resolved": "https://registry.npmjs.org/nan/-/nan-2.14.
|
6164
|
-
"integrity": "sha512-
|
6145
|
+
"version": "2.14.2",
|
6146
|
+
"resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz",
|
6147
|
+
"integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==",
|
6165
6148
|
"optional": true
|
6166
6149
|
},
|
6167
6150
|
"nanomatch": {
|
@@ -6271,15 +6254,13 @@
|
|
6271
6254
|
"integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI="
|
6272
6255
|
},
|
6273
6256
|
"normalize-url": {
|
6274
|
-
"version": "
|
6275
|
-
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-
|
6276
|
-
"integrity": "
|
6277
|
-
"dev": true,
|
6257
|
+
"version": "2.0.1",
|
6258
|
+
"resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz",
|
6259
|
+
"integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==",
|
6278
6260
|
"requires": {
|
6279
|
-
"
|
6280
|
-
"
|
6281
|
-
"
|
6282
|
-
"sort-keys": "^1.0.0"
|
6261
|
+
"prepend-http": "^2.0.0",
|
6262
|
+
"query-string": "^5.0.1",
|
6263
|
+
"sort-keys": "^2.0.0"
|
6283
6264
|
}
|
6284
6265
|
},
|
6285
6266
|
"npm-run-path": {
|
@@ -6352,32 +6333,12 @@
|
|
6352
6333
|
"integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA=="
|
6353
6334
|
},
|
6354
6335
|
"object-is": {
|
6355
|
-
"version": "1.1.
|
6356
|
-
"resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.
|
6357
|
-
"integrity": "sha512-
|
6336
|
+
"version": "1.1.3",
|
6337
|
+
"resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.3.tgz",
|
6338
|
+
"integrity": "sha512-teyqLvFWzLkq5B9ki8FVWA902UER2qkxmdA4nLf+wjOLAWgxzCWZNCxpDq9MvE8MmhWNr+I8w3BN49Vx36Y6Xg==",
|
6358
6339
|
"requires": {
|
6359
6340
|
"define-properties": "^1.1.3",
|
6360
|
-
"es-abstract": "^1.
|
6361
|
-
},
|
6362
|
-
"dependencies": {
|
6363
|
-
"es-abstract": {
|
6364
|
-
"version": "1.17.6",
|
6365
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz",
|
6366
|
-
"integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==",
|
6367
|
-
"requires": {
|
6368
|
-
"es-to-primitive": "^1.2.1",
|
6369
|
-
"function-bind": "^1.1.1",
|
6370
|
-
"has": "^1.0.3",
|
6371
|
-
"has-symbols": "^1.0.1",
|
6372
|
-
"is-callable": "^1.2.0",
|
6373
|
-
"is-regex": "^1.1.0",
|
6374
|
-
"object-inspect": "^1.7.0",
|
6375
|
-
"object-keys": "^1.1.1",
|
6376
|
-
"object.assign": "^4.1.0",
|
6377
|
-
"string.prototype.trimend": "^1.0.1",
|
6378
|
-
"string.prototype.trimstart": "^1.0.1"
|
6379
|
-
}
|
6380
|
-
}
|
6341
|
+
"es-abstract": "^1.18.0-next.1"
|
6381
6342
|
}
|
6382
6343
|
},
|
6383
6344
|
"object-keys": {
|
@@ -6414,19 +6375,19 @@
|
|
6414
6375
|
},
|
6415
6376
|
"dependencies": {
|
6416
6377
|
"es-abstract": {
|
6417
|
-
"version": "1.17.
|
6418
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.
|
6419
|
-
"integrity": "sha512-
|
6378
|
+
"version": "1.17.7",
|
6379
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
|
6380
|
+
"integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
|
6420
6381
|
"requires": {
|
6421
6382
|
"es-to-primitive": "^1.2.1",
|
6422
6383
|
"function-bind": "^1.1.1",
|
6423
6384
|
"has": "^1.0.3",
|
6424
6385
|
"has-symbols": "^1.0.1",
|
6425
|
-
"is-callable": "^1.2.
|
6426
|
-
"is-regex": "^1.1.
|
6427
|
-
"object-inspect": "^1.
|
6386
|
+
"is-callable": "^1.2.2",
|
6387
|
+
"is-regex": "^1.1.1",
|
6388
|
+
"object-inspect": "^1.8.0",
|
6428
6389
|
"object-keys": "^1.1.1",
|
6429
|
-
"object.assign": "^4.1.
|
6390
|
+
"object.assign": "^4.1.1",
|
6430
6391
|
"string.prototype.trimend": "^1.0.1",
|
6431
6392
|
"string.prototype.trimstart": "^1.0.1"
|
6432
6393
|
}
|
@@ -6453,19 +6414,19 @@
|
|
6453
6414
|
},
|
6454
6415
|
"dependencies": {
|
6455
6416
|
"es-abstract": {
|
6456
|
-
"version": "1.17.
|
6457
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.
|
6458
|
-
"integrity": "sha512-
|
6417
|
+
"version": "1.17.7",
|
6418
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
|
6419
|
+
"integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
|
6459
6420
|
"requires": {
|
6460
6421
|
"es-to-primitive": "^1.2.1",
|
6461
6422
|
"function-bind": "^1.1.1",
|
6462
6423
|
"has": "^1.0.3",
|
6463
6424
|
"has-symbols": "^1.0.1",
|
6464
|
-
"is-callable": "^1.2.
|
6465
|
-
"is-regex": "^1.1.
|
6466
|
-
"object-inspect": "^1.
|
6425
|
+
"is-callable": "^1.2.2",
|
6426
|
+
"is-regex": "^1.1.1",
|
6427
|
+
"object-inspect": "^1.8.0",
|
6467
6428
|
"object-keys": "^1.1.1",
|
6468
|
-
"object.assign": "^4.1.
|
6429
|
+
"object.assign": "^4.1.1",
|
6469
6430
|
"string.prototype.trimend": "^1.0.1",
|
6470
6431
|
"string.prototype.trimstart": "^1.0.1"
|
6471
6432
|
}
|
@@ -6779,9 +6740,9 @@
|
|
6779
6740
|
"integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs="
|
6780
6741
|
},
|
6781
6742
|
"postcss": {
|
6782
|
-
"version": "7.0.
|
6783
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.
|
6784
|
-
"integrity": "sha512-
|
6743
|
+
"version": "7.0.35",
|
6744
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz",
|
6745
|
+
"integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==",
|
6785
6746
|
"requires": {
|
6786
6747
|
"chalk": "^2.4.2",
|
6787
6748
|
"source-map": "^0.6.1",
|
@@ -6804,9 +6765,9 @@
|
|
6804
6765
|
}
|
6805
6766
|
},
|
6806
6767
|
"postcss-calc": {
|
6807
|
-
"version": "7.0.
|
6808
|
-
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.
|
6809
|
-
"integrity": "sha512-
|
6768
|
+
"version": "7.0.5",
|
6769
|
+
"resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz",
|
6770
|
+
"integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==",
|
6810
6771
|
"requires": {
|
6811
6772
|
"postcss": "^7.0.27",
|
6812
6773
|
"postcss-selector-parser": "^6.0.2",
|
@@ -6881,9 +6842,9 @@
|
|
6881
6842
|
}
|
6882
6843
|
},
|
6883
6844
|
"postcss-load-config": {
|
6884
|
-
"version": "2.1.
|
6885
|
-
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.
|
6886
|
-
"integrity": "sha512
|
6845
|
+
"version": "2.1.2",
|
6846
|
+
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz",
|
6847
|
+
"integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==",
|
6887
6848
|
"requires": {
|
6888
6849
|
"cosmiconfig": "^5.0.0",
|
6889
6850
|
"import-cwd": "^2.0.0"
|
@@ -7281,13 +7242,14 @@
|
|
7281
7242
|
}
|
7282
7243
|
},
|
7283
7244
|
"postcss-selector-parser": {
|
7284
|
-
"version": "6.0.
|
7285
|
-
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.
|
7286
|
-
"integrity": "sha512-
|
7245
|
+
"version": "6.0.4",
|
7246
|
+
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz",
|
7247
|
+
"integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==",
|
7287
7248
|
"requires": {
|
7288
7249
|
"cssesc": "^3.0.0",
|
7289
7250
|
"indexes-of": "^1.0.1",
|
7290
|
-
"uniq": "^1.0.1"
|
7251
|
+
"uniq": "^1.0.1",
|
7252
|
+
"util-deprecate": "^1.0.2"
|
7291
7253
|
}
|
7292
7254
|
},
|
7293
7255
|
"postcss-svgo": {
|
@@ -7301,6 +7263,14 @@
|
|
7301
7263
|
"svgo": "^1.0.0"
|
7302
7264
|
},
|
7303
7265
|
"dependencies": {
|
7266
|
+
"is-svg": {
|
7267
|
+
"version": "3.0.0",
|
7268
|
+
"resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
|
7269
|
+
"integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
|
7270
|
+
"requires": {
|
7271
|
+
"html-comment-regex": "^1.1.0"
|
7272
|
+
}
|
7273
|
+
},
|
7304
7274
|
"postcss-value-parser": {
|
7305
7275
|
"version": "3.3.1",
|
7306
7276
|
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
|
@@ -7324,10 +7294,9 @@
|
|
7324
7294
|
"integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ=="
|
7325
7295
|
},
|
7326
7296
|
"prepend-http": {
|
7327
|
-
"version": "
|
7328
|
-
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-
|
7329
|
-
"integrity": "sha1-
|
7330
|
-
"dev": true
|
7297
|
+
"version": "2.0.0",
|
7298
|
+
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
|
7299
|
+
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc="
|
7331
7300
|
},
|
7332
7301
|
"prettier": {
|
7333
7302
|
"version": "1.19.1",
|
@@ -7350,9 +7319,9 @@
|
|
7350
7319
|
"integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA=="
|
7351
7320
|
},
|
7352
7321
|
"prismjs": {
|
7353
|
-
"version": "1.
|
7354
|
-
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.
|
7355
|
-
"integrity": "sha512-
|
7322
|
+
"version": "1.23.0",
|
7323
|
+
"resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.23.0.tgz",
|
7324
|
+
"integrity": "sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==",
|
7356
7325
|
"requires": {
|
7357
7326
|
"clipboard": "^2.0.0"
|
7358
7327
|
}
|
@@ -7363,9 +7332,9 @@
|
|
7363
7332
|
"integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI="
|
7364
7333
|
},
|
7365
7334
|
"process-nextick-args": {
|
7366
|
-
"version": "2.0.
|
7367
|
-
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.
|
7368
|
-
"integrity": "sha512-
|
7335
|
+
"version": "2.0.1",
|
7336
|
+
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
7337
|
+
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
|
7369
7338
|
},
|
7370
7339
|
"promise-inflight": {
|
7371
7340
|
"version": "1.0.1",
|
@@ -7470,11 +7439,11 @@
|
|
7470
7439
|
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
|
7471
7440
|
},
|
7472
7441
|
"query-string": {
|
7473
|
-
"version": "
|
7474
|
-
"resolved": "https://registry.npmjs.org/query-string/-/query-string-
|
7475
|
-
"integrity": "
|
7476
|
-
"dev": true,
|
7442
|
+
"version": "5.1.1",
|
7443
|
+
"resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz",
|
7444
|
+
"integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==",
|
7477
7445
|
"requires": {
|
7446
|
+
"decode-uri-component": "^0.2.0",
|
7478
7447
|
"object-assign": "^4.1.0",
|
7479
7448
|
"strict-uri-encode": "^1.0.0"
|
7480
7449
|
}
|
@@ -7543,12 +7512,19 @@
|
|
7543
7512
|
"ini": "~1.3.0",
|
7544
7513
|
"minimist": "^1.2.0",
|
7545
7514
|
"strip-json-comments": "~2.0.1"
|
7515
|
+
},
|
7516
|
+
"dependencies": {
|
7517
|
+
"ini": {
|
7518
|
+
"version": "1.3.8",
|
7519
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
7520
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
|
7521
|
+
}
|
7546
7522
|
}
|
7547
7523
|
},
|
7548
7524
|
"readable-stream": {
|
7549
|
-
"version": "2.3.
|
7550
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.
|
7551
|
-
"integrity": "sha512-
|
7525
|
+
"version": "2.3.7",
|
7526
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
7527
|
+
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
7552
7528
|
"requires": {
|
7553
7529
|
"core-util-is": "~1.0.0",
|
7554
7530
|
"inherits": "~2.0.3",
|
@@ -7622,19 +7598,19 @@
|
|
7622
7598
|
},
|
7623
7599
|
"dependencies": {
|
7624
7600
|
"es-abstract": {
|
7625
|
-
"version": "1.17.
|
7626
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.
|
7627
|
-
"integrity": "sha512-
|
7601
|
+
"version": "1.17.7",
|
7602
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
|
7603
|
+
"integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
|
7628
7604
|
"requires": {
|
7629
7605
|
"es-to-primitive": "^1.2.1",
|
7630
7606
|
"function-bind": "^1.1.1",
|
7631
7607
|
"has": "^1.0.3",
|
7632
7608
|
"has-symbols": "^1.0.1",
|
7633
|
-
"is-callable": "^1.2.
|
7634
|
-
"is-regex": "^1.1.
|
7635
|
-
"object-inspect": "^1.
|
7609
|
+
"is-callable": "^1.2.2",
|
7610
|
+
"is-regex": "^1.1.1",
|
7611
|
+
"object-inspect": "^1.8.0",
|
7636
7612
|
"object-keys": "^1.1.1",
|
7637
|
-
"object.assign": "^4.1.
|
7613
|
+
"object.assign": "^4.1.1",
|
7638
7614
|
"string.prototype.trimend": "^1.0.1",
|
7639
7615
|
"string.prototype.trimstart": "^1.0.1"
|
7640
7616
|
}
|
@@ -7642,9 +7618,9 @@
|
|
7642
7618
|
}
|
7643
7619
|
},
|
7644
7620
|
"regexpu-core": {
|
7645
|
-
"version": "4.7.
|
7646
|
-
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.
|
7647
|
-
"integrity": "sha512-
|
7621
|
+
"version": "4.7.1",
|
7622
|
+
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz",
|
7623
|
+
"integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==",
|
7648
7624
|
"requires": {
|
7649
7625
|
"regenerate": "^1.4.0",
|
7650
7626
|
"regenerate-unicode-properties": "^8.2.0",
|
@@ -7858,9 +7834,9 @@
|
|
7858
7834
|
"integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM="
|
7859
7835
|
},
|
7860
7836
|
"rimraf": {
|
7861
|
-
"version": "2.
|
7862
|
-
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.
|
7863
|
-
"integrity": "sha512-
|
7837
|
+
"version": "2.7.1",
|
7838
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
|
7839
|
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
|
7864
7840
|
"requires": {
|
7865
7841
|
"glob": "^7.1.3"
|
7866
7842
|
}
|
@@ -8062,6 +8038,11 @@
|
|
8062
8038
|
"statuses": ">= 1.4.0 < 2"
|
8063
8039
|
}
|
8064
8040
|
},
|
8041
|
+
"inherits": {
|
8042
|
+
"version": "2.0.3",
|
8043
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
8044
|
+
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
8045
|
+
},
|
8065
8046
|
"ms": {
|
8066
8047
|
"version": "2.0.0",
|
8067
8048
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
@@ -8313,10 +8294,9 @@
|
|
8313
8294
|
}
|
8314
8295
|
},
|
8315
8296
|
"sort-keys": {
|
8316
|
-
"version": "
|
8317
|
-
"resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-
|
8318
|
-
"integrity": "sha1-
|
8319
|
-
"dev": true,
|
8297
|
+
"version": "2.0.0",
|
8298
|
+
"resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
|
8299
|
+
"integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=",
|
8320
8300
|
"requires": {
|
8321
8301
|
"is-plain-obj": "^1.0.0"
|
8322
8302
|
}
|
@@ -8431,11 +8411,12 @@
|
|
8431
8411
|
}
|
8432
8412
|
},
|
8433
8413
|
"ssri": {
|
8434
|
-
"version": "
|
8435
|
-
"resolved": "https://registry.npmjs.org/ssri/-/ssri-
|
8436
|
-
"integrity": "sha512-
|
8414
|
+
"version": "8.0.1",
|
8415
|
+
"resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
|
8416
|
+
"integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
|
8417
|
+
"dev": true,
|
8437
8418
|
"requires": {
|
8438
|
-
"
|
8419
|
+
"minipass": "^3.1.1"
|
8439
8420
|
}
|
8440
8421
|
},
|
8441
8422
|
"stable": {
|
@@ -8555,19 +8536,19 @@
|
|
8555
8536
|
},
|
8556
8537
|
"dependencies": {
|
8557
8538
|
"es-abstract": {
|
8558
|
-
"version": "1.17.
|
8559
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.
|
8560
|
-
"integrity": "sha512-
|
8539
|
+
"version": "1.17.7",
|
8540
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
|
8541
|
+
"integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
|
8561
8542
|
"requires": {
|
8562
8543
|
"es-to-primitive": "^1.2.1",
|
8563
8544
|
"function-bind": "^1.1.1",
|
8564
8545
|
"has": "^1.0.3",
|
8565
8546
|
"has-symbols": "^1.0.1",
|
8566
|
-
"is-callable": "^1.2.
|
8567
|
-
"is-regex": "^1.1.
|
8568
|
-
"object-inspect": "^1.
|
8547
|
+
"is-callable": "^1.2.2",
|
8548
|
+
"is-regex": "^1.1.1",
|
8549
|
+
"object-inspect": "^1.8.0",
|
8569
8550
|
"object-keys": "^1.1.1",
|
8570
|
-
"object.assign": "^4.1.
|
8551
|
+
"object.assign": "^4.1.1",
|
8571
8552
|
"string.prototype.trimend": "^1.0.1",
|
8572
8553
|
"string.prototype.trimstart": "^1.0.1"
|
8573
8554
|
}
|
@@ -8584,19 +8565,19 @@
|
|
8584
8565
|
},
|
8585
8566
|
"dependencies": {
|
8586
8567
|
"es-abstract": {
|
8587
|
-
"version": "1.17.
|
8588
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.
|
8589
|
-
"integrity": "sha512-
|
8568
|
+
"version": "1.17.7",
|
8569
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
|
8570
|
+
"integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
|
8590
8571
|
"requires": {
|
8591
8572
|
"es-to-primitive": "^1.2.1",
|
8592
8573
|
"function-bind": "^1.1.1",
|
8593
8574
|
"has": "^1.0.3",
|
8594
8575
|
"has-symbols": "^1.0.1",
|
8595
|
-
"is-callable": "^1.2.
|
8596
|
-
"is-regex": "^1.1.
|
8597
|
-
"object-inspect": "^1.
|
8576
|
+
"is-callable": "^1.2.2",
|
8577
|
+
"is-regex": "^1.1.1",
|
8578
|
+
"object-inspect": "^1.8.0",
|
8598
8579
|
"object-keys": "^1.1.1",
|
8599
|
-
"object.assign": "^4.1.
|
8580
|
+
"object.assign": "^4.1.1",
|
8600
8581
|
"string.prototype.trimend": "^1.0.1",
|
8601
8582
|
"string.prototype.trimstart": "^1.0.1"
|
8602
8583
|
}
|
@@ -8694,19 +8675,6 @@
|
|
8694
8675
|
"ms": "2.0.0"
|
8695
8676
|
}
|
8696
8677
|
},
|
8697
|
-
"glob": {
|
8698
|
-
"version": "7.1.6",
|
8699
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
8700
|
-
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
8701
|
-
"requires": {
|
8702
|
-
"fs.realpath": "^1.0.0",
|
8703
|
-
"inflight": "^1.0.4",
|
8704
|
-
"inherits": "2",
|
8705
|
-
"minimatch": "^3.0.4",
|
8706
|
-
"once": "^1.3.0",
|
8707
|
-
"path-is-absolute": "^1.0.0"
|
8708
|
-
}
|
8709
|
-
},
|
8710
8678
|
"mkdirp": {
|
8711
8679
|
"version": "1.0.4",
|
8712
8680
|
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
|
@@ -8938,20 +8906,12 @@
|
|
8938
8906
|
}
|
8939
8907
|
},
|
8940
8908
|
"to-regex-range": {
|
8941
|
-
"version": "
|
8942
|
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-
|
8943
|
-
"integrity": "
|
8944
|
-
"dev": true,
|
8909
|
+
"version": "2.1.1",
|
8910
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
|
8911
|
+
"integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
|
8945
8912
|
"requires": {
|
8946
|
-
"is-number": "^
|
8947
|
-
|
8948
|
-
"dependencies": {
|
8949
|
-
"is-number": {
|
8950
|
-
"version": "7.0.0",
|
8951
|
-
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
8952
|
-
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
8953
|
-
"dev": true
|
8954
|
-
}
|
8913
|
+
"is-number": "^3.0.0",
|
8914
|
+
"repeat-string": "^1.6.1"
|
8955
8915
|
}
|
8956
8916
|
},
|
8957
8917
|
"toidentifier": {
|
@@ -8988,9 +8948,9 @@
|
|
8988
8948
|
}
|
8989
8949
|
},
|
8990
8950
|
"tslib": {
|
8991
|
-
"version": "1.
|
8992
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.
|
8993
|
-
"integrity": "sha512-
|
8951
|
+
"version": "1.14.1",
|
8952
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
|
8953
|
+
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
|
8994
8954
|
},
|
8995
8955
|
"tty-browserify": {
|
8996
8956
|
"version": "0.0.0",
|
@@ -9051,6 +9011,11 @@
|
|
9051
9011
|
"source-map": "~0.6.1"
|
9052
9012
|
},
|
9053
9013
|
"dependencies": {
|
9014
|
+
"commander": {
|
9015
|
+
"version": "2.19.0",
|
9016
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
|
9017
|
+
"integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="
|
9018
|
+
},
|
9054
9019
|
"source-map": {
|
9055
9020
|
"version": "0.6.1",
|
9056
9021
|
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
@@ -9205,9 +9170,9 @@
|
|
9205
9170
|
"integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="
|
9206
9171
|
},
|
9207
9172
|
"update-notifier": {
|
9208
|
-
"version": "4.1.
|
9209
|
-
"resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.
|
9210
|
-
"integrity": "sha512-
|
9173
|
+
"version": "4.1.3",
|
9174
|
+
"resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz",
|
9175
|
+
"integrity": "sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==",
|
9211
9176
|
"requires": {
|
9212
9177
|
"boxen": "^4.2.0",
|
9213
9178
|
"chalk": "^3.0.0",
|
@@ -9225,11 +9190,10 @@
|
|
9225
9190
|
},
|
9226
9191
|
"dependencies": {
|
9227
9192
|
"ansi-styles": {
|
9228
|
-
"version": "4.
|
9229
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.
|
9230
|
-
"integrity": "sha512-
|
9193
|
+
"version": "4.3.0",
|
9194
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
9195
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
9231
9196
|
"requires": {
|
9232
|
-
"@types/color-name": "^1.1.1",
|
9233
9197
|
"color-convert": "^2.0.1"
|
9234
9198
|
}
|
9235
9199
|
},
|
@@ -9341,13 +9305,6 @@
|
|
9341
9305
|
"integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
|
9342
9306
|
"requires": {
|
9343
9307
|
"prepend-http": "^2.0.0"
|
9344
|
-
},
|
9345
|
-
"dependencies": {
|
9346
|
-
"prepend-http": {
|
9347
|
-
"version": "2.0.0",
|
9348
|
-
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
|
9349
|
-
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc="
|
9350
|
-
}
|
9351
9308
|
}
|
9352
9309
|
},
|
9353
9310
|
"use": {
|
@@ -9361,6 +9318,13 @@
|
|
9361
9318
|
"integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
|
9362
9319
|
"requires": {
|
9363
9320
|
"inherits": "2.0.3"
|
9321
|
+
},
|
9322
|
+
"dependencies": {
|
9323
|
+
"inherits": {
|
9324
|
+
"version": "2.0.3",
|
9325
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
9326
|
+
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
|
9327
|
+
}
|
9364
9328
|
}
|
9365
9329
|
},
|
9366
9330
|
"util-deprecate": {
|
@@ -9380,19 +9344,19 @@
|
|
9380
9344
|
},
|
9381
9345
|
"dependencies": {
|
9382
9346
|
"es-abstract": {
|
9383
|
-
"version": "1.17.
|
9384
|
-
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.
|
9385
|
-
"integrity": "sha512-
|
9347
|
+
"version": "1.17.7",
|
9348
|
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz",
|
9349
|
+
"integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==",
|
9386
9350
|
"requires": {
|
9387
9351
|
"es-to-primitive": "^1.2.1",
|
9388
9352
|
"function-bind": "^1.1.1",
|
9389
9353
|
"has": "^1.0.3",
|
9390
9354
|
"has-symbols": "^1.0.1",
|
9391
|
-
"is-callable": "^1.2.
|
9392
|
-
"is-regex": "^1.1.
|
9393
|
-
"object-inspect": "^1.
|
9355
|
+
"is-callable": "^1.2.2",
|
9356
|
+
"is-regex": "^1.1.1",
|
9357
|
+
"object-inspect": "^1.8.0",
|
9394
9358
|
"object-keys": "^1.1.1",
|
9395
|
-
"object.assign": "^4.1.
|
9359
|
+
"object.assign": "^4.1.1",
|
9396
9360
|
"string.prototype.trimend": "^1.0.1",
|
9397
9361
|
"string.prototype.trimstart": "^1.0.1"
|
9398
9362
|
}
|
@@ -9435,9 +9399,9 @@
|
|
9435
9399
|
}
|
9436
9400
|
},
|
9437
9401
|
"vinyl": {
|
9438
|
-
"version": "2.2.
|
9439
|
-
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.
|
9440
|
-
"integrity": "sha512-
|
9402
|
+
"version": "2.2.1",
|
9403
|
+
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz",
|
9404
|
+
"integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==",
|
9441
9405
|
"requires": {
|
9442
9406
|
"clone": "^2.1.1",
|
9443
9407
|
"clone-buffer": "^1.0.0",
|
@@ -9475,9 +9439,9 @@
|
|
9475
9439
|
}
|
9476
9440
|
},
|
9477
9441
|
"vue-router": {
|
9478
|
-
"version": "3.4.
|
9479
|
-
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.
|
9480
|
-
"integrity": "sha512-
|
9442
|
+
"version": "3.4.6",
|
9443
|
+
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.4.6.tgz",
|
9444
|
+
"integrity": "sha512-kaXnB3pfFxhAJl/Mp+XG1HJMyFqrL/xPqV7oXlpXn4AwMmm6VNgf0nllW8ksflmZANfI4kdo0bVn/FYSsAolPQ=="
|
9481
9445
|
},
|
9482
9446
|
"vue-server-renderer": {
|
9483
9447
|
"version": "2.6.12",
|
@@ -9555,12 +9519,12 @@
|
|
9555
9519
|
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw=="
|
9556
9520
|
},
|
9557
9521
|
"vuepress": {
|
9558
|
-
"version": "1.
|
9559
|
-
"resolved": "https://registry.npmjs.org/vuepress/-/vuepress-1.
|
9560
|
-
"integrity": "sha512-
|
9522
|
+
"version": "1.6.0",
|
9523
|
+
"resolved": "https://registry.npmjs.org/vuepress/-/vuepress-1.6.0.tgz",
|
9524
|
+
"integrity": "sha512-5hxhkgMROjo6ja59oyrHeiOv6xpq1sy86ejaWgevMWiMbBIZU+9grwrd+PSL6q4rwfsi/a8NqYzcBXV/ZSXWZA==",
|
9561
9525
|
"requires": {
|
9562
|
-
"@vuepress/core": "1.
|
9563
|
-
"@vuepress/theme-default": "1.
|
9526
|
+
"@vuepress/core": "1.6.0",
|
9527
|
+
"@vuepress/theme-default": "1.6.0",
|
9564
9528
|
"cac": "^6.5.6",
|
9565
9529
|
"envinfo": "^7.2.0",
|
9566
9530
|
"opencollective-postinstall": "^2.0.2",
|
@@ -9662,19 +9626,10 @@
|
|
9662
9626
|
"integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==",
|
9663
9627
|
"optional": true
|
9664
9628
|
},
|
9665
|
-
"braces": {
|
9666
|
-
"version": "3.0.2",
|
9667
|
-
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
9668
|
-
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
9669
|
-
"optional": true,
|
9670
|
-
"requires": {
|
9671
|
-
"fill-range": "^7.0.1"
|
9672
|
-
}
|
9673
|
-
},
|
9674
9629
|
"chokidar": {
|
9675
|
-
"version": "3.4.
|
9676
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.
|
9677
|
-
"integrity": "sha512-
|
9630
|
+
"version": "3.4.3",
|
9631
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz",
|
9632
|
+
"integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==",
|
9678
9633
|
"optional": true,
|
9679
9634
|
"requires": {
|
9680
9635
|
"anymatch": "~3.1.1",
|
@@ -9684,16 +9639,7 @@
|
|
9684
9639
|
"is-binary-path": "~2.1.0",
|
9685
9640
|
"is-glob": "~4.0.1",
|
9686
9641
|
"normalize-path": "~3.0.0",
|
9687
|
-
"readdirp": "~3.
|
9688
|
-
}
|
9689
|
-
},
|
9690
|
-
"fill-range": {
|
9691
|
-
"version": "7.0.1",
|
9692
|
-
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
9693
|
-
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
9694
|
-
"optional": true,
|
9695
|
-
"requires": {
|
9696
|
-
"to-regex-range": "^5.0.1"
|
9642
|
+
"readdirp": "~3.5.0"
|
9697
9643
|
}
|
9698
9644
|
},
|
9699
9645
|
"fsevents": {
|
@@ -9720,29 +9666,14 @@
|
|
9720
9666
|
"binary-extensions": "^2.0.0"
|
9721
9667
|
}
|
9722
9668
|
},
|
9723
|
-
"is-number": {
|
9724
|
-
"version": "7.0.0",
|
9725
|
-
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
9726
|
-
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
9727
|
-
"optional": true
|
9728
|
-
},
|
9729
9669
|
"readdirp": {
|
9730
|
-
"version": "3.
|
9731
|
-
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.
|
9732
|
-
"integrity": "sha512-
|
9670
|
+
"version": "3.5.0",
|
9671
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz",
|
9672
|
+
"integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==",
|
9733
9673
|
"optional": true,
|
9734
9674
|
"requires": {
|
9735
9675
|
"picomatch": "^2.2.1"
|
9736
9676
|
}
|
9737
|
-
},
|
9738
|
-
"to-regex-range": {
|
9739
|
-
"version": "5.0.1",
|
9740
|
-
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
9741
|
-
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
9742
|
-
"optional": true,
|
9743
|
-
"requires": {
|
9744
|
-
"is-number": "^7.0.0"
|
9745
|
-
}
|
9746
9677
|
}
|
9747
9678
|
}
|
9748
9679
|
},
|
@@ -9764,9 +9695,9 @@
|
|
9764
9695
|
}
|
9765
9696
|
},
|
9766
9697
|
"webpack": {
|
9767
|
-
"version": "4.44.
|
9768
|
-
"resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.
|
9769
|
-
"integrity": "sha512-
|
9698
|
+
"version": "4.44.2",
|
9699
|
+
"resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz",
|
9700
|
+
"integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==",
|
9770
9701
|
"requires": {
|
9771
9702
|
"@webassemblyjs/ast": "1.9.0",
|
9772
9703
|
"@webassemblyjs/helper-module-context": "1.9.0",
|
@@ -10093,9 +10024,9 @@
|
|
10093
10024
|
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
10094
10025
|
},
|
10095
10026
|
"y18n": {
|
10096
|
-
"version": "4.0.
|
10097
|
-
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.
|
10098
|
-
"integrity": "sha512-
|
10027
|
+
"version": "4.0.1",
|
10028
|
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz",
|
10029
|
+
"integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="
|
10099
10030
|
},
|
10100
10031
|
"yallist": {
|
10101
10032
|
"version": "3.1.1",
|
@@ -10136,9 +10067,9 @@
|
|
10136
10067
|
}
|
10137
10068
|
},
|
10138
10069
|
"yargs-parser": {
|
10139
|
-
"version": "20.
|
10140
|
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.
|
10141
|
-
"integrity": "sha512-
|
10070
|
+
"version": "20.2.1",
|
10071
|
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.1.tgz",
|
10072
|
+
"integrity": "sha512-yYsjuSkjbLMBp16eaOt7/siKTjNVjMm3SoJnIg3sEh/JsvqVVDyjRKmaJV4cl+lNIgq6QEco2i3gDebJl7/vLA==",
|
10142
10073
|
"dev": true
|
10143
10074
|
},
|
10144
10075
|
"zepto": {
|