create-packer 1.7.8 → 1.8.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.
- package/bin/clis/createTemp.d.ts +5 -0
- package/bin/clis/createTemp.js +57 -0
- package/bin/index.js +6 -11
- package/bin/utils/index.d.ts +3 -1
- package/bin/utils/index.js +24 -4
- package/package.json +16 -19
- package/template/{doc/docusaurus → docusaurus}/.gitignore +0 -0
- package/template/{doc/docusaurus → docusaurus}/.prettierignore +0 -0
- package/template/{desktop-app/electron/app → docusaurus}/.prettierrc.js +0 -0
- package/template/{doc/docusaurus → docusaurus}/README.md +0 -0
- package/template/{doc/docusaurus → docusaurus}/babel.config.js +0 -0
- package/template/{doc/docusaurus → docusaurus}/blog/2019-05-28-hola.md +0 -0
- package/template/{doc/docusaurus → docusaurus}/blog/2019-05-29-hello-world.md +0 -0
- package/template/{doc/docusaurus → docusaurus}/blog/2019-05-30-welcome.md +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc1/doc1.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc1/doc2.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc1/doc3.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc1/doc4.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc2/doc1.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc2/doc2.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc2/doc3.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docs/doc2/mdx4.mdx +0 -0
- package/template/{doc/docusaurus → docusaurus}/docusaurus.config.js +0 -0
- package/template/{doc/docusaurus → docusaurus}/package.json +19 -19
- package/template/{doc/docusaurus → docusaurus}/sidebars.js +0 -0
- package/template/{doc/docusaurus → docusaurus}/src/css/custom.css +0 -0
- package/template/{doc/docusaurus → docusaurus}/src/pages/index.tsx +0 -0
- package/template/{doc/docusaurus → docusaurus}/src/pages/styles.module.css +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/.nojekyll +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/docusaurus.png +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/favicon.ico +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/logo.svg +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/tutorial/docsVersionDropdown.png +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/tutorial/localeDropdown.png +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/undraw_docusaurus_mountain.svg +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/undraw_docusaurus_react.svg +0 -0
- package/template/{doc/docusaurus → docusaurus}/static/img/undraw_docusaurus_tree.svg +0 -0
- package/template/{doc/docusaurus → docusaurus}/tsconfig.json +0 -0
- package/template/{node/nest → nest}/.eslintrc.js +1 -0
- package/template/nest/.gitignore +35 -0
- package/template/nest/.prettierrc +4 -0
- package/template/{node/nest → nest}/README.md +1 -1
- package/template/{node/nest → nest}/nest-cli.json +1 -0
- package/template/nest/package.json +71 -0
- package/template/nest/src/app.controller.spec.ts +22 -0
- package/template/nest/src/app.controller.ts +12 -0
- package/template/nest/src/app.module.ts +10 -0
- package/template/nest/src/app.service.ts +8 -0
- package/template/nest/src/main.ts +10 -0
- package/template/{node/nest → nest}/src/utils/transform.interceptor.ts +0 -0
- package/template/nest/test/app.e2e-spec.ts +24 -0
- package/template/{node/nest → nest}/test/jest-e2e.json +0 -0
- package/template/nest/tsconfig.build.json +5 -0
- package/template/{node/nest → nest}/tsconfig.json +7 -1
- package/template/{web-app/rc-recoil → react-cra}/.env +0 -0
- package/template/{web-app/rc-recoil → react-cra}/.gitignore +0 -0
- package/template/{desktop-app/electron/app → react-cra}/.prettierignore +0 -0
- package/template/{doc/docusaurus → react-cra}/.prettierrc.js +0 -0
- package/template/{web-app/rc-recoil → react-cra}/.stylelintrc.js +0 -0
- package/template/{web-app/rc-recoil → react-cra}/README.md +0 -0
- package/template/{web-app/rc-recoil → react-cra}/craco.config.js +0 -0
- package/template/{web-app/rc-recoil → react-cra}/package.json +25 -27
- package/template/{web-app/rc-recoil → react-cra}/public/favicon.ico +0 -0
- package/template/{web-app/rc-recoil → react-cra}/public/index.html +0 -0
- package/template/{web-app/rc-recoil → react-cra}/public/manifest.json +0 -0
- package/template/react-cra/src/Layout/index.tsx +8 -0
- package/template/{web-app/rc-recoil → react-cra}/src/Layout/typings.ts +0 -0
- package/template/{web-app/rc-recoil → react-cra}/src/index.scss +0 -0
- package/template/react-cra/src/index.tsx +24 -0
- package/template/{web-app/rc-recoil → react-cra}/src/logo.svg +0 -0
- package/template/{web-app/rc-recoil → react-cra}/src/pages/home/Home.scss +0 -0
- package/template/react-cra/src/pages/home/index.test.tsx +9 -0
- package/template/{web-app/rc-recoil → react-cra}/src/pages/home/index.tsx +0 -0
- package/template/{web-app/rc-recoil → react-cra}/src/react-app-env.d.ts +0 -0
- package/template/{web-app/rc-recoil → react-cra}/src/reportWebVitals.ts +0 -0
- package/template/react-cra/src/routes/index.ts +15 -0
- package/template/{web-app/rc-recoil → react-cra}/src/setupTests.ts +0 -0
- package/template/{web-app/rc-recoil → react-cra}/tsconfig.json +0 -0
- package/bin/clis/Create.d.ts +0 -4
- package/bin/clis/Create.js +0 -47
- package/bin/clis/Project.d.ts +0 -30
- package/bin/clis/Project.js +0 -65
- package/template/desktop-app/electron/.gitignore +0 -34
- package/template/desktop-app/electron/app/.eslintrc +0 -28
- package/template/desktop-app/electron/app/.gitignore +0 -19
- package/template/desktop-app/electron/app/babel.config.js +0 -19
- package/template/desktop-app/electron/app/package.json +0 -106
- package/template/desktop-app/electron/app/src/configs/appConfig.ts +0 -8
- package/template/desktop-app/electron/app/src/lib/AppWin.ts +0 -17
- package/template/desktop-app/electron/app/src/lib/DefaultWin.ts +0 -40
- package/template/desktop-app/electron/app/src/main.ts +0 -38
- package/template/desktop-app/electron/app/src/utils/updateAction.ts +0 -39
- package/template/desktop-app/electron/app/tsconfig.json +0 -20
- package/template/desktop-app/electron/app/webpack.config.js +0 -49
- package/template/desktop-app/electron/app/yarn.lock +0 -6479
- package/template/desktop-app/electron/package.json +0 -20
- package/template/desktop-app/electron/utils/package.js +0 -40
- package/template/desktop-app/electron/yarn.lock +0 -42
- package/template/doc/docusaurus/yarn.lock +0 -9466
- package/template/lib/gulp/.eslintrc +0 -40
- package/template/lib/gulp/.gitignore +0 -31
- package/template/lib/gulp/.prettierignore +0 -7
- package/template/lib/gulp/.prettierrc.js +0 -21
- package/template/lib/gulp/LICENSE +0 -21
- package/template/lib/gulp/README.md +0 -1
- package/template/lib/gulp/jest.config.js +0 -8
- package/template/lib/gulp/package.json +0 -35
- package/template/lib/gulp/scripts/build.js +0 -18
- package/template/lib/gulp/src/index.ts +0 -3
- package/template/lib/gulp/test/index.test.ts +0 -3
- package/template/lib/gulp/tsconfig.json +0 -19
- package/template/lib/gulp/yarn.lock +0 -9570
- package/template/lib/rollup/.eslintrc +0 -40
- package/template/lib/rollup/.gitignore +0 -27
- package/template/lib/rollup/.prettierignore +0 -7
- package/template/lib/rollup/.prettierrc.js +0 -21
- package/template/lib/rollup/LICENSE +0 -21
- package/template/lib/rollup/README.md +0 -1
- package/template/lib/rollup/jest.config.js +0 -8
- package/template/lib/rollup/package.json +0 -35
- package/template/lib/rollup/scripts/build.js +0 -8
- package/template/lib/rollup/src/index.ts +0 -3
- package/template/lib/rollup/test/index.test.ts +0 -3
- package/template/lib/rollup/tsconfig.json +0 -21
- package/template/lib/rollup/yarn.lock +0 -9570
- package/template/node/base/.eslintrc +0 -28
- package/template/node/base/.gitignore +0 -15
- package/template/node/base/.prettierignore +0 -4
- package/template/node/base/.prettierrc.js +0 -20
- package/template/node/base/LICENSE +0 -201
- package/template/node/base/README.md +0 -9
- package/template/node/base/jest.config.js +0 -8
- package/template/node/base/package.json +0 -37
- package/template/node/base/src/server.ts +0 -0
- package/template/node/base/test/server.test.ts +0 -3
- package/template/node/base/tsconfig.json +0 -19
- package/template/node/base/yarn.lock +0 -4038
- package/template/node/nest/.gitignore +0 -15
- package/template/node/nest/.prettierignore +0 -4
- package/template/node/nest/.prettierrc.js +0 -20
- package/template/node/nest/package.json +0 -76
- package/template/node/nest/src/app.controller.spec.ts +0 -22
- package/template/node/nest/src/app.controller.ts +0 -12
- package/template/node/nest/src/app.module.ts +0 -10
- package/template/node/nest/src/app.service.ts +0 -8
- package/template/node/nest/src/main.ts +0 -10
- package/template/node/nest/test/app.e2e-spec.ts +0 -21
- package/template/node/nest/tsconfig.build.json +0 -4
- package/template/node/nest/yarn.lock +0 -5931
- package/template/web-app/rc-recoil/.prettierignore +0 -4
- package/template/web-app/rc-recoil/.prettierrc.js +0 -20
- package/template/web-app/rc-recoil/src/Layout/index.tsx +0 -12
- package/template/web-app/rc-recoil/src/app.store.ts +0 -8
- package/template/web-app/rc-recoil/src/index.tsx +0 -23
- package/template/web-app/rc-recoil/src/pages/home/home.store.ts +0 -6
- package/template/web-app/rc-recoil/src/pages/home/index.test.tsx +0 -15
- package/template/web-app/rc-recoil/src/routes/index.ts +0 -11
- package/template/web-app/rc-recoil/yarn.lock +0 -12437
- package/template/web-app/rc-redux/.env +0 -1
- package/template/web-app/rc-redux/.gitignore +0 -30
- package/template/web-app/rc-redux/.prettierignore +0 -4
- package/template/web-app/rc-redux/.prettierrc.js +0 -20
- package/template/web-app/rc-redux/.stylelintrc.js +0 -21
- package/template/web-app/rc-redux/README.md +0 -10
- package/template/web-app/rc-redux/craco.config.js +0 -14
- package/template/web-app/rc-redux/package.json +0 -72
- package/template/web-app/rc-redux/public/favicon.ico +0 -0
- package/template/web-app/rc-redux/public/index.html +0 -41
- package/template/web-app/rc-redux/public/manifest.json +0 -15
- package/template/web-app/rc-redux/src/Layout/index.tsx +0 -9
- package/template/web-app/rc-redux/src/index.scss +0 -5
- package/template/web-app/rc-redux/src/index.tsx +0 -24
- package/template/web-app/rc-redux/src/logo.svg +0 -7
- package/template/web-app/rc-redux/src/pages/home/Home.scss +0 -0
- package/template/web-app/rc-redux/src/pages/home/home.store.ts +0 -7
- package/template/web-app/rc-redux/src/pages/home/index.test.tsx +0 -17
- package/template/web-app/rc-redux/src/pages/home/index.tsx +0 -10
- package/template/web-app/rc-redux/src/react-app-env.d.ts +0 -1
- package/template/web-app/rc-redux/src/reportWebVitals.ts +0 -15
- package/template/web-app/rc-redux/src/routes/index.ts +0 -11
- package/template/web-app/rc-redux/src/serviceWorker.ts +0 -139
- package/template/web-app/rc-redux/src/setupTests.ts +0 -5
- package/template/web-app/rc-redux/src/store/App.store.ts +0 -9
- package/template/web-app/rc-redux/src/store/index.ts +0 -11
- package/template/web-app/rc-redux/tsconfig.json +0 -21
- package/template/web-app/rc-redux/yarn.lock +0 -12480
- package/template/web-app/vue-2.x/.browserslistrc +0 -2
- package/template/web-app/vue-2.x/.gitignore +0 -30
- package/template/web-app/vue-2.x/.prettierignore +0 -5
- package/template/web-app/vue-2.x/.prettierrc.js +0 -20
- package/template/web-app/vue-2.x/README.md +0 -29
- package/template/web-app/vue-2.x/babel.config.js +0 -3
- package/template/web-app/vue-2.x/package.json +0 -31
- package/template/web-app/vue-2.x/public/favicon.ico +0 -0
- package/template/web-app/vue-2.x/public/index.html +0 -20
- package/template/web-app/vue-2.x/src/App.vue +0 -5
- package/template/web-app/vue-2.x/src/assets/logo.png +0 -0
- package/template/web-app/vue-2.x/src/main.ts +0 -12
- package/template/web-app/vue-2.x/src/router/index.ts +0 -21
- package/template/web-app/vue-2.x/src/shims-tsx.d.ts +0 -13
- package/template/web-app/vue-2.x/src/shims-vue.d.ts +0 -4
- package/template/web-app/vue-2.x/src/store/app.ts +0 -19
- package/template/web-app/vue-2.x/src/store/index.ts +0 -27
- package/template/web-app/vue-2.x/src/views/Home.vue +0 -5
- package/template/web-app/vue-2.x/tsconfig.json +0 -22
- package/template/web-app/vue-2.x/tslint.json +0 -21
- package/template/web-app/vue-2.x/vue.config.js +0 -10
- package/template/web-app/vue-2.x/yarn.lock +0 -8128
- package/template/web-app/webpack/.editorconfig +0 -14
- package/template/web-app/webpack/.gitignore +0 -30
- package/template/web-app/webpack/.prettierignore +0 -5
- package/template/web-app/webpack/.prettierrc.js +0 -20
- package/template/web-app/webpack/.stylelintrc.js +0 -21
- package/template/web-app/webpack/LICENSE +0 -191
- package/template/web-app/webpack/README.md +0 -4
- package/template/web-app/webpack/babel.config.js +0 -17
- package/template/web-app/webpack/jest.config.js +0 -27
- package/template/web-app/webpack/package.json +0 -85
- package/template/web-app/webpack/postcss.config.js +0 -11
- package/template/web-app/webpack/src/Layout/index.tsx +0 -9
- package/template/web-app/webpack/src/Layout/typings.ts +0 -4
- package/template/web-app/webpack/src/global.css +0 -3
- package/template/web-app/webpack/src/global.d.ts +0 -8
- package/template/web-app/webpack/src/index.html +0 -16
- package/template/web-app/webpack/src/index.tsx +0 -20
- package/template/web-app/webpack/src/pages/Home/Home.css.json +0 -1
- package/template/web-app/webpack/src/pages/Home/Home.module.css +0 -3
- package/template/web-app/webpack/src/pages/Home/Home.store.ts +0 -12
- package/template/web-app/webpack/src/pages/Home/index.test.tsx +0 -17
- package/template/web-app/webpack/src/pages/Home/index.tsx +0 -15
- package/template/web-app/webpack/src/pages/Home/typings.ts +0 -1
- package/template/web-app/webpack/src/routes/index.ts +0 -16
- package/template/web-app/webpack/src/store/App.store.ts +0 -14
- package/template/web-app/webpack/src/store/index.ts +0 -11
- package/template/web-app/webpack/tsconfig.json +0 -23
- package/template/web-app/webpack/tslint.json +0 -21
- package/template/web-app/webpack/webpack.config.js +0 -15
- package/template/web-app/webpack/webpack_config/config.js +0 -14
- package/template/web-app/webpack/webpack_config/genBaseConfig.js +0 -73
- package/template/web-app/webpack/webpack_config/genStyleConfig.js +0 -23
- package/template/web-app/webpack/webpack_config/jest/fileTransform.js +0 -40
- package/template/web-app/webpack/yarn.lock +0 -8474
|
@@ -1,4038 +0,0 @@
|
|
|
1
|
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
2
|
-
# yarn lockfile v1
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"@babel/code-frame@7.12.11":
|
|
6
|
-
version "7.12.11"
|
|
7
|
-
resolved "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
|
|
8
|
-
integrity sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8=
|
|
9
|
-
dependencies:
|
|
10
|
-
"@babel/highlight" "^7.10.4"
|
|
11
|
-
|
|
12
|
-
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5":
|
|
13
|
-
version "7.14.5"
|
|
14
|
-
resolved "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz#23b08d740e83f49c5e59945fbf1b43e80bbf4edb"
|
|
15
|
-
integrity sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts=
|
|
16
|
-
dependencies:
|
|
17
|
-
"@babel/highlight" "^7.14.5"
|
|
18
|
-
|
|
19
|
-
"@babel/compat-data@^7.14.5":
|
|
20
|
-
version "7.14.5"
|
|
21
|
-
resolved "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.5.tgz?cache=0&sync_timestamp=1623280306479&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcompat-data%2Fdownload%2F%40babel%2Fcompat-data-7.14.5.tgz#8ef4c18e58e801c5c95d3c1c0f2874a2680fadea"
|
|
22
|
-
integrity sha1-jvTBjljoAcXJXTwcDyh0omgPreo=
|
|
23
|
-
|
|
24
|
-
"@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5":
|
|
25
|
-
version "7.14.5"
|
|
26
|
-
resolved "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.5.tgz?cache=0&sync_timestamp=1623280498934&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.5.tgz#d281f46a9905f07d1b3bf71ead54d9c7d89cb1e3"
|
|
27
|
-
integrity sha1-0oH0apkF8H0bO/cerVTZx9icseM=
|
|
28
|
-
dependencies:
|
|
29
|
-
"@babel/code-frame" "^7.14.5"
|
|
30
|
-
"@babel/generator" "^7.14.5"
|
|
31
|
-
"@babel/helper-compilation-targets" "^7.14.5"
|
|
32
|
-
"@babel/helper-module-transforms" "^7.14.5"
|
|
33
|
-
"@babel/helpers" "^7.14.5"
|
|
34
|
-
"@babel/parser" "^7.14.5"
|
|
35
|
-
"@babel/template" "^7.14.5"
|
|
36
|
-
"@babel/traverse" "^7.14.5"
|
|
37
|
-
"@babel/types" "^7.14.5"
|
|
38
|
-
convert-source-map "^1.7.0"
|
|
39
|
-
debug "^4.1.0"
|
|
40
|
-
gensync "^1.0.0-beta.2"
|
|
41
|
-
json5 "^2.1.2"
|
|
42
|
-
semver "^6.3.0"
|
|
43
|
-
source-map "^0.5.0"
|
|
44
|
-
|
|
45
|
-
"@babel/generator@^7.14.5", "@babel/generator@^7.7.2":
|
|
46
|
-
version "7.14.5"
|
|
47
|
-
resolved "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.5.tgz#848d7b9f031caca9d0cd0af01b063f226f52d785"
|
|
48
|
-
integrity sha1-hI17nwMcrKnQzQrwGwY/Im9S14U=
|
|
49
|
-
dependencies:
|
|
50
|
-
"@babel/types" "^7.14.5"
|
|
51
|
-
jsesc "^2.5.1"
|
|
52
|
-
source-map "^0.5.0"
|
|
53
|
-
|
|
54
|
-
"@babel/helper-compilation-targets@^7.14.5":
|
|
55
|
-
version "7.14.5"
|
|
56
|
-
resolved "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.14.5.tgz?cache=0&sync_timestamp=1623280417606&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.14.5.tgz#7a99c5d0967911e972fe2c3411f7d5b498498ecf"
|
|
57
|
-
integrity sha1-epnF0JZ5Eely/iw0EffVtJhJjs8=
|
|
58
|
-
dependencies:
|
|
59
|
-
"@babel/compat-data" "^7.14.5"
|
|
60
|
-
"@babel/helper-validator-option" "^7.14.5"
|
|
61
|
-
browserslist "^4.16.6"
|
|
62
|
-
semver "^6.3.0"
|
|
63
|
-
|
|
64
|
-
"@babel/helper-function-name@^7.14.5":
|
|
65
|
-
version "7.14.5"
|
|
66
|
-
resolved "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623280385237&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4"
|
|
67
|
-
integrity sha1-ieLEdJcvFdjiM7Uu6MSA4s/NUMQ=
|
|
68
|
-
dependencies:
|
|
69
|
-
"@babel/helper-get-function-arity" "^7.14.5"
|
|
70
|
-
"@babel/template" "^7.14.5"
|
|
71
|
-
"@babel/types" "^7.14.5"
|
|
72
|
-
|
|
73
|
-
"@babel/helper-get-function-arity@^7.14.5":
|
|
74
|
-
version "7.14.5"
|
|
75
|
-
resolved "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815"
|
|
76
|
-
integrity sha1-Jfv6V5sJN+7h87gF7OTOOYxDGBU=
|
|
77
|
-
dependencies:
|
|
78
|
-
"@babel/types" "^7.14.5"
|
|
79
|
-
|
|
80
|
-
"@babel/helper-hoist-variables@^7.14.5":
|
|
81
|
-
version "7.14.5"
|
|
82
|
-
resolved "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"
|
|
83
|
-
integrity sha1-4N0nwzp45XfXyIhJFqPn7x98f40=
|
|
84
|
-
dependencies:
|
|
85
|
-
"@babel/types" "^7.14.5"
|
|
86
|
-
|
|
87
|
-
"@babel/helper-member-expression-to-functions@^7.14.5":
|
|
88
|
-
version "7.14.5"
|
|
89
|
-
resolved "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.14.5.tgz#d5c70e4ad13b402c95156c7a53568f504e2fb7b8"
|
|
90
|
-
integrity sha1-1ccOStE7QCyVFWx6U1aPUE4vt7g=
|
|
91
|
-
dependencies:
|
|
92
|
-
"@babel/types" "^7.14.5"
|
|
93
|
-
|
|
94
|
-
"@babel/helper-module-imports@^7.14.5":
|
|
95
|
-
version "7.14.5"
|
|
96
|
-
resolved "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.14.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3"
|
|
97
|
-
integrity sha1-bRpE32o4yVeqfDEtoHZCnxG0IvM=
|
|
98
|
-
dependencies:
|
|
99
|
-
"@babel/types" "^7.14.5"
|
|
100
|
-
|
|
101
|
-
"@babel/helper-module-transforms@^7.14.5":
|
|
102
|
-
version "7.14.5"
|
|
103
|
-
resolved "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.5.tgz?cache=0&sync_timestamp=1623280405923&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.5.tgz#7de42f10d789b423eb902ebd24031ca77cb1e10e"
|
|
104
|
-
integrity sha1-feQvENeJtCPrkC69JAMcp3yx4Q4=
|
|
105
|
-
dependencies:
|
|
106
|
-
"@babel/helper-module-imports" "^7.14.5"
|
|
107
|
-
"@babel/helper-replace-supers" "^7.14.5"
|
|
108
|
-
"@babel/helper-simple-access" "^7.14.5"
|
|
109
|
-
"@babel/helper-split-export-declaration" "^7.14.5"
|
|
110
|
-
"@babel/helper-validator-identifier" "^7.14.5"
|
|
111
|
-
"@babel/template" "^7.14.5"
|
|
112
|
-
"@babel/traverse" "^7.14.5"
|
|
113
|
-
"@babel/types" "^7.14.5"
|
|
114
|
-
|
|
115
|
-
"@babel/helper-optimise-call-expression@^7.14.5":
|
|
116
|
-
version "7.14.5"
|
|
117
|
-
resolved "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c"
|
|
118
|
-
integrity sha1-8nOVqGGeBmWz8DZM3bQcJdcbSZw=
|
|
119
|
-
dependencies:
|
|
120
|
-
"@babel/types" "^7.14.5"
|
|
121
|
-
|
|
122
|
-
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0":
|
|
123
|
-
version "7.14.5"
|
|
124
|
-
resolved "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz?cache=0&sync_timestamp=1623280296194&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
|
|
125
|
-
integrity sha1-WsgizpfuxGdBq3ClF5ceRDpwxak=
|
|
126
|
-
|
|
127
|
-
"@babel/helper-replace-supers@^7.14.5":
|
|
128
|
-
version "7.14.5"
|
|
129
|
-
resolved "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.14.5.tgz?cache=0&sync_timestamp=1623280401049&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.14.5.tgz#0ecc0b03c41cd567b4024ea016134c28414abb94"
|
|
130
|
-
integrity sha1-DswLA8Qc1We0Ak6gFhNMKEFKu5Q=
|
|
131
|
-
dependencies:
|
|
132
|
-
"@babel/helper-member-expression-to-functions" "^7.14.5"
|
|
133
|
-
"@babel/helper-optimise-call-expression" "^7.14.5"
|
|
134
|
-
"@babel/traverse" "^7.14.5"
|
|
135
|
-
"@babel/types" "^7.14.5"
|
|
136
|
-
|
|
137
|
-
"@babel/helper-simple-access@^7.14.5":
|
|
138
|
-
version "7.14.5"
|
|
139
|
-
resolved "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.14.5.tgz#66ea85cf53ba0b4e588ba77fc813f53abcaa41c4"
|
|
140
|
-
integrity sha1-ZuqFz1O6C05Yi6d/yBP1OryqQcQ=
|
|
141
|
-
dependencies:
|
|
142
|
-
"@babel/types" "^7.14.5"
|
|
143
|
-
|
|
144
|
-
"@babel/helper-split-export-declaration@^7.14.5":
|
|
145
|
-
version "7.14.5"
|
|
146
|
-
resolved "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a"
|
|
147
|
-
integrity sha1-IrI6VO9RwrdgXYUZMMGXbdC8aTo=
|
|
148
|
-
dependencies:
|
|
149
|
-
"@babel/types" "^7.14.5"
|
|
150
|
-
|
|
151
|
-
"@babel/helper-validator-identifier@^7.14.5":
|
|
152
|
-
version "7.14.5"
|
|
153
|
-
resolved "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.5.tgz?cache=0&sync_timestamp=1623280305128&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8"
|
|
154
|
-
integrity sha1-0PDid8US4Mk4J3+qhaOWjJpEwOg=
|
|
155
|
-
|
|
156
|
-
"@babel/helper-validator-option@^7.14.5":
|
|
157
|
-
version "7.14.5"
|
|
158
|
-
resolved "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz?cache=0&sync_timestamp=1623280304150&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
|
|
159
|
-
integrity sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=
|
|
160
|
-
|
|
161
|
-
"@babel/helpers@^7.14.5":
|
|
162
|
-
version "7.14.5"
|
|
163
|
-
resolved "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.5.tgz?cache=0&sync_timestamp=1623280401008&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.5.tgz#4870f8d9a6fdbbd65e5674a3558b4ff7fef0d9b2"
|
|
164
|
-
integrity sha1-SHD42ab9u9ZeVnSjVYtP9/7w2bI=
|
|
165
|
-
dependencies:
|
|
166
|
-
"@babel/template" "^7.14.5"
|
|
167
|
-
"@babel/traverse" "^7.14.5"
|
|
168
|
-
"@babel/types" "^7.14.5"
|
|
169
|
-
|
|
170
|
-
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
|
|
171
|
-
version "7.14.5"
|
|
172
|
-
resolved "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9"
|
|
173
|
-
integrity sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk=
|
|
174
|
-
dependencies:
|
|
175
|
-
"@babel/helper-validator-identifier" "^7.14.5"
|
|
176
|
-
chalk "^2.0.0"
|
|
177
|
-
js-tokens "^4.0.0"
|
|
178
|
-
|
|
179
|
-
"@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.7.2":
|
|
180
|
-
version "7.14.5"
|
|
181
|
-
resolved "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.5.tgz?cache=0&sync_timestamp=1623280296042&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.5.tgz#4cd2f346261061b2518873ffecdf1612cb032829"
|
|
182
|
-
integrity sha1-TNLzRiYQYbJRiHP/7N8WEssDKCk=
|
|
183
|
-
|
|
184
|
-
"@babel/plugin-syntax-async-generators@^7.8.4":
|
|
185
|
-
version "7.8.4"
|
|
186
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
|
187
|
-
integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=
|
|
188
|
-
dependencies:
|
|
189
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
190
|
-
|
|
191
|
-
"@babel/plugin-syntax-bigint@^7.8.3":
|
|
192
|
-
version "7.8.3"
|
|
193
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-bigint/download/@babel/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
|
|
194
|
-
integrity sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=
|
|
195
|
-
dependencies:
|
|
196
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
197
|
-
|
|
198
|
-
"@babel/plugin-syntax-class-properties@^7.8.3":
|
|
199
|
-
version "7.12.13"
|
|
200
|
-
resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-class-properties%2Fdownload%2F%40babel%2Fplugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
|
|
201
|
-
integrity sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=
|
|
202
|
-
dependencies:
|
|
203
|
-
"@babel/helper-plugin-utils" "^7.12.13"
|
|
204
|
-
|
|
205
|
-
"@babel/plugin-syntax-import-meta@^7.8.3":
|
|
206
|
-
version "7.10.4"
|
|
207
|
-
resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
|
|
208
|
-
integrity sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=
|
|
209
|
-
dependencies:
|
|
210
|
-
"@babel/helper-plugin-utils" "^7.10.4"
|
|
211
|
-
|
|
212
|
-
"@babel/plugin-syntax-json-strings@^7.8.3":
|
|
213
|
-
version "7.8.3"
|
|
214
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-json-strings/download/@babel/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
|
215
|
-
integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=
|
|
216
|
-
dependencies:
|
|
217
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
218
|
-
|
|
219
|
-
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
|
|
220
|
-
version "7.10.4"
|
|
221
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-logical-assignment-operators/download/@babel/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
|
|
222
|
-
integrity sha1-ypHvRjA1MESLkGZSusLp/plB9pk=
|
|
223
|
-
dependencies:
|
|
224
|
-
"@babel/helper-plugin-utils" "^7.10.4"
|
|
225
|
-
|
|
226
|
-
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
|
|
227
|
-
version "7.8.3"
|
|
228
|
-
resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-nullish-coalescing-operator/download/@babel/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
|
229
|
-
integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=
|
|
230
|
-
dependencies:
|
|
231
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
232
|
-
|
|
233
|
-
"@babel/plugin-syntax-numeric-separator@^7.8.3":
|
|
234
|
-
version "7.10.4"
|
|
235
|
-
resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-numeric-separator/download/@babel/plugin-syntax-numeric-separator-7.10.4.tgz?cache=0&sync_timestamp=1593522054358&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-numeric-separator%2Fdownload%2F%40babel%2Fplugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
|
|
236
|
-
integrity sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=
|
|
237
|
-
dependencies:
|
|
238
|
-
"@babel/helper-plugin-utils" "^7.10.4"
|
|
239
|
-
|
|
240
|
-
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
|
|
241
|
-
version "7.8.3"
|
|
242
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-object-rest-spread/download/@babel/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
|
243
|
-
integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=
|
|
244
|
-
dependencies:
|
|
245
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
246
|
-
|
|
247
|
-
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
|
|
248
|
-
version "7.8.3"
|
|
249
|
-
resolved "https://registry.npm.taobao.org/@babel/plugin-syntax-optional-catch-binding/download/@babel/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
|
250
|
-
integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=
|
|
251
|
-
dependencies:
|
|
252
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
253
|
-
|
|
254
|
-
"@babel/plugin-syntax-optional-chaining@^7.8.3":
|
|
255
|
-
version "7.8.3"
|
|
256
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-optional-chaining/download/@babel/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
|
257
|
-
integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=
|
|
258
|
-
dependencies:
|
|
259
|
-
"@babel/helper-plugin-utils" "^7.8.0"
|
|
260
|
-
|
|
261
|
-
"@babel/plugin-syntax-top-level-await@^7.8.3":
|
|
262
|
-
version "7.14.5"
|
|
263
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz?cache=0&sync_timestamp=1623280427172&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-top-level-await%2Fdownload%2F%40babel%2Fplugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
|
|
264
|
-
integrity sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=
|
|
265
|
-
dependencies:
|
|
266
|
-
"@babel/helper-plugin-utils" "^7.14.5"
|
|
267
|
-
|
|
268
|
-
"@babel/plugin-syntax-typescript@^7.7.2":
|
|
269
|
-
version "7.14.5"
|
|
270
|
-
resolved "https://registry.nlark.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.14.5.tgz?cache=0&sync_timestamp=1623281252012&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-syntax-typescript%2Fdownload%2F%40babel%2Fplugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716"
|
|
271
|
-
integrity sha1-uCxs5HGxZbXOQgz5KRTW+0YiVxY=
|
|
272
|
-
dependencies:
|
|
273
|
-
"@babel/helper-plugin-utils" "^7.14.5"
|
|
274
|
-
|
|
275
|
-
"@babel/template@^7.14.5", "@babel/template@^7.3.3":
|
|
276
|
-
version "7.14.5"
|
|
277
|
-
resolved "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623280386138&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4"
|
|
278
|
-
integrity sha1-qbydizM1T/blWpxg0RCSAKaJdPQ=
|
|
279
|
-
dependencies:
|
|
280
|
-
"@babel/code-frame" "^7.14.5"
|
|
281
|
-
"@babel/parser" "^7.14.5"
|
|
282
|
-
"@babel/types" "^7.14.5"
|
|
283
|
-
|
|
284
|
-
"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.7.2":
|
|
285
|
-
version "7.14.5"
|
|
286
|
-
resolved "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.5.tgz?cache=0&sync_timestamp=1623280395969&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.5.tgz#c111b0f58afab4fea3d3385a406f692748c59870"
|
|
287
|
-
integrity sha1-wRGw9Yr6tP6j0zhaQG9pJ0jFmHA=
|
|
288
|
-
dependencies:
|
|
289
|
-
"@babel/code-frame" "^7.14.5"
|
|
290
|
-
"@babel/generator" "^7.14.5"
|
|
291
|
-
"@babel/helper-function-name" "^7.14.5"
|
|
292
|
-
"@babel/helper-hoist-variables" "^7.14.5"
|
|
293
|
-
"@babel/helper-split-export-declaration" "^7.14.5"
|
|
294
|
-
"@babel/parser" "^7.14.5"
|
|
295
|
-
"@babel/types" "^7.14.5"
|
|
296
|
-
debug "^4.1.0"
|
|
297
|
-
globals "^11.1.0"
|
|
298
|
-
|
|
299
|
-
"@babel/types@^7.0.0", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
|
|
300
|
-
version "7.14.5"
|
|
301
|
-
resolved "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.5.tgz#3bb997ba829a2104cedb20689c4a5b8121d383ff"
|
|
302
|
-
integrity sha1-O7mXuoKaIQTO2yBonEpbgSHTg/8=
|
|
303
|
-
dependencies:
|
|
304
|
-
"@babel/helper-validator-identifier" "^7.14.5"
|
|
305
|
-
to-fast-properties "^2.0.0"
|
|
306
|
-
|
|
307
|
-
"@bcoe/v8-coverage@^0.2.3":
|
|
308
|
-
version "0.2.3"
|
|
309
|
-
resolved "https://registry.npm.taobao.org/@bcoe/v8-coverage/download/@bcoe/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
|
|
310
|
-
integrity sha1-daLotRy3WKdVPWgEpZMteqznXDk=
|
|
311
|
-
|
|
312
|
-
"@eslint/eslintrc@^0.4.2":
|
|
313
|
-
version "0.4.2"
|
|
314
|
-
resolved "https://registry.nlark.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.2.tgz?cache=0&sync_timestamp=1622844991204&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40eslint%2Feslintrc%2Fdownload%2F%40eslint%2Feslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179"
|
|
315
|
-
integrity sha1-9j0O8G9cDFfXbEq19j04NcUbAXk=
|
|
316
|
-
dependencies:
|
|
317
|
-
ajv "^6.12.4"
|
|
318
|
-
debug "^4.1.1"
|
|
319
|
-
espree "^7.3.0"
|
|
320
|
-
globals "^13.9.0"
|
|
321
|
-
ignore "^4.0.6"
|
|
322
|
-
import-fresh "^3.2.1"
|
|
323
|
-
js-yaml "^3.13.1"
|
|
324
|
-
minimatch "^3.0.4"
|
|
325
|
-
strip-json-comments "^3.1.1"
|
|
326
|
-
|
|
327
|
-
"@istanbuljs/load-nyc-config@^1.0.0":
|
|
328
|
-
version "1.1.0"
|
|
329
|
-
resolved "https://registry.nlark.com/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
|
|
330
|
-
integrity sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0=
|
|
331
|
-
dependencies:
|
|
332
|
-
camelcase "^5.3.1"
|
|
333
|
-
find-up "^4.1.0"
|
|
334
|
-
get-package-type "^0.1.0"
|
|
335
|
-
js-yaml "^3.13.1"
|
|
336
|
-
resolve-from "^5.0.0"
|
|
337
|
-
|
|
338
|
-
"@istanbuljs/schema@^0.1.2":
|
|
339
|
-
version "0.1.3"
|
|
340
|
-
resolved "https://registry.nlark.com/@istanbuljs/schema/download/@istanbuljs/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
|
|
341
|
-
integrity sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg=
|
|
342
|
-
|
|
343
|
-
"@jest/console@^27.0.2":
|
|
344
|
-
version "27.0.2"
|
|
345
|
-
resolved "https://registry.nlark.com/@jest/console/download/@jest/console-27.0.2.tgz?cache=0&sync_timestamp=1622290305708&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fconsole%2Fdownload%2F%40jest%2Fconsole-27.0.2.tgz#b8eeff8f21ac51d224c851e1729d2630c18631e6"
|
|
346
|
-
integrity sha1-uO7/jyGsUdIkyFHhcp0mMMGGMeY=
|
|
347
|
-
dependencies:
|
|
348
|
-
"@jest/types" "^27.0.2"
|
|
349
|
-
"@types/node" "*"
|
|
350
|
-
chalk "^4.0.0"
|
|
351
|
-
jest-message-util "^27.0.2"
|
|
352
|
-
jest-util "^27.0.2"
|
|
353
|
-
slash "^3.0.0"
|
|
354
|
-
|
|
355
|
-
"@jest/core@^27.0.4":
|
|
356
|
-
version "27.0.4"
|
|
357
|
-
resolved "https://registry.nlark.com/@jest/core/download/@jest/core-27.0.4.tgz?cache=0&sync_timestamp=1622709598023&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fcore%2Fdownload%2F%40jest%2Fcore-27.0.4.tgz#679bf9ac07900da2ddbb9667bb1afa8029038f53"
|
|
358
|
-
integrity sha1-Z5v5rAeQDaLdu5Znuxr6gCkDj1M=
|
|
359
|
-
dependencies:
|
|
360
|
-
"@jest/console" "^27.0.2"
|
|
361
|
-
"@jest/reporters" "^27.0.4"
|
|
362
|
-
"@jest/test-result" "^27.0.2"
|
|
363
|
-
"@jest/transform" "^27.0.2"
|
|
364
|
-
"@jest/types" "^27.0.2"
|
|
365
|
-
"@types/node" "*"
|
|
366
|
-
ansi-escapes "^4.2.1"
|
|
367
|
-
chalk "^4.0.0"
|
|
368
|
-
emittery "^0.8.1"
|
|
369
|
-
exit "^0.1.2"
|
|
370
|
-
graceful-fs "^4.2.4"
|
|
371
|
-
jest-changed-files "^27.0.2"
|
|
372
|
-
jest-config "^27.0.4"
|
|
373
|
-
jest-haste-map "^27.0.2"
|
|
374
|
-
jest-message-util "^27.0.2"
|
|
375
|
-
jest-regex-util "^27.0.1"
|
|
376
|
-
jest-resolve "^27.0.4"
|
|
377
|
-
jest-resolve-dependencies "^27.0.4"
|
|
378
|
-
jest-runner "^27.0.4"
|
|
379
|
-
jest-runtime "^27.0.4"
|
|
380
|
-
jest-snapshot "^27.0.4"
|
|
381
|
-
jest-util "^27.0.2"
|
|
382
|
-
jest-validate "^27.0.2"
|
|
383
|
-
jest-watcher "^27.0.2"
|
|
384
|
-
micromatch "^4.0.4"
|
|
385
|
-
p-each-series "^2.1.0"
|
|
386
|
-
rimraf "^3.0.0"
|
|
387
|
-
slash "^3.0.0"
|
|
388
|
-
strip-ansi "^6.0.0"
|
|
389
|
-
|
|
390
|
-
"@jest/environment@^27.0.3":
|
|
391
|
-
version "27.0.3"
|
|
392
|
-
resolved "https://registry.nlark.com/@jest/environment/download/@jest/environment-27.0.3.tgz?cache=0&sync_timestamp=1622310962664&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fenvironment%2Fdownload%2F%40jest%2Fenvironment-27.0.3.tgz#68769b1dfdd213e3456169d64fbe9bd63a5fda92"
|
|
393
|
-
integrity sha1-aHabHf3SE+NFYWnWT76b1jpf2pI=
|
|
394
|
-
dependencies:
|
|
395
|
-
"@jest/fake-timers" "^27.0.3"
|
|
396
|
-
"@jest/types" "^27.0.2"
|
|
397
|
-
"@types/node" "*"
|
|
398
|
-
jest-mock "^27.0.3"
|
|
399
|
-
|
|
400
|
-
"@jest/fake-timers@^27.0.3":
|
|
401
|
-
version "27.0.3"
|
|
402
|
-
resolved "https://registry.nlark.com/@jest/fake-timers/download/@jest/fake-timers-27.0.3.tgz#9899ba6304cc636734c74478df502e18136461dd"
|
|
403
|
-
integrity sha1-mJm6YwTMY2c0x0R431AuGBNkYd0=
|
|
404
|
-
dependencies:
|
|
405
|
-
"@jest/types" "^27.0.2"
|
|
406
|
-
"@sinonjs/fake-timers" "^7.0.2"
|
|
407
|
-
"@types/node" "*"
|
|
408
|
-
jest-message-util "^27.0.2"
|
|
409
|
-
jest-mock "^27.0.3"
|
|
410
|
-
jest-util "^27.0.2"
|
|
411
|
-
|
|
412
|
-
"@jest/globals@^27.0.3":
|
|
413
|
-
version "27.0.3"
|
|
414
|
-
resolved "https://registry.nlark.com/@jest/globals/download/@jest/globals-27.0.3.tgz?cache=0&sync_timestamp=1622310844365&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fglobals%2Fdownload%2F%40jest%2Fglobals-27.0.3.tgz#1cf8933b7791bba0b99305cbf39fd4d2e3fe4060"
|
|
415
|
-
integrity sha1-HPiTO3eRu6C5kwXL85/U0uP+QGA=
|
|
416
|
-
dependencies:
|
|
417
|
-
"@jest/environment" "^27.0.3"
|
|
418
|
-
"@jest/types" "^27.0.2"
|
|
419
|
-
expect "^27.0.2"
|
|
420
|
-
|
|
421
|
-
"@jest/reporters@^27.0.4":
|
|
422
|
-
version "27.0.4"
|
|
423
|
-
resolved "https://registry.nlark.com/@jest/reporters/download/@jest/reporters-27.0.4.tgz#95609b1be97afb80d55d8aa3d7c3179c15810e65"
|
|
424
|
-
integrity sha1-lWCbG+l6+4DVXYqj18MXnBWBDmU=
|
|
425
|
-
dependencies:
|
|
426
|
-
"@bcoe/v8-coverage" "^0.2.3"
|
|
427
|
-
"@jest/console" "^27.0.2"
|
|
428
|
-
"@jest/test-result" "^27.0.2"
|
|
429
|
-
"@jest/transform" "^27.0.2"
|
|
430
|
-
"@jest/types" "^27.0.2"
|
|
431
|
-
chalk "^4.0.0"
|
|
432
|
-
collect-v8-coverage "^1.0.0"
|
|
433
|
-
exit "^0.1.2"
|
|
434
|
-
glob "^7.1.2"
|
|
435
|
-
graceful-fs "^4.2.4"
|
|
436
|
-
istanbul-lib-coverage "^3.0.0"
|
|
437
|
-
istanbul-lib-instrument "^4.0.3"
|
|
438
|
-
istanbul-lib-report "^3.0.0"
|
|
439
|
-
istanbul-lib-source-maps "^4.0.0"
|
|
440
|
-
istanbul-reports "^3.0.2"
|
|
441
|
-
jest-haste-map "^27.0.2"
|
|
442
|
-
jest-resolve "^27.0.4"
|
|
443
|
-
jest-util "^27.0.2"
|
|
444
|
-
jest-worker "^27.0.2"
|
|
445
|
-
slash "^3.0.0"
|
|
446
|
-
source-map "^0.6.0"
|
|
447
|
-
string-length "^4.0.1"
|
|
448
|
-
terminal-link "^2.0.0"
|
|
449
|
-
v8-to-istanbul "^7.0.0"
|
|
450
|
-
|
|
451
|
-
"@jest/source-map@^27.0.1":
|
|
452
|
-
version "27.0.1"
|
|
453
|
-
resolved "https://registry.nlark.com/@jest/source-map/download/@jest/source-map-27.0.1.tgz?cache=0&sync_timestamp=1621937308635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Fsource-map%2Fdownload%2F%40jest%2Fsource-map-27.0.1.tgz#2afbf73ddbaddcb920a8e62d0238a0a9e0a8d3e4"
|
|
454
|
-
integrity sha1-Kvv3Pdut3LkgqOYtAjigqeCo0+Q=
|
|
455
|
-
dependencies:
|
|
456
|
-
callsites "^3.0.0"
|
|
457
|
-
graceful-fs "^4.2.4"
|
|
458
|
-
source-map "^0.6.0"
|
|
459
|
-
|
|
460
|
-
"@jest/test-result@^27.0.2":
|
|
461
|
-
version "27.0.2"
|
|
462
|
-
resolved "https://registry.nlark.com/@jest/test-result/download/@jest/test-result-27.0.2.tgz?cache=0&sync_timestamp=1622290306085&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-result%2Fdownload%2F%40jest%2Ftest-result-27.0.2.tgz#0451049e32ceb609b636004ccc27c8fa22263f10"
|
|
463
|
-
integrity sha1-BFEEnjLOtgm2NgBMzCfI+iImPxA=
|
|
464
|
-
dependencies:
|
|
465
|
-
"@jest/console" "^27.0.2"
|
|
466
|
-
"@jest/types" "^27.0.2"
|
|
467
|
-
"@types/istanbul-lib-coverage" "^2.0.0"
|
|
468
|
-
collect-v8-coverage "^1.0.0"
|
|
469
|
-
|
|
470
|
-
"@jest/test-sequencer@^27.0.4":
|
|
471
|
-
version "27.0.4"
|
|
472
|
-
resolved "https://registry.nlark.com/@jest/test-sequencer/download/@jest/test-sequencer-27.0.4.tgz?cache=0&sync_timestamp=1622709648926&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40jest%2Ftest-sequencer%2Fdownload%2F%40jest%2Ftest-sequencer-27.0.4.tgz#976493b277594d81e589896f0ed21f198308928a"
|
|
473
|
-
integrity sha1-l2STsndZTYHliYlvDtIfGYMIkoo=
|
|
474
|
-
dependencies:
|
|
475
|
-
"@jest/test-result" "^27.0.2"
|
|
476
|
-
graceful-fs "^4.2.4"
|
|
477
|
-
jest-haste-map "^27.0.2"
|
|
478
|
-
jest-runtime "^27.0.4"
|
|
479
|
-
|
|
480
|
-
"@jest/transform@^27.0.2":
|
|
481
|
-
version "27.0.2"
|
|
482
|
-
resolved "https://registry.nlark.com/@jest/transform/download/@jest/transform-27.0.2.tgz#b073b7c589e3f4b842102468875def2bb722d6b5"
|
|
483
|
-
integrity sha1-sHO3xYnj9LhCECRoh13vK7ci1rU=
|
|
484
|
-
dependencies:
|
|
485
|
-
"@babel/core" "^7.1.0"
|
|
486
|
-
"@jest/types" "^27.0.2"
|
|
487
|
-
babel-plugin-istanbul "^6.0.0"
|
|
488
|
-
chalk "^4.0.0"
|
|
489
|
-
convert-source-map "^1.4.0"
|
|
490
|
-
fast-json-stable-stringify "^2.0.0"
|
|
491
|
-
graceful-fs "^4.2.4"
|
|
492
|
-
jest-haste-map "^27.0.2"
|
|
493
|
-
jest-regex-util "^27.0.1"
|
|
494
|
-
jest-util "^27.0.2"
|
|
495
|
-
micromatch "^4.0.4"
|
|
496
|
-
pirates "^4.0.1"
|
|
497
|
-
slash "^3.0.0"
|
|
498
|
-
source-map "^0.6.1"
|
|
499
|
-
write-file-atomic "^3.0.0"
|
|
500
|
-
|
|
501
|
-
"@jest/types@^26.6.2":
|
|
502
|
-
version "26.6.2"
|
|
503
|
-
resolved "https://registry.nlark.com/@jest/types/download/@jest/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e"
|
|
504
|
-
integrity sha1-vvWlMgMOHYii9abZM/hOlyJu1I4=
|
|
505
|
-
dependencies:
|
|
506
|
-
"@types/istanbul-lib-coverage" "^2.0.0"
|
|
507
|
-
"@types/istanbul-reports" "^3.0.0"
|
|
508
|
-
"@types/node" "*"
|
|
509
|
-
"@types/yargs" "^15.0.0"
|
|
510
|
-
chalk "^4.0.0"
|
|
511
|
-
|
|
512
|
-
"@jest/types@^27.0.2":
|
|
513
|
-
version "27.0.2"
|
|
514
|
-
resolved "https://registry.nlark.com/@jest/types/download/@jest/types-27.0.2.tgz#e153d6c46bda0f2589f0702b071f9898c7bbd37e"
|
|
515
|
-
integrity sha1-4VPWxGvaDyWJ8HArBx+YmMe7034=
|
|
516
|
-
dependencies:
|
|
517
|
-
"@types/istanbul-lib-coverage" "^2.0.0"
|
|
518
|
-
"@types/istanbul-reports" "^3.0.0"
|
|
519
|
-
"@types/node" "*"
|
|
520
|
-
"@types/yargs" "^16.0.0"
|
|
521
|
-
chalk "^4.0.0"
|
|
522
|
-
|
|
523
|
-
"@nodelib/fs.scandir@2.1.5":
|
|
524
|
-
version "2.1.5"
|
|
525
|
-
resolved "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz?cache=0&sync_timestamp=1622792738877&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.scandir%2Fdownload%2F%40nodelib%2Ffs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
|
|
526
|
-
integrity sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=
|
|
527
|
-
dependencies:
|
|
528
|
-
"@nodelib/fs.stat" "2.0.5"
|
|
529
|
-
run-parallel "^1.1.9"
|
|
530
|
-
|
|
531
|
-
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
|
|
532
|
-
version "2.0.5"
|
|
533
|
-
resolved "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz?cache=0&sync_timestamp=1622792616417&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
|
|
534
|
-
integrity sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=
|
|
535
|
-
|
|
536
|
-
"@nodelib/fs.walk@^1.2.3":
|
|
537
|
-
version "1.2.7"
|
|
538
|
-
resolved "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.7.tgz#94c23db18ee4653e129abd26fb06f870ac9e1ee2"
|
|
539
|
-
integrity sha1-lMI9sY7kZT4Smr0m+wb4cKyeHuI=
|
|
540
|
-
dependencies:
|
|
541
|
-
"@nodelib/fs.scandir" "2.1.5"
|
|
542
|
-
fastq "^1.6.0"
|
|
543
|
-
|
|
544
|
-
"@sindresorhus/is@^0.14.0":
|
|
545
|
-
version "0.14.0"
|
|
546
|
-
resolved "https://registry.nlark.com/@sindresorhus/is/download/@sindresorhus/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
|
|
547
|
-
integrity sha1-n7OjzzEyMoFR81PeRjLgHlIQK+o=
|
|
548
|
-
|
|
549
|
-
"@sinonjs/commons@^1.7.0":
|
|
550
|
-
version "1.8.3"
|
|
551
|
-
resolved "https://registry.nlark.com/@sinonjs/commons/download/@sinonjs/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d"
|
|
552
|
-
integrity sha1-OALd0hpQqUm2ch3dcto25n5/Gy0=
|
|
553
|
-
dependencies:
|
|
554
|
-
type-detect "4.0.8"
|
|
555
|
-
|
|
556
|
-
"@sinonjs/fake-timers@^7.0.2":
|
|
557
|
-
version "7.1.2"
|
|
558
|
-
resolved "https://registry.nlark.com/@sinonjs/fake-timers/download/@sinonjs/fake-timers-7.1.2.tgz?cache=0&sync_timestamp=1622212444306&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40sinonjs%2Ffake-timers%2Fdownload%2F%40sinonjs%2Ffake-timers-7.1.2.tgz#2524eae70c4910edccf99b2f4e6efc5894aff7b5"
|
|
559
|
-
integrity sha1-JSTq5wxJEO3M+ZsvTm78WJSv97U=
|
|
560
|
-
dependencies:
|
|
561
|
-
"@sinonjs/commons" "^1.7.0"
|
|
562
|
-
|
|
563
|
-
"@szmarczak/http-timer@^1.1.2":
|
|
564
|
-
version "1.1.2"
|
|
565
|
-
resolved "https://registry.npm.taobao.org/@szmarczak/http-timer/download/@szmarczak/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421"
|
|
566
|
-
integrity sha1-sWZeLEYaLNkvTBu/UNVFTeDUtCE=
|
|
567
|
-
dependencies:
|
|
568
|
-
defer-to-connect "^1.0.1"
|
|
569
|
-
|
|
570
|
-
"@tootallnate/once@1":
|
|
571
|
-
version "1.1.2"
|
|
572
|
-
resolved "https://registry.npm.taobao.org/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
|
|
573
|
-
integrity sha1-zLkURTYBeaBOf+av94wA/8Hur4I=
|
|
574
|
-
|
|
575
|
-
"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
|
|
576
|
-
version "7.1.14"
|
|
577
|
-
resolved "https://registry.nlark.com/@types/babel__core/download/@types/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402"
|
|
578
|
-
integrity sha1-+q7vxBhexxw4n0UB7l7ISxcMxAI=
|
|
579
|
-
dependencies:
|
|
580
|
-
"@babel/parser" "^7.1.0"
|
|
581
|
-
"@babel/types" "^7.0.0"
|
|
582
|
-
"@types/babel__generator" "*"
|
|
583
|
-
"@types/babel__template" "*"
|
|
584
|
-
"@types/babel__traverse" "*"
|
|
585
|
-
|
|
586
|
-
"@types/babel__generator@*":
|
|
587
|
-
version "7.6.2"
|
|
588
|
-
resolved "https://registry.nlark.com/@types/babel__generator/download/@types/babel__generator-7.6.2.tgz?cache=0&sync_timestamp=1621240665670&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__generator%2Fdownload%2F%40types%2Fbabel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8"
|
|
589
|
-
integrity sha1-89cReOGHhY98ReMDgPjxt0FaEtg=
|
|
590
|
-
dependencies:
|
|
591
|
-
"@babel/types" "^7.0.0"
|
|
592
|
-
|
|
593
|
-
"@types/babel__template@*":
|
|
594
|
-
version "7.4.0"
|
|
595
|
-
resolved "https://registry.nlark.com/@types/babel__template/download/@types/babel__template-7.4.0.tgz#0c888dd70b3ee9eebb6e4f200e809da0076262be"
|
|
596
|
-
integrity sha1-DIiN1ws+6e67bk8gDoCdoAdiYr4=
|
|
597
|
-
dependencies:
|
|
598
|
-
"@babel/parser" "^7.1.0"
|
|
599
|
-
"@babel/types" "^7.0.0"
|
|
600
|
-
|
|
601
|
-
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6":
|
|
602
|
-
version "7.11.1"
|
|
603
|
-
resolved "https://registry.nlark.com/@types/babel__traverse/download/@types/babel__traverse-7.11.1.tgz?cache=0&sync_timestamp=1621240632831&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fbabel__traverse%2Fdownload%2F%40types%2Fbabel__traverse-7.11.1.tgz#654f6c4f67568e24c23b367e947098c6206fa639"
|
|
604
|
-
integrity sha1-ZU9sT2dWjiTCOzZ+lHCYxiBvpjk=
|
|
605
|
-
dependencies:
|
|
606
|
-
"@babel/types" "^7.3.0"
|
|
607
|
-
|
|
608
|
-
"@types/graceful-fs@^4.1.2":
|
|
609
|
-
version "4.1.5"
|
|
610
|
-
resolved "https://registry.nlark.com/@types/graceful-fs/download/@types/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
|
|
611
|
-
integrity sha1-If+6DZjaQ1DbZIkfkqnl2zzbThU=
|
|
612
|
-
dependencies:
|
|
613
|
-
"@types/node" "*"
|
|
614
|
-
|
|
615
|
-
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
|
|
616
|
-
version "2.0.3"
|
|
617
|
-
resolved "https://registry.nlark.com/@types/istanbul-lib-coverage/download/@types/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
|
|
618
|
-
integrity sha1-S6jdtyAiH0MuRDvV+RF/0iz9R2I=
|
|
619
|
-
|
|
620
|
-
"@types/istanbul-lib-report@*":
|
|
621
|
-
version "3.0.0"
|
|
622
|
-
resolved "https://registry.nlark.com/@types/istanbul-lib-report/download/@types/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
|
|
623
|
-
integrity sha1-wUwk8Y6oGQwRjudWK3/5mjZVJoY=
|
|
624
|
-
dependencies:
|
|
625
|
-
"@types/istanbul-lib-coverage" "*"
|
|
626
|
-
|
|
627
|
-
"@types/istanbul-reports@^3.0.0":
|
|
628
|
-
version "3.0.1"
|
|
629
|
-
resolved "https://registry.nlark.com/@types/istanbul-reports/download/@types/istanbul-reports-3.0.1.tgz?cache=0&sync_timestamp=1622582274460&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fistanbul-reports%2Fdownload%2F%40types%2Fistanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
|
|
630
|
-
integrity sha1-kVP+mLuivVZaY63ZQ21vDX+EaP8=
|
|
631
|
-
dependencies:
|
|
632
|
-
"@types/istanbul-lib-report" "*"
|
|
633
|
-
|
|
634
|
-
"@types/jest@^26.0.23":
|
|
635
|
-
version "26.0.23"
|
|
636
|
-
resolved "https://registry.nlark.com/@types/jest/download/@types/jest-26.0.23.tgz#a1b7eab3c503b80451d019efb588ec63522ee4e7"
|
|
637
|
-
integrity sha1-obfqs8UDuARR0BnvtYjsY1Iu5Oc=
|
|
638
|
-
dependencies:
|
|
639
|
-
jest-diff "^26.0.0"
|
|
640
|
-
pretty-format "^26.0.0"
|
|
641
|
-
|
|
642
|
-
"@types/json-schema@^7.0.7":
|
|
643
|
-
version "7.0.7"
|
|
644
|
-
resolved "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
|
|
645
|
-
integrity sha1-mKmTUWyFnrDVxMjwmDF6nqaNua0=
|
|
646
|
-
|
|
647
|
-
"@types/node@*", "@types/node@^15.12.2":
|
|
648
|
-
version "15.12.2"
|
|
649
|
-
resolved "https://registry.nlark.com/@types/node/download/@types/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d"
|
|
650
|
-
integrity sha1-HytCxL5xVv9Kb5FLL7A9BfqE440=
|
|
651
|
-
|
|
652
|
-
"@types/parse-json@^4.0.0":
|
|
653
|
-
version "4.0.0"
|
|
654
|
-
resolved "https://registry.nlark.com/@types/parse-json/download/@types/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
|
655
|
-
integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=
|
|
656
|
-
|
|
657
|
-
"@types/prettier@^2.1.5":
|
|
658
|
-
version "2.3.0"
|
|
659
|
-
resolved "https://registry.nlark.com/@types/prettier/download/@types/prettier-2.3.0.tgz#2e8332cc7363f887d32ec5496b207d26ba8052bb"
|
|
660
|
-
integrity sha1-LoMyzHNj+IfTLsVJayB9JrqAUrs=
|
|
661
|
-
|
|
662
|
-
"@types/stack-utils@^2.0.0":
|
|
663
|
-
version "2.0.0"
|
|
664
|
-
resolved "https://registry.nlark.com/@types/stack-utils/download/@types/stack-utils-2.0.0.tgz#7036640b4e21cc2f259ae826ce843d277dad8cff"
|
|
665
|
-
integrity sha1-cDZkC04hzC8lmugmzoQ9J32tjP8=
|
|
666
|
-
|
|
667
|
-
"@types/yargs-parser@*":
|
|
668
|
-
version "20.2.0"
|
|
669
|
-
resolved "https://registry.nlark.com/@types/yargs-parser/download/@types/yargs-parser-20.2.0.tgz?cache=0&sync_timestamp=1621243984050&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyargs-parser%2Fdownload%2F%40types%2Fyargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9"
|
|
670
|
-
integrity sha1-3T5mmboyN/A0jNCF5GmHgCBIQvk=
|
|
671
|
-
|
|
672
|
-
"@types/yargs@^15.0.0":
|
|
673
|
-
version "15.0.13"
|
|
674
|
-
resolved "https://registry.nlark.com/@types/yargs/download/@types/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc"
|
|
675
|
-
integrity sha1-NPf+yLOJ1/PB/QgCaldj4HLTxtw=
|
|
676
|
-
dependencies:
|
|
677
|
-
"@types/yargs-parser" "*"
|
|
678
|
-
|
|
679
|
-
"@types/yargs@^16.0.0":
|
|
680
|
-
version "16.0.3"
|
|
681
|
-
resolved "https://registry.nlark.com/@types/yargs/download/@types/yargs-16.0.3.tgz#4b6d35bb8e680510a7dc2308518a80ee1ef27e01"
|
|
682
|
-
integrity sha1-S201u45oBRCn3CMIUYqA7h7yfgE=
|
|
683
|
-
dependencies:
|
|
684
|
-
"@types/yargs-parser" "*"
|
|
685
|
-
|
|
686
|
-
"@typescript-eslint/eslint-plugin@^4.26.1":
|
|
687
|
-
version "4.26.1"
|
|
688
|
-
resolved "https://registry.nlark.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.26.1.tgz?cache=0&sync_timestamp=1623546995657&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Feslint-plugin%2Fdownload%2F%40typescript-eslint%2Feslint-plugin-4.26.1.tgz#b9c7313321cb837e2bf8bebe7acc2220659e67d3"
|
|
689
|
-
integrity sha1-uccxMyHLg34r+L6+eswiIGWeZ9M=
|
|
690
|
-
dependencies:
|
|
691
|
-
"@typescript-eslint/experimental-utils" "4.26.1"
|
|
692
|
-
"@typescript-eslint/scope-manager" "4.26.1"
|
|
693
|
-
debug "^4.3.1"
|
|
694
|
-
functional-red-black-tree "^1.0.1"
|
|
695
|
-
lodash "^4.17.21"
|
|
696
|
-
regexpp "^3.1.0"
|
|
697
|
-
semver "^7.3.5"
|
|
698
|
-
tsutils "^3.21.0"
|
|
699
|
-
|
|
700
|
-
"@typescript-eslint/experimental-utils@4.26.1":
|
|
701
|
-
version "4.26.1"
|
|
702
|
-
resolved "https://registry.nlark.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.26.1.tgz?cache=0&sync_timestamp=1623546976638&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fexperimental-utils%2Fdownload%2F%40typescript-eslint%2Fexperimental-utils-4.26.1.tgz#a35980a2390da9232aa206b27f620eab66e94142"
|
|
703
|
-
integrity sha1-o1mAojkNqSMqogayf2IOq2bpQUI=
|
|
704
|
-
dependencies:
|
|
705
|
-
"@types/json-schema" "^7.0.7"
|
|
706
|
-
"@typescript-eslint/scope-manager" "4.26.1"
|
|
707
|
-
"@typescript-eslint/types" "4.26.1"
|
|
708
|
-
"@typescript-eslint/typescript-estree" "4.26.1"
|
|
709
|
-
eslint-scope "^5.1.1"
|
|
710
|
-
eslint-utils "^3.0.0"
|
|
711
|
-
|
|
712
|
-
"@typescript-eslint/parser@^4.26.1":
|
|
713
|
-
version "4.26.1"
|
|
714
|
-
resolved "https://registry.nlark.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.26.1.tgz#cecfdd5eb7a5c13aabce1c1cfd7fbafb5a0f1e8e"
|
|
715
|
-
integrity sha1-zs/dXrelwTqrzhwc/X+6+1oPHo4=
|
|
716
|
-
dependencies:
|
|
717
|
-
"@typescript-eslint/scope-manager" "4.26.1"
|
|
718
|
-
"@typescript-eslint/types" "4.26.1"
|
|
719
|
-
"@typescript-eslint/typescript-estree" "4.26.1"
|
|
720
|
-
debug "^4.3.1"
|
|
721
|
-
|
|
722
|
-
"@typescript-eslint/scope-manager@4.26.1":
|
|
723
|
-
version "4.26.1"
|
|
724
|
-
resolved "https://registry.nlark.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.26.1.tgz?cache=0&sync_timestamp=1623546014406&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fscope-manager%2Fdownload%2F%40typescript-eslint%2Fscope-manager-4.26.1.tgz#075a74a15ff33ee3a7ed33e5fce16ee86689f662"
|
|
725
|
-
integrity sha1-B1p0oV/zPuOn7TPl/OFu6GaJ9mI=
|
|
726
|
-
dependencies:
|
|
727
|
-
"@typescript-eslint/types" "4.26.1"
|
|
728
|
-
"@typescript-eslint/visitor-keys" "4.26.1"
|
|
729
|
-
|
|
730
|
-
"@typescript-eslint/types@4.26.1":
|
|
731
|
-
version "4.26.1"
|
|
732
|
-
resolved "https://registry.nlark.com/@typescript-eslint/types/download/@typescript-eslint/types-4.26.1.tgz?cache=0&sync_timestamp=1623546977152&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.26.1.tgz#9e7c523f73c34b04a765e4167ca5650436ef1d38"
|
|
733
|
-
integrity sha1-nnxSP3PDSwSnZeQWfKVlBDbvHTg=
|
|
734
|
-
|
|
735
|
-
"@typescript-eslint/typescript-estree@4.26.1":
|
|
736
|
-
version "4.26.1"
|
|
737
|
-
resolved "https://registry.nlark.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.26.1.tgz?cache=0&sync_timestamp=1623546000995&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypescript-estree%2Fdownload%2F%40typescript-eslint%2Ftypescript-estree-4.26.1.tgz#b2ce2e789233d62283fae2c16baabd4f1dbc9633"
|
|
738
|
-
integrity sha1-ss4ueJIz1iKD+uLBa6q9Tx28ljM=
|
|
739
|
-
dependencies:
|
|
740
|
-
"@typescript-eslint/types" "4.26.1"
|
|
741
|
-
"@typescript-eslint/visitor-keys" "4.26.1"
|
|
742
|
-
debug "^4.3.1"
|
|
743
|
-
globby "^11.0.3"
|
|
744
|
-
is-glob "^4.0.1"
|
|
745
|
-
semver "^7.3.5"
|
|
746
|
-
tsutils "^3.21.0"
|
|
747
|
-
|
|
748
|
-
"@typescript-eslint/visitor-keys@4.26.1":
|
|
749
|
-
version "4.26.1"
|
|
750
|
-
resolved "https://registry.nlark.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.26.1.tgz#0d55ea735cb0d8903b198017d6d4f518fdaac546"
|
|
751
|
-
integrity sha1-DVXqc1yw2JA7GYAX1tT1GP2qxUY=
|
|
752
|
-
dependencies:
|
|
753
|
-
"@typescript-eslint/types" "4.26.1"
|
|
754
|
-
eslint-visitor-keys "^2.0.0"
|
|
755
|
-
|
|
756
|
-
abab@^2.0.3, abab@^2.0.5:
|
|
757
|
-
version "2.0.5"
|
|
758
|
-
resolved "https://registry.npm.taobao.org/abab/download/abab-2.0.5.tgz?cache=0&sync_timestamp=1599850271460&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fabab%2Fdownload%2Fabab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
|
|
759
|
-
integrity sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o=
|
|
760
|
-
|
|
761
|
-
abbrev@1:
|
|
762
|
-
version "1.1.1"
|
|
763
|
-
resolved "https://registry.npm.taobao.org/abbrev/download/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
|
764
|
-
integrity sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=
|
|
765
|
-
|
|
766
|
-
acorn-globals@^6.0.0:
|
|
767
|
-
version "6.0.0"
|
|
768
|
-
resolved "https://registry.npm.taobao.org/acorn-globals/download/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
|
|
769
|
-
integrity sha1-Rs3Tnw+P8IqHZhm1X1rIptx3C0U=
|
|
770
|
-
dependencies:
|
|
771
|
-
acorn "^7.1.1"
|
|
772
|
-
acorn-walk "^7.1.1"
|
|
773
|
-
|
|
774
|
-
acorn-jsx@^5.3.1:
|
|
775
|
-
version "5.3.1"
|
|
776
|
-
resolved "https://registry.npm.taobao.org/acorn-jsx/download/acorn-jsx-5.3.1.tgz?cache=0&sync_timestamp=1599546317194&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn-jsx%2Fdownload%2Facorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
|
|
777
|
-
integrity sha1-/IZh4Rt6wVOcR9v+oucrOvNNJns=
|
|
778
|
-
|
|
779
|
-
acorn-walk@^7.1.1:
|
|
780
|
-
version "7.2.0"
|
|
781
|
-
resolved "https://registry.nlark.com/acorn-walk/download/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
|
|
782
|
-
integrity sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=
|
|
783
|
-
|
|
784
|
-
acorn@^7.1.1, acorn@^7.4.0:
|
|
785
|
-
version "7.4.1"
|
|
786
|
-
resolved "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
|
787
|
-
integrity sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=
|
|
788
|
-
|
|
789
|
-
acorn@^8.2.4:
|
|
790
|
-
version "8.4.0"
|
|
791
|
-
resolved "https://registry.nlark.com/acorn/download/acorn-8.4.0.tgz#af53266e698d7cffa416714b503066a82221be60"
|
|
792
|
-
integrity sha1-r1MmbmmNfP+kFnFLUDBmqCIhvmA=
|
|
793
|
-
|
|
794
|
-
agent-base@6:
|
|
795
|
-
version "6.0.2"
|
|
796
|
-
resolved "https://registry.nlark.com/agent-base/download/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
|
|
797
|
-
integrity sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=
|
|
798
|
-
dependencies:
|
|
799
|
-
debug "4"
|
|
800
|
-
|
|
801
|
-
aggregate-error@^3.0.0:
|
|
802
|
-
version "3.1.0"
|
|
803
|
-
resolved "https://registry.npm.taobao.org/aggregate-error/download/aggregate-error-3.1.0.tgz?cache=0&sync_timestamp=1618681553608&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Faggregate-error%2Fdownload%2Faggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
|
|
804
|
-
integrity sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=
|
|
805
|
-
dependencies:
|
|
806
|
-
clean-stack "^2.0.0"
|
|
807
|
-
indent-string "^4.0.0"
|
|
808
|
-
|
|
809
|
-
ajv@^6.10.0, ajv@^6.12.4:
|
|
810
|
-
version "6.12.6"
|
|
811
|
-
resolved "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
|
|
812
|
-
integrity sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=
|
|
813
|
-
dependencies:
|
|
814
|
-
fast-deep-equal "^3.1.1"
|
|
815
|
-
fast-json-stable-stringify "^2.0.0"
|
|
816
|
-
json-schema-traverse "^0.4.1"
|
|
817
|
-
uri-js "^4.2.2"
|
|
818
|
-
|
|
819
|
-
ajv@^8.0.1:
|
|
820
|
-
version "8.6.0"
|
|
821
|
-
resolved "https://registry.nlark.com/ajv/download/ajv-8.6.0.tgz#60cc45d9c46a477d80d92c48076d972c342e5720"
|
|
822
|
-
integrity sha1-YMxF2cRqR32A2SxIB22XLDQuVyA=
|
|
823
|
-
dependencies:
|
|
824
|
-
fast-deep-equal "^3.1.1"
|
|
825
|
-
json-schema-traverse "^1.0.0"
|
|
826
|
-
require-from-string "^2.0.2"
|
|
827
|
-
uri-js "^4.2.2"
|
|
828
|
-
|
|
829
|
-
ansi-align@^3.0.0:
|
|
830
|
-
version "3.0.0"
|
|
831
|
-
resolved "https://registry.npm.taobao.org/ansi-align/download/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
|
|
832
|
-
integrity sha1-tTazcc9ofKrvI2wY0+If43l0Z8s=
|
|
833
|
-
dependencies:
|
|
834
|
-
string-width "^3.0.0"
|
|
835
|
-
|
|
836
|
-
ansi-colors@^4.1.1:
|
|
837
|
-
version "4.1.1"
|
|
838
|
-
resolved "https://registry.nlark.com/ansi-colors/download/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
|
|
839
|
-
integrity sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=
|
|
840
|
-
|
|
841
|
-
ansi-escapes@^4.2.1, ansi-escapes@^4.3.0:
|
|
842
|
-
version "4.3.2"
|
|
843
|
-
resolved "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
|
|
844
|
-
integrity sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=
|
|
845
|
-
dependencies:
|
|
846
|
-
type-fest "^0.21.3"
|
|
847
|
-
|
|
848
|
-
ansi-regex@^4.1.0:
|
|
849
|
-
version "4.1.0"
|
|
850
|
-
resolved "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz?cache=0&sync_timestamp=1618553044693&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
|
|
851
|
-
integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=
|
|
852
|
-
|
|
853
|
-
ansi-regex@^5.0.0:
|
|
854
|
-
version "5.0.0"
|
|
855
|
-
resolved "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz?cache=0&sync_timestamp=1618553044693&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
|
|
856
|
-
integrity sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U=
|
|
857
|
-
|
|
858
|
-
ansi-styles@^3.2.1:
|
|
859
|
-
version "3.2.1"
|
|
860
|
-
resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz?cache=0&sync_timestamp=1618995588464&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
|
861
|
-
integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=
|
|
862
|
-
dependencies:
|
|
863
|
-
color-convert "^1.9.0"
|
|
864
|
-
|
|
865
|
-
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
|
|
866
|
-
version "4.3.0"
|
|
867
|
-
resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz?cache=0&sync_timestamp=1618995588464&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
|
868
|
-
integrity sha1-7dgDYornHATIWuegkG7a00tkiTc=
|
|
869
|
-
dependencies:
|
|
870
|
-
color-convert "^2.0.1"
|
|
871
|
-
|
|
872
|
-
ansi-styles@^5.0.0:
|
|
873
|
-
version "5.2.0"
|
|
874
|
-
resolved "https://registry.nlark.com/ansi-styles/download/ansi-styles-5.2.0.tgz?cache=0&sync_timestamp=1618995588464&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
|
|
875
|
-
integrity sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=
|
|
876
|
-
|
|
877
|
-
anymatch@^3.0.3, anymatch@~3.1.1:
|
|
878
|
-
version "3.1.2"
|
|
879
|
-
resolved "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
|
|
880
|
-
integrity sha1-wFV8CWrzLxBhmPT04qODU343hxY=
|
|
881
|
-
dependencies:
|
|
882
|
-
normalize-path "^3.0.0"
|
|
883
|
-
picomatch "^2.0.4"
|
|
884
|
-
|
|
885
|
-
argparse@^1.0.7:
|
|
886
|
-
version "1.0.10"
|
|
887
|
-
resolved "https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
|
|
888
|
-
integrity sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=
|
|
889
|
-
dependencies:
|
|
890
|
-
sprintf-js "~1.0.2"
|
|
891
|
-
|
|
892
|
-
array-union@^2.1.0:
|
|
893
|
-
version "2.1.0"
|
|
894
|
-
resolved "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz?cache=0&sync_timestamp=1614624262896&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-union%2Fdownload%2Farray-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
|
|
895
|
-
integrity sha1-t5hCCtvrHego2ErNii4j0+/oXo0=
|
|
896
|
-
|
|
897
|
-
astral-regex@^2.0.0:
|
|
898
|
-
version "2.0.0"
|
|
899
|
-
resolved "https://registry.npm.taobao.org/astral-regex/download/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
|
|
900
|
-
integrity sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=
|
|
901
|
-
|
|
902
|
-
asynckit@^0.4.0:
|
|
903
|
-
version "0.4.0"
|
|
904
|
-
resolved "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
|
905
|
-
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
|
|
906
|
-
|
|
907
|
-
babel-jest@^27.0.2:
|
|
908
|
-
version "27.0.2"
|
|
909
|
-
resolved "https://registry.nlark.com/babel-jest/download/babel-jest-27.0.2.tgz#7dc18adb01322acce62c2af76ea2c7cd186ade37"
|
|
910
|
-
integrity sha1-fcGK2wEyKszmLCr3bqLHzRhq3jc=
|
|
911
|
-
dependencies:
|
|
912
|
-
"@jest/transform" "^27.0.2"
|
|
913
|
-
"@jest/types" "^27.0.2"
|
|
914
|
-
"@types/babel__core" "^7.1.14"
|
|
915
|
-
babel-plugin-istanbul "^6.0.0"
|
|
916
|
-
babel-preset-jest "^27.0.1"
|
|
917
|
-
chalk "^4.0.0"
|
|
918
|
-
graceful-fs "^4.2.4"
|
|
919
|
-
slash "^3.0.0"
|
|
920
|
-
|
|
921
|
-
babel-plugin-istanbul@^6.0.0:
|
|
922
|
-
version "6.0.0"
|
|
923
|
-
resolved "https://registry.npm.taobao.org/babel-plugin-istanbul/download/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
|
|
924
|
-
integrity sha1-4VnM3Jr5XgtXDHW0Vzt8NNZx12U=
|
|
925
|
-
dependencies:
|
|
926
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
|
927
|
-
"@istanbuljs/load-nyc-config" "^1.0.0"
|
|
928
|
-
"@istanbuljs/schema" "^0.1.2"
|
|
929
|
-
istanbul-lib-instrument "^4.0.0"
|
|
930
|
-
test-exclude "^6.0.0"
|
|
931
|
-
|
|
932
|
-
babel-plugin-jest-hoist@^27.0.1:
|
|
933
|
-
version "27.0.1"
|
|
934
|
-
resolved "https://registry.nlark.com/babel-plugin-jest-hoist/download/babel-plugin-jest-hoist-27.0.1.tgz?cache=0&sync_timestamp=1621937290231&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-plugin-jest-hoist%2Fdownload%2Fbabel-plugin-jest-hoist-27.0.1.tgz#a6d10e484c93abff0f4e95f437dad26e5736ea11"
|
|
935
|
-
integrity sha1-ptEOSEyTq/8PTpX0N9rSblc26hE=
|
|
936
|
-
dependencies:
|
|
937
|
-
"@babel/template" "^7.3.3"
|
|
938
|
-
"@babel/types" "^7.3.3"
|
|
939
|
-
"@types/babel__core" "^7.0.0"
|
|
940
|
-
"@types/babel__traverse" "^7.0.6"
|
|
941
|
-
|
|
942
|
-
babel-preset-current-node-syntax@^1.0.0:
|
|
943
|
-
version "1.0.1"
|
|
944
|
-
resolved "https://registry.npm.taobao.org/babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b"
|
|
945
|
-
integrity sha1-tDmSObibKgEfndvj5PQB/EDP9zs=
|
|
946
|
-
dependencies:
|
|
947
|
-
"@babel/plugin-syntax-async-generators" "^7.8.4"
|
|
948
|
-
"@babel/plugin-syntax-bigint" "^7.8.3"
|
|
949
|
-
"@babel/plugin-syntax-class-properties" "^7.8.3"
|
|
950
|
-
"@babel/plugin-syntax-import-meta" "^7.8.3"
|
|
951
|
-
"@babel/plugin-syntax-json-strings" "^7.8.3"
|
|
952
|
-
"@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
|
|
953
|
-
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
|
|
954
|
-
"@babel/plugin-syntax-numeric-separator" "^7.8.3"
|
|
955
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
|
|
956
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
|
|
957
|
-
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
|
|
958
|
-
"@babel/plugin-syntax-top-level-await" "^7.8.3"
|
|
959
|
-
|
|
960
|
-
babel-preset-jest@^27.0.1:
|
|
961
|
-
version "27.0.1"
|
|
962
|
-
resolved "https://registry.nlark.com/babel-preset-jest/download/babel-preset-jest-27.0.1.tgz?cache=0&sync_timestamp=1621937289896&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-preset-jest%2Fdownload%2Fbabel-preset-jest-27.0.1.tgz#7a50c75d16647c23a2cf5158d5bb9eb206b10e20"
|
|
963
|
-
integrity sha1-elDHXRZkfCOiz1FY1buesgaxDiA=
|
|
964
|
-
dependencies:
|
|
965
|
-
babel-plugin-jest-hoist "^27.0.1"
|
|
966
|
-
babel-preset-current-node-syntax "^1.0.0"
|
|
967
|
-
|
|
968
|
-
balanced-match@^1.0.0:
|
|
969
|
-
version "1.0.2"
|
|
970
|
-
resolved "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz?cache=0&sync_timestamp=1617714233441&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbalanced-match%2Fdownload%2Fbalanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
|
971
|
-
integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=
|
|
972
|
-
|
|
973
|
-
binary-extensions@^2.0.0:
|
|
974
|
-
version "2.2.0"
|
|
975
|
-
resolved "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
|
|
976
|
-
integrity sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=
|
|
977
|
-
|
|
978
|
-
boxen@^4.2.0:
|
|
979
|
-
version "4.2.0"
|
|
980
|
-
resolved "https://registry.npm.taobao.org/boxen/download/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
|
|
981
|
-
integrity sha1-5BG2I1fW1tNlh8isPV2XTaoHDmQ=
|
|
982
|
-
dependencies:
|
|
983
|
-
ansi-align "^3.0.0"
|
|
984
|
-
camelcase "^5.3.1"
|
|
985
|
-
chalk "^3.0.0"
|
|
986
|
-
cli-boxes "^2.2.0"
|
|
987
|
-
string-width "^4.1.0"
|
|
988
|
-
term-size "^2.1.0"
|
|
989
|
-
type-fest "^0.8.1"
|
|
990
|
-
widest-line "^3.1.0"
|
|
991
|
-
|
|
992
|
-
brace-expansion@^1.1.7:
|
|
993
|
-
version "1.1.11"
|
|
994
|
-
resolved "https://registry.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
|
995
|
-
integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=
|
|
996
|
-
dependencies:
|
|
997
|
-
balanced-match "^1.0.0"
|
|
998
|
-
concat-map "0.0.1"
|
|
999
|
-
|
|
1000
|
-
braces@^3.0.1, braces@~3.0.2:
|
|
1001
|
-
version "3.0.2"
|
|
1002
|
-
resolved "https://registry.npm.taobao.org/braces/download/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
|
1003
|
-
integrity sha1-NFThpGLujVmeI23zNs2epPiv4Qc=
|
|
1004
|
-
dependencies:
|
|
1005
|
-
fill-range "^7.0.1"
|
|
1006
|
-
|
|
1007
|
-
browser-process-hrtime@^1.0.0:
|
|
1008
|
-
version "1.0.0"
|
|
1009
|
-
resolved "https://registry.nlark.com/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
|
|
1010
|
-
integrity sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=
|
|
1011
|
-
|
|
1012
|
-
browserslist@^4.16.6:
|
|
1013
|
-
version "4.16.6"
|
|
1014
|
-
resolved "https://registry.nlark.com/browserslist/download/browserslist-4.16.6.tgz?cache=0&sync_timestamp=1619789072079&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
|
|
1015
|
-
integrity sha1-15ASd6WojlVO0wWxg+ybDAj2b6I=
|
|
1016
|
-
dependencies:
|
|
1017
|
-
caniuse-lite "^1.0.30001219"
|
|
1018
|
-
colorette "^1.2.2"
|
|
1019
|
-
electron-to-chromium "^1.3.723"
|
|
1020
|
-
escalade "^3.1.1"
|
|
1021
|
-
node-releases "^1.1.71"
|
|
1022
|
-
|
|
1023
|
-
bs-logger@0.x:
|
|
1024
|
-
version "0.2.6"
|
|
1025
|
-
resolved "https://registry.npm.taobao.org/bs-logger/download/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8"
|
|
1026
|
-
integrity sha1-6302UwenLPl0zGzadraDVK0za9g=
|
|
1027
|
-
dependencies:
|
|
1028
|
-
fast-json-stable-stringify "2.x"
|
|
1029
|
-
|
|
1030
|
-
bser@2.1.1:
|
|
1031
|
-
version "2.1.1"
|
|
1032
|
-
resolved "https://registry.npm.taobao.org/bser/download/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
|
|
1033
|
-
integrity sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=
|
|
1034
|
-
dependencies:
|
|
1035
|
-
node-int64 "^0.4.0"
|
|
1036
|
-
|
|
1037
|
-
buffer-from@1.x, buffer-from@^1.0.0:
|
|
1038
|
-
version "1.1.1"
|
|
1039
|
-
resolved "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
|
1040
|
-
integrity sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=
|
|
1041
|
-
|
|
1042
|
-
cacheable-request@^6.0.0:
|
|
1043
|
-
version "6.1.0"
|
|
1044
|
-
resolved "https://registry.nlark.com/cacheable-request/download/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912"
|
|
1045
|
-
integrity sha1-IP+4vRYrpL4R6VZ9gj22UQUsqRI=
|
|
1046
|
-
dependencies:
|
|
1047
|
-
clone-response "^1.0.2"
|
|
1048
|
-
get-stream "^5.1.0"
|
|
1049
|
-
http-cache-semantics "^4.0.0"
|
|
1050
|
-
keyv "^3.0.0"
|
|
1051
|
-
lowercase-keys "^2.0.0"
|
|
1052
|
-
normalize-url "^4.1.0"
|
|
1053
|
-
responselike "^1.0.2"
|
|
1054
|
-
|
|
1055
|
-
callsites@^3.0.0:
|
|
1056
|
-
version "3.1.0"
|
|
1057
|
-
resolved "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
|
1058
|
-
integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=
|
|
1059
|
-
|
|
1060
|
-
camelcase@^5.3.1:
|
|
1061
|
-
version "5.3.1"
|
|
1062
|
-
resolved "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
|
1063
|
-
integrity sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=
|
|
1064
|
-
|
|
1065
|
-
camelcase@^6.2.0:
|
|
1066
|
-
version "6.2.0"
|
|
1067
|
-
resolved "https://registry.npm.taobao.org/camelcase/download/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
|
|
1068
|
-
integrity sha1-kkr4gcnVJaydh/QNlk5c6pgqGAk=
|
|
1069
|
-
|
|
1070
|
-
caniuse-lite@^1.0.30001219:
|
|
1071
|
-
version "1.0.30001237"
|
|
1072
|
-
resolved "https://registry.nlark.com/caniuse-lite/download/caniuse-lite-1.0.30001237.tgz?cache=0&sync_timestamp=1623477032412&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcaniuse-lite%2Fdownload%2Fcaniuse-lite-1.0.30001237.tgz#4b7783661515b8e7151fc6376cfd97f0e427b9e5"
|
|
1073
|
-
integrity sha1-S3eDZhUVuOcVH8Y3bP2X8OQnueU=
|
|
1074
|
-
|
|
1075
|
-
chalk@^2.0.0:
|
|
1076
|
-
version "2.4.2"
|
|
1077
|
-
resolved "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
|
1078
|
-
integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=
|
|
1079
|
-
dependencies:
|
|
1080
|
-
ansi-styles "^3.2.1"
|
|
1081
|
-
escape-string-regexp "^1.0.5"
|
|
1082
|
-
supports-color "^5.3.0"
|
|
1083
|
-
|
|
1084
|
-
chalk@^3.0.0:
|
|
1085
|
-
version "3.0.0"
|
|
1086
|
-
resolved "https://registry.nlark.com/chalk/download/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
|
|
1087
|
-
integrity sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=
|
|
1088
|
-
dependencies:
|
|
1089
|
-
ansi-styles "^4.1.0"
|
|
1090
|
-
supports-color "^7.1.0"
|
|
1091
|
-
|
|
1092
|
-
chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1:
|
|
1093
|
-
version "4.1.1"
|
|
1094
|
-
resolved "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
|
|
1095
|
-
integrity sha1-yAs/qyi/Y3HmhjMl7uZ+YYt35q0=
|
|
1096
|
-
dependencies:
|
|
1097
|
-
ansi-styles "^4.1.0"
|
|
1098
|
-
supports-color "^7.1.0"
|
|
1099
|
-
|
|
1100
|
-
char-regex@^1.0.2:
|
|
1101
|
-
version "1.0.2"
|
|
1102
|
-
resolved "https://registry.nlark.com/char-regex/download/char-regex-1.0.2.tgz?cache=0&sync_timestamp=1622809103243&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchar-regex%2Fdownload%2Fchar-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
|
|
1103
|
-
integrity sha1-10Q1giYhf5ge1Y9Hmx1rzClUXc8=
|
|
1104
|
-
|
|
1105
|
-
chokidar@^3.2.2:
|
|
1106
|
-
version "3.5.1"
|
|
1107
|
-
resolved "https://registry.npm.taobao.org/chokidar/download/chokidar-3.5.1.tgz?cache=0&sync_timestamp=1610719384066&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchokidar%2Fdownload%2Fchokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
|
|
1108
|
-
integrity sha1-7pznu+vSt59J8wR5nVRo4x4U5oo=
|
|
1109
|
-
dependencies:
|
|
1110
|
-
anymatch "~3.1.1"
|
|
1111
|
-
braces "~3.0.2"
|
|
1112
|
-
glob-parent "~5.1.0"
|
|
1113
|
-
is-binary-path "~2.1.0"
|
|
1114
|
-
is-glob "~4.0.1"
|
|
1115
|
-
normalize-path "~3.0.0"
|
|
1116
|
-
readdirp "~3.5.0"
|
|
1117
|
-
optionalDependencies:
|
|
1118
|
-
fsevents "~2.3.1"
|
|
1119
|
-
|
|
1120
|
-
ci-info@^2.0.0:
|
|
1121
|
-
version "2.0.0"
|
|
1122
|
-
resolved "https://registry.nlark.com/ci-info/download/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
|
|
1123
|
-
integrity sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=
|
|
1124
|
-
|
|
1125
|
-
ci-info@^3.1.1:
|
|
1126
|
-
version "3.2.0"
|
|
1127
|
-
resolved "https://registry.nlark.com/ci-info/download/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6"
|
|
1128
|
-
integrity sha1-KHbLlIpJh5e1I28AlbwFfQ3KOLY=
|
|
1129
|
-
|
|
1130
|
-
cjs-module-lexer@^1.0.0:
|
|
1131
|
-
version "1.2.1"
|
|
1132
|
-
resolved "https://registry.nlark.com/cjs-module-lexer/download/cjs-module-lexer-1.2.1.tgz?cache=0&sync_timestamp=1619693561926&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcjs-module-lexer%2Fdownload%2Fcjs-module-lexer-1.2.1.tgz#2fd46d9906a126965aa541345c499aaa18e8cd73"
|
|
1133
|
-
integrity sha1-L9RtmQahJpZapUE0XEmaqhjozXM=
|
|
1134
|
-
|
|
1135
|
-
clean-stack@^2.0.0:
|
|
1136
|
-
version "2.2.0"
|
|
1137
|
-
resolved "https://registry.nlark.com/clean-stack/download/clean-stack-2.2.0.tgz?cache=0&sync_timestamp=1621915044030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-stack%2Fdownload%2Fclean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
|
|
1138
|
-
integrity sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=
|
|
1139
|
-
|
|
1140
|
-
cli-boxes@^2.2.0:
|
|
1141
|
-
version "2.2.1"
|
|
1142
|
-
resolved "https://registry.nlark.com/cli-boxes/download/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
|
|
1143
|
-
integrity sha1-3dUDXSUJT84iDpyrQKRYQKRAMY8=
|
|
1144
|
-
|
|
1145
|
-
cli-cursor@^3.1.0:
|
|
1146
|
-
version "3.1.0"
|
|
1147
|
-
resolved "https://registry.npm.taobao.org/cli-cursor/download/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
|
|
1148
|
-
integrity sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=
|
|
1149
|
-
dependencies:
|
|
1150
|
-
restore-cursor "^3.1.0"
|
|
1151
|
-
|
|
1152
|
-
cli-truncate@^2.1.0:
|
|
1153
|
-
version "2.1.0"
|
|
1154
|
-
resolved "https://registry.npm.taobao.org/cli-truncate/download/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
|
|
1155
|
-
integrity sha1-w54ovwXtzeW+O5iZKiLe7Vork8c=
|
|
1156
|
-
dependencies:
|
|
1157
|
-
slice-ansi "^3.0.0"
|
|
1158
|
-
string-width "^4.2.0"
|
|
1159
|
-
|
|
1160
|
-
cliui@^7.0.2:
|
|
1161
|
-
version "7.0.4"
|
|
1162
|
-
resolved "https://registry.nlark.com/cliui/download/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
|
|
1163
|
-
integrity sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=
|
|
1164
|
-
dependencies:
|
|
1165
|
-
string-width "^4.2.0"
|
|
1166
|
-
strip-ansi "^6.0.0"
|
|
1167
|
-
wrap-ansi "^7.0.0"
|
|
1168
|
-
|
|
1169
|
-
clone-response@^1.0.2:
|
|
1170
|
-
version "1.0.2"
|
|
1171
|
-
resolved "https://registry.npm.taobao.org/clone-response/download/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
|
|
1172
|
-
integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
|
|
1173
|
-
dependencies:
|
|
1174
|
-
mimic-response "^1.0.0"
|
|
1175
|
-
|
|
1176
|
-
co@^4.6.0:
|
|
1177
|
-
version "4.6.0"
|
|
1178
|
-
resolved "https://registry.npm.taobao.org/co/download/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
|
|
1179
|
-
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
|
|
1180
|
-
|
|
1181
|
-
collect-v8-coverage@^1.0.0:
|
|
1182
|
-
version "1.0.1"
|
|
1183
|
-
resolved "https://registry.npm.taobao.org/collect-v8-coverage/download/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
|
|
1184
|
-
integrity sha1-zCyOlPwYu9/+ZNZTRXDIpnOyf1k=
|
|
1185
|
-
|
|
1186
|
-
color-convert@^1.9.0:
|
|
1187
|
-
version "1.9.3"
|
|
1188
|
-
resolved "https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
|
1189
|
-
integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=
|
|
1190
|
-
dependencies:
|
|
1191
|
-
color-name "1.1.3"
|
|
1192
|
-
|
|
1193
|
-
color-convert@^2.0.1:
|
|
1194
|
-
version "2.0.1"
|
|
1195
|
-
resolved "https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
|
1196
|
-
integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=
|
|
1197
|
-
dependencies:
|
|
1198
|
-
color-name "~1.1.4"
|
|
1199
|
-
|
|
1200
|
-
color-name@1.1.3:
|
|
1201
|
-
version "1.1.3"
|
|
1202
|
-
resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
|
1203
|
-
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
|
|
1204
|
-
|
|
1205
|
-
color-name@~1.1.4:
|
|
1206
|
-
version "1.1.4"
|
|
1207
|
-
resolved "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
|
1208
|
-
integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=
|
|
1209
|
-
|
|
1210
|
-
colorette@^1.2.2:
|
|
1211
|
-
version "1.2.2"
|
|
1212
|
-
resolved "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz?cache=0&sync_timestamp=1618846981554&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcolorette%2Fdownload%2Fcolorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
|
|
1213
|
-
integrity sha1-y8x51emcrqLb8Q6zom/Ys+as+pQ=
|
|
1214
|
-
|
|
1215
|
-
combined-stream@^1.0.8:
|
|
1216
|
-
version "1.0.8"
|
|
1217
|
-
resolved "https://registry.nlark.com/combined-stream/download/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
|
|
1218
|
-
integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=
|
|
1219
|
-
dependencies:
|
|
1220
|
-
delayed-stream "~1.0.0"
|
|
1221
|
-
|
|
1222
|
-
commander@^7.2.0:
|
|
1223
|
-
version "7.2.0"
|
|
1224
|
-
resolved "https://registry.nlark.com/commander/download/commander-7.2.0.tgz?cache=0&sync_timestamp=1622954303803&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcommander%2Fdownload%2Fcommander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
|
|
1225
|
-
integrity sha1-o2y1fQtQHOEI5NIFWaFQo5HZerc=
|
|
1226
|
-
|
|
1227
|
-
compare-versions@^3.6.0:
|
|
1228
|
-
version "3.6.0"
|
|
1229
|
-
resolved "https://registry.npm.taobao.org/compare-versions/download/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62"
|
|
1230
|
-
integrity sha1-GlaJkTaF5ah2N7jT/8p1UU7EHWI=
|
|
1231
|
-
|
|
1232
|
-
concat-map@0.0.1:
|
|
1233
|
-
version "0.0.1"
|
|
1234
|
-
resolved "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
|
1235
|
-
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
|
|
1236
|
-
|
|
1237
|
-
configstore@^5.0.1:
|
|
1238
|
-
version "5.0.1"
|
|
1239
|
-
resolved "https://registry.npm.taobao.org/configstore/download/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96"
|
|
1240
|
-
integrity sha1-02UCG130uYzdGH1qOw4/anzF7ZY=
|
|
1241
|
-
dependencies:
|
|
1242
|
-
dot-prop "^5.2.0"
|
|
1243
|
-
graceful-fs "^4.1.2"
|
|
1244
|
-
make-dir "^3.0.0"
|
|
1245
|
-
unique-string "^2.0.0"
|
|
1246
|
-
write-file-atomic "^3.0.0"
|
|
1247
|
-
xdg-basedir "^4.0.0"
|
|
1248
|
-
|
|
1249
|
-
convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
|
|
1250
|
-
version "1.7.0"
|
|
1251
|
-
resolved "https://registry.npm.taobao.org/convert-source-map/download/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
|
|
1252
|
-
integrity sha1-F6LLiC1/d9NJBYXizmxSRCSjpEI=
|
|
1253
|
-
dependencies:
|
|
1254
|
-
safe-buffer "~5.1.1"
|
|
1255
|
-
|
|
1256
|
-
cosmiconfig@^7.0.0:
|
|
1257
|
-
version "7.0.0"
|
|
1258
|
-
resolved "https://registry.npm.taobao.org/cosmiconfig/download/cosmiconfig-7.0.0.tgz?cache=0&sync_timestamp=1596310773001&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcosmiconfig%2Fdownload%2Fcosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
|
|
1259
|
-
integrity sha1-75tE13OVnK5j3ezRIt4jhTtg+NM=
|
|
1260
|
-
dependencies:
|
|
1261
|
-
"@types/parse-json" "^4.0.0"
|
|
1262
|
-
import-fresh "^3.2.1"
|
|
1263
|
-
parse-json "^5.0.0"
|
|
1264
|
-
path-type "^4.0.0"
|
|
1265
|
-
yaml "^1.10.0"
|
|
1266
|
-
|
|
1267
|
-
cross-spawn@^7.0.2, cross-spawn@^7.0.3:
|
|
1268
|
-
version "7.0.3"
|
|
1269
|
-
resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.3.tgz?cache=0&sync_timestamp=1606748073153&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
|
|
1270
|
-
integrity sha1-9zqFudXUHQRVUcF34ogtSshXKKY=
|
|
1271
|
-
dependencies:
|
|
1272
|
-
path-key "^3.1.0"
|
|
1273
|
-
shebang-command "^2.0.0"
|
|
1274
|
-
which "^2.0.1"
|
|
1275
|
-
|
|
1276
|
-
crypto-random-string@^2.0.0:
|
|
1277
|
-
version "2.0.0"
|
|
1278
|
-
resolved "https://registry.nlark.com/crypto-random-string/download/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
|
|
1279
|
-
integrity sha1-7yp6lm7BEIM4g2m6oC6+rSKbMNU=
|
|
1280
|
-
|
|
1281
|
-
cssom@^0.4.4:
|
|
1282
|
-
version "0.4.4"
|
|
1283
|
-
resolved "https://registry.npm.taobao.org/cssom/download/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
|
|
1284
|
-
integrity sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA=
|
|
1285
|
-
|
|
1286
|
-
cssom@~0.3.6:
|
|
1287
|
-
version "0.3.8"
|
|
1288
|
-
resolved "https://registry.npm.taobao.org/cssom/download/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
|
|
1289
|
-
integrity sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=
|
|
1290
|
-
|
|
1291
|
-
cssstyle@^2.3.0:
|
|
1292
|
-
version "2.3.0"
|
|
1293
|
-
resolved "https://registry.nlark.com/cssstyle/download/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
|
|
1294
|
-
integrity sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=
|
|
1295
|
-
dependencies:
|
|
1296
|
-
cssom "~0.3.6"
|
|
1297
|
-
|
|
1298
|
-
data-urls@^2.0.0:
|
|
1299
|
-
version "2.0.0"
|
|
1300
|
-
resolved "https://registry.npm.taobao.org/data-urls/download/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
|
|
1301
|
-
integrity sha1-FWSFpyljqXD11YIar2Qr7yvy25s=
|
|
1302
|
-
dependencies:
|
|
1303
|
-
abab "^2.0.3"
|
|
1304
|
-
whatwg-mimetype "^2.3.0"
|
|
1305
|
-
whatwg-url "^8.0.0"
|
|
1306
|
-
|
|
1307
|
-
debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
|
|
1308
|
-
version "4.3.1"
|
|
1309
|
-
resolved "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz?cache=0&sync_timestamp=1614330710870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
|
|
1310
|
-
integrity sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=
|
|
1311
|
-
dependencies:
|
|
1312
|
-
ms "2.1.2"
|
|
1313
|
-
|
|
1314
|
-
debug@^2.2.0:
|
|
1315
|
-
version "2.6.9"
|
|
1316
|
-
resolved "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&sync_timestamp=1614330710870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
|
1317
|
-
integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=
|
|
1318
|
-
dependencies:
|
|
1319
|
-
ms "2.0.0"
|
|
1320
|
-
|
|
1321
|
-
debug@^3.2.6:
|
|
1322
|
-
version "3.2.7"
|
|
1323
|
-
resolved "https://registry.npm.taobao.org/debug/download/debug-3.2.7.tgz?cache=0&sync_timestamp=1614330710870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
|
|
1324
|
-
integrity sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=
|
|
1325
|
-
dependencies:
|
|
1326
|
-
ms "^2.1.1"
|
|
1327
|
-
|
|
1328
|
-
decimal.js@^10.2.1:
|
|
1329
|
-
version "10.2.1"
|
|
1330
|
-
resolved "https://registry.npm.taobao.org/decimal.js/download/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3"
|
|
1331
|
-
integrity sha1-I4rnsPDHk9PjzqQQEIs1osAUJqM=
|
|
1332
|
-
|
|
1333
|
-
decompress-response@^3.3.0:
|
|
1334
|
-
version "3.3.0"
|
|
1335
|
-
resolved "https://registry.npm.taobao.org/decompress-response/download/decompress-response-3.3.0.tgz?cache=0&sync_timestamp=1613125280468&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdecompress-response%2Fdownload%2Fdecompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
|
|
1336
|
-
integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
|
|
1337
|
-
dependencies:
|
|
1338
|
-
mimic-response "^1.0.0"
|
|
1339
|
-
|
|
1340
|
-
dedent@^0.7.0:
|
|
1341
|
-
version "0.7.0"
|
|
1342
|
-
resolved "https://registry.nlark.com/dedent/download/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
|
|
1343
|
-
integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
|
|
1344
|
-
|
|
1345
|
-
deep-extend@^0.6.0:
|
|
1346
|
-
version "0.6.0"
|
|
1347
|
-
resolved "https://registry.nlark.com/deep-extend/download/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
|
|
1348
|
-
integrity sha1-xPp8lUBKF6nD6Mp+FTcxK3NjMKw=
|
|
1349
|
-
|
|
1350
|
-
deep-is@^0.1.3, deep-is@~0.1.3:
|
|
1351
|
-
version "0.1.3"
|
|
1352
|
-
resolved "https://registry.nlark.com/deep-is/download/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
|
1353
|
-
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
|
1354
|
-
|
|
1355
|
-
deepmerge@^4.2.2:
|
|
1356
|
-
version "4.2.2"
|
|
1357
|
-
resolved "https://registry.nlark.com/deepmerge/download/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
|
|
1358
|
-
integrity sha1-RNLqNnm49NT/ujPwPYZfwee/SVU=
|
|
1359
|
-
|
|
1360
|
-
defer-to-connect@^1.0.1:
|
|
1361
|
-
version "1.1.3"
|
|
1362
|
-
resolved "https://registry.nlark.com/defer-to-connect/download/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591"
|
|
1363
|
-
integrity sha1-MxrgUMCNz3ifjIOnuB8O2U9KxZE=
|
|
1364
|
-
|
|
1365
|
-
delayed-stream@~1.0.0:
|
|
1366
|
-
version "1.0.0"
|
|
1367
|
-
resolved "https://registry.nlark.com/delayed-stream/download/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
|
|
1368
|
-
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
|
|
1369
|
-
|
|
1370
|
-
detect-newline@^3.0.0:
|
|
1371
|
-
version "3.1.0"
|
|
1372
|
-
resolved "https://registry.nlark.com/detect-newline/download/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
|
|
1373
|
-
integrity sha1-V29d/GOuGhkv8ZLYrTr2MImRtlE=
|
|
1374
|
-
|
|
1375
|
-
diff-sequences@^26.6.2:
|
|
1376
|
-
version "26.6.2"
|
|
1377
|
-
resolved "https://registry.nlark.com/diff-sequences/download/diff-sequences-26.6.2.tgz?cache=0&sync_timestamp=1621937309522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdiff-sequences%2Fdownload%2Fdiff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1"
|
|
1378
|
-
integrity sha1-SLqZFX3hkjQS7tQdtrbUqpynwLE=
|
|
1379
|
-
|
|
1380
|
-
diff-sequences@^27.0.1:
|
|
1381
|
-
version "27.0.1"
|
|
1382
|
-
resolved "https://registry.nlark.com/diff-sequences/download/diff-sequences-27.0.1.tgz?cache=0&sync_timestamp=1621937309522&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdiff-sequences%2Fdownload%2Fdiff-sequences-27.0.1.tgz#9c9801d52ed5f576ff0a20e3022a13ee6e297e7c"
|
|
1383
|
-
integrity sha1-nJgB1S7V9Xb/CiDjAioT7m4pfnw=
|
|
1384
|
-
|
|
1385
|
-
dir-glob@^3.0.1:
|
|
1386
|
-
version "3.0.1"
|
|
1387
|
-
resolved "https://registry.npm.taobao.org/dir-glob/download/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
|
|
1388
|
-
integrity sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=
|
|
1389
|
-
dependencies:
|
|
1390
|
-
path-type "^4.0.0"
|
|
1391
|
-
|
|
1392
|
-
doctrine@^3.0.0:
|
|
1393
|
-
version "3.0.0"
|
|
1394
|
-
resolved "https://registry.npm.taobao.org/doctrine/download/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
|
|
1395
|
-
integrity sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=
|
|
1396
|
-
dependencies:
|
|
1397
|
-
esutils "^2.0.2"
|
|
1398
|
-
|
|
1399
|
-
domexception@^2.0.1:
|
|
1400
|
-
version "2.0.1"
|
|
1401
|
-
resolved "https://registry.npm.taobao.org/domexception/download/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
|
|
1402
|
-
integrity sha1-+0Su+6eT4VdLCvau0oAdBXUp8wQ=
|
|
1403
|
-
dependencies:
|
|
1404
|
-
webidl-conversions "^5.0.0"
|
|
1405
|
-
|
|
1406
|
-
dot-prop@^5.2.0:
|
|
1407
|
-
version "5.3.0"
|
|
1408
|
-
resolved "https://registry.npm.taobao.org/dot-prop/download/dot-prop-5.3.0.tgz?cache=0&sync_timestamp=1605778245785&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdot-prop%2Fdownload%2Fdot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
|
|
1409
|
-
integrity sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=
|
|
1410
|
-
dependencies:
|
|
1411
|
-
is-obj "^2.0.0"
|
|
1412
|
-
|
|
1413
|
-
duplexer3@^0.1.4:
|
|
1414
|
-
version "0.1.4"
|
|
1415
|
-
resolved "https://registry.npm.taobao.org/duplexer3/download/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
|
|
1416
|
-
integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
|
|
1417
|
-
|
|
1418
|
-
electron-to-chromium@^1.3.723:
|
|
1419
|
-
version "1.3.752"
|
|
1420
|
-
resolved "https://registry.nlark.com/electron-to-chromium/download/electron-to-chromium-1.3.752.tgz?cache=0&sync_timestamp=1623290597781&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.752.tgz#0728587f1b9b970ec9ffad932496429aef750d09"
|
|
1421
|
-
integrity sha1-ByhYfxublw7J/62TJJZCmu91DQk=
|
|
1422
|
-
|
|
1423
|
-
emittery@^0.8.1:
|
|
1424
|
-
version "0.8.1"
|
|
1425
|
-
resolved "https://registry.nlark.com/emittery/download/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860"
|
|
1426
|
-
integrity sha1-uyPMhtA7MKp1p/c0gZ3uLhunCGA=
|
|
1427
|
-
|
|
1428
|
-
emoji-regex@^7.0.1:
|
|
1429
|
-
version "7.0.3"
|
|
1430
|
-
resolved "https://registry.nlark.com/emoji-regex/download/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
|
|
1431
|
-
integrity sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=
|
|
1432
|
-
|
|
1433
|
-
emoji-regex@^8.0.0:
|
|
1434
|
-
version "8.0.0"
|
|
1435
|
-
resolved "https://registry.nlark.com/emoji-regex/download/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
|
|
1436
|
-
integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=
|
|
1437
|
-
|
|
1438
|
-
end-of-stream@^1.1.0:
|
|
1439
|
-
version "1.4.4"
|
|
1440
|
-
resolved "https://registry.nlark.com/end-of-stream/download/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
|
|
1441
|
-
integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=
|
|
1442
|
-
dependencies:
|
|
1443
|
-
once "^1.4.0"
|
|
1444
|
-
|
|
1445
|
-
enquirer@^2.3.5, enquirer@^2.3.6:
|
|
1446
|
-
version "2.3.6"
|
|
1447
|
-
resolved "https://registry.npm.taobao.org/enquirer/download/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
|
|
1448
|
-
integrity sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=
|
|
1449
|
-
dependencies:
|
|
1450
|
-
ansi-colors "^4.1.1"
|
|
1451
|
-
|
|
1452
|
-
error-ex@^1.3.1:
|
|
1453
|
-
version "1.3.2"
|
|
1454
|
-
resolved "https://registry.npm.taobao.org/error-ex/download/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
|
|
1455
|
-
integrity sha1-tKxAZIEH/c3PriQvQovqihTU8b8=
|
|
1456
|
-
dependencies:
|
|
1457
|
-
is-arrayish "^0.2.1"
|
|
1458
|
-
|
|
1459
|
-
escalade@^3.1.1:
|
|
1460
|
-
version "3.1.1"
|
|
1461
|
-
resolved "https://registry.npm.taobao.org/escalade/download/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
|
|
1462
|
-
integrity sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=
|
|
1463
|
-
|
|
1464
|
-
escape-goat@^2.0.0:
|
|
1465
|
-
version "2.1.1"
|
|
1466
|
-
resolved "https://registry.npm.taobao.org/escape-goat/download/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675"
|
|
1467
|
-
integrity sha1-Gy3HcANnbEV+x2Cy3GjttkgYhnU=
|
|
1468
|
-
|
|
1469
|
-
escape-string-regexp@^1.0.5:
|
|
1470
|
-
version "1.0.5"
|
|
1471
|
-
resolved "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
|
1472
|
-
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
|
|
1473
|
-
|
|
1474
|
-
escape-string-regexp@^2.0.0:
|
|
1475
|
-
version "2.0.0"
|
|
1476
|
-
resolved "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
|
|
1477
|
-
integrity sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=
|
|
1478
|
-
|
|
1479
|
-
escape-string-regexp@^4.0.0:
|
|
1480
|
-
version "4.0.0"
|
|
1481
|
-
resolved "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
|
|
1482
|
-
integrity sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=
|
|
1483
|
-
|
|
1484
|
-
escodegen@^2.0.0:
|
|
1485
|
-
version "2.0.0"
|
|
1486
|
-
resolved "https://registry.nlark.com/escodegen/download/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
|
|
1487
|
-
integrity sha1-XjKxKDPoqo+jXhvwvvqJOASEx90=
|
|
1488
|
-
dependencies:
|
|
1489
|
-
esprima "^4.0.1"
|
|
1490
|
-
estraverse "^5.2.0"
|
|
1491
|
-
esutils "^2.0.2"
|
|
1492
|
-
optionator "^0.8.1"
|
|
1493
|
-
optionalDependencies:
|
|
1494
|
-
source-map "~0.6.1"
|
|
1495
|
-
|
|
1496
|
-
eslint-scope@^5.1.1:
|
|
1497
|
-
version "5.1.1"
|
|
1498
|
-
resolved "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1618908284969&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
|
|
1499
|
-
integrity sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=
|
|
1500
|
-
dependencies:
|
|
1501
|
-
esrecurse "^4.3.0"
|
|
1502
|
-
estraverse "^4.1.1"
|
|
1503
|
-
|
|
1504
|
-
eslint-utils@^2.1.0:
|
|
1505
|
-
version "2.1.0"
|
|
1506
|
-
resolved "https://registry.nlark.com/eslint-utils/download/eslint-utils-2.1.0.tgz?cache=0&sync_timestamp=1620975524854&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-utils%2Fdownload%2Feslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
|
|
1507
|
-
integrity sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=
|
|
1508
|
-
dependencies:
|
|
1509
|
-
eslint-visitor-keys "^1.1.0"
|
|
1510
|
-
|
|
1511
|
-
eslint-utils@^3.0.0:
|
|
1512
|
-
version "3.0.0"
|
|
1513
|
-
resolved "https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz?cache=0&sync_timestamp=1620975524854&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-utils%2Fdownload%2Feslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
|
|
1514
|
-
integrity sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=
|
|
1515
|
-
dependencies:
|
|
1516
|
-
eslint-visitor-keys "^2.0.0"
|
|
1517
|
-
|
|
1518
|
-
eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
|
|
1519
|
-
version "1.3.0"
|
|
1520
|
-
resolved "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz?cache=0&sync_timestamp=1620088667316&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
|
|
1521
|
-
integrity sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=
|
|
1522
|
-
|
|
1523
|
-
eslint-visitor-keys@^2.0.0:
|
|
1524
|
-
version "2.1.0"
|
|
1525
|
-
resolved "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz?cache=0&sync_timestamp=1620088667316&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-visitor-keys%2Fdownload%2Feslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
|
|
1526
|
-
integrity sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=
|
|
1527
|
-
|
|
1528
|
-
eslint@^7.28.0:
|
|
1529
|
-
version "7.28.0"
|
|
1530
|
-
resolved "https://registry.nlark.com/eslint/download/eslint-7.28.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint%2Fdownload%2Feslint-7.28.0.tgz#435aa17a0b82c13bb2be9d51408b617e49c1e820"
|
|
1531
|
-
integrity sha1-Q1qheguCwTuyvp1RQIthfknB6CA=
|
|
1532
|
-
dependencies:
|
|
1533
|
-
"@babel/code-frame" "7.12.11"
|
|
1534
|
-
"@eslint/eslintrc" "^0.4.2"
|
|
1535
|
-
ajv "^6.10.0"
|
|
1536
|
-
chalk "^4.0.0"
|
|
1537
|
-
cross-spawn "^7.0.2"
|
|
1538
|
-
debug "^4.0.1"
|
|
1539
|
-
doctrine "^3.0.0"
|
|
1540
|
-
enquirer "^2.3.5"
|
|
1541
|
-
escape-string-regexp "^4.0.0"
|
|
1542
|
-
eslint-scope "^5.1.1"
|
|
1543
|
-
eslint-utils "^2.1.0"
|
|
1544
|
-
eslint-visitor-keys "^2.0.0"
|
|
1545
|
-
espree "^7.3.1"
|
|
1546
|
-
esquery "^1.4.0"
|
|
1547
|
-
esutils "^2.0.2"
|
|
1548
|
-
fast-deep-equal "^3.1.3"
|
|
1549
|
-
file-entry-cache "^6.0.1"
|
|
1550
|
-
functional-red-black-tree "^1.0.1"
|
|
1551
|
-
glob-parent "^5.1.2"
|
|
1552
|
-
globals "^13.6.0"
|
|
1553
|
-
ignore "^4.0.6"
|
|
1554
|
-
import-fresh "^3.0.0"
|
|
1555
|
-
imurmurhash "^0.1.4"
|
|
1556
|
-
is-glob "^4.0.0"
|
|
1557
|
-
js-yaml "^3.13.1"
|
|
1558
|
-
json-stable-stringify-without-jsonify "^1.0.1"
|
|
1559
|
-
levn "^0.4.1"
|
|
1560
|
-
lodash.merge "^4.6.2"
|
|
1561
|
-
minimatch "^3.0.4"
|
|
1562
|
-
natural-compare "^1.4.0"
|
|
1563
|
-
optionator "^0.9.1"
|
|
1564
|
-
progress "^2.0.0"
|
|
1565
|
-
regexpp "^3.1.0"
|
|
1566
|
-
semver "^7.2.1"
|
|
1567
|
-
strip-ansi "^6.0.0"
|
|
1568
|
-
strip-json-comments "^3.1.0"
|
|
1569
|
-
table "^6.0.9"
|
|
1570
|
-
text-table "^0.2.0"
|
|
1571
|
-
v8-compile-cache "^2.0.3"
|
|
1572
|
-
|
|
1573
|
-
espree@^7.3.0, espree@^7.3.1:
|
|
1574
|
-
version "7.3.1"
|
|
1575
|
-
resolved "https://registry.nlark.com/espree/download/espree-7.3.1.tgz?cache=0&sync_timestamp=1623436387859&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fespree%2Fdownload%2Fespree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
|
|
1576
|
-
integrity sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=
|
|
1577
|
-
dependencies:
|
|
1578
|
-
acorn "^7.4.0"
|
|
1579
|
-
acorn-jsx "^5.3.1"
|
|
1580
|
-
eslint-visitor-keys "^1.3.0"
|
|
1581
|
-
|
|
1582
|
-
esprima@^4.0.0, esprima@^4.0.1:
|
|
1583
|
-
version "4.0.1"
|
|
1584
|
-
resolved "https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
|
|
1585
|
-
integrity sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=
|
|
1586
|
-
|
|
1587
|
-
esquery@^1.4.0:
|
|
1588
|
-
version "1.4.0"
|
|
1589
|
-
resolved "https://registry.nlark.com/esquery/download/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
|
|
1590
|
-
integrity sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=
|
|
1591
|
-
dependencies:
|
|
1592
|
-
estraverse "^5.1.0"
|
|
1593
|
-
|
|
1594
|
-
esrecurse@^4.3.0:
|
|
1595
|
-
version "4.3.0"
|
|
1596
|
-
resolved "https://registry.npm.taobao.org/esrecurse/download/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
|
|
1597
|
-
integrity sha1-eteWTWeauyi+5yzsY3WLHF0smSE=
|
|
1598
|
-
dependencies:
|
|
1599
|
-
estraverse "^5.2.0"
|
|
1600
|
-
|
|
1601
|
-
estraverse@^4.1.1:
|
|
1602
|
-
version "4.3.0"
|
|
1603
|
-
resolved "https://registry.nlark.com/estraverse/download/estraverse-4.3.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Festraverse%2Fdownload%2Festraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
|
|
1604
|
-
integrity sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=
|
|
1605
|
-
|
|
1606
|
-
estraverse@^5.1.0, estraverse@^5.2.0:
|
|
1607
|
-
version "5.2.0"
|
|
1608
|
-
resolved "https://registry.nlark.com/estraverse/download/estraverse-5.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Festraverse%2Fdownload%2Festraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
|
|
1609
|
-
integrity sha1-MH30JUfmzHMk088DwVXVzbjFOIA=
|
|
1610
|
-
|
|
1611
|
-
esutils@^2.0.2:
|
|
1612
|
-
version "2.0.3"
|
|
1613
|
-
resolved "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
|
|
1614
|
-
integrity sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=
|
|
1615
|
-
|
|
1616
|
-
execa@^5.0.0:
|
|
1617
|
-
version "5.1.1"
|
|
1618
|
-
resolved "https://registry.nlark.com/execa/download/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
|
|
1619
|
-
integrity sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=
|
|
1620
|
-
dependencies:
|
|
1621
|
-
cross-spawn "^7.0.3"
|
|
1622
|
-
get-stream "^6.0.0"
|
|
1623
|
-
human-signals "^2.1.0"
|
|
1624
|
-
is-stream "^2.0.0"
|
|
1625
|
-
merge-stream "^2.0.0"
|
|
1626
|
-
npm-run-path "^4.0.1"
|
|
1627
|
-
onetime "^5.1.2"
|
|
1628
|
-
signal-exit "^3.0.3"
|
|
1629
|
-
strip-final-newline "^2.0.0"
|
|
1630
|
-
|
|
1631
|
-
exit@^0.1.2:
|
|
1632
|
-
version "0.1.2"
|
|
1633
|
-
resolved "https://registry.npm.taobao.org/exit/download/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
|
|
1634
|
-
integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=
|
|
1635
|
-
|
|
1636
|
-
expect@^27.0.2:
|
|
1637
|
-
version "27.0.2"
|
|
1638
|
-
resolved "https://registry.nlark.com/expect/download/expect-27.0.2.tgz?cache=0&sync_timestamp=1622290312110&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fexpect%2Fdownload%2Fexpect-27.0.2.tgz#e66ca3a4c9592f1c019fa1d46459a9d2084f3422"
|
|
1639
|
-
integrity sha1-5myjpMlZLxwBn6HUZFmp0ghPNCI=
|
|
1640
|
-
dependencies:
|
|
1641
|
-
"@jest/types" "^27.0.2"
|
|
1642
|
-
ansi-styles "^5.0.0"
|
|
1643
|
-
jest-get-type "^27.0.1"
|
|
1644
|
-
jest-matcher-utils "^27.0.2"
|
|
1645
|
-
jest-message-util "^27.0.2"
|
|
1646
|
-
jest-regex-util "^27.0.1"
|
|
1647
|
-
|
|
1648
|
-
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
|
|
1649
|
-
version "3.1.3"
|
|
1650
|
-
resolved "https://registry.nlark.com/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
|
1651
|
-
integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=
|
|
1652
|
-
|
|
1653
|
-
fast-glob@^3.1.1:
|
|
1654
|
-
version "3.2.5"
|
|
1655
|
-
resolved "https://registry.nlark.com/fast-glob/download/fast-glob-3.2.5.tgz?cache=0&sync_timestamp=1618847045365&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffast-glob%2Fdownload%2Ffast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661"
|
|
1656
|
-
integrity sha1-eTmvKmVt55pPGQGQPuityqfLlmE=
|
|
1657
|
-
dependencies:
|
|
1658
|
-
"@nodelib/fs.stat" "^2.0.2"
|
|
1659
|
-
"@nodelib/fs.walk" "^1.2.3"
|
|
1660
|
-
glob-parent "^5.1.0"
|
|
1661
|
-
merge2 "^1.3.0"
|
|
1662
|
-
micromatch "^4.0.2"
|
|
1663
|
-
picomatch "^2.2.1"
|
|
1664
|
-
|
|
1665
|
-
fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0:
|
|
1666
|
-
version "2.1.0"
|
|
1667
|
-
resolved "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
|
|
1668
|
-
integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=
|
|
1669
|
-
|
|
1670
|
-
fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
|
|
1671
|
-
version "2.0.6"
|
|
1672
|
-
resolved "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
|
1673
|
-
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
|
|
1674
|
-
|
|
1675
|
-
fastq@^1.6.0:
|
|
1676
|
-
version "1.11.0"
|
|
1677
|
-
resolved "https://registry.npm.taobao.org/fastq/download/fastq-1.11.0.tgz?cache=0&sync_timestamp=1614183822444&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffastq%2Fdownload%2Ffastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858"
|
|
1678
|
-
integrity sha1-u5+5VaBxMKkY62PB9RYcwypdCFg=
|
|
1679
|
-
dependencies:
|
|
1680
|
-
reusify "^1.0.4"
|
|
1681
|
-
|
|
1682
|
-
fb-watchman@^2.0.0:
|
|
1683
|
-
version "2.0.1"
|
|
1684
|
-
resolved "https://registry.npm.taobao.org/fb-watchman/download/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
|
|
1685
|
-
integrity sha1-/IT7OdJwnPP/bXQ3BhV7tXCKioU=
|
|
1686
|
-
dependencies:
|
|
1687
|
-
bser "2.1.1"
|
|
1688
|
-
|
|
1689
|
-
file-entry-cache@^6.0.1:
|
|
1690
|
-
version "6.0.1"
|
|
1691
|
-
resolved "https://registry.nlark.com/file-entry-cache/download/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
|
|
1692
|
-
integrity sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=
|
|
1693
|
-
dependencies:
|
|
1694
|
-
flat-cache "^3.0.4"
|
|
1695
|
-
|
|
1696
|
-
fill-range@^7.0.1:
|
|
1697
|
-
version "7.0.1"
|
|
1698
|
-
resolved "https://registry.npm.taobao.org/fill-range/download/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
|
1699
|
-
integrity sha1-GRmmp8df44ssfHflGYU12prN2kA=
|
|
1700
|
-
dependencies:
|
|
1701
|
-
to-regex-range "^5.0.1"
|
|
1702
|
-
|
|
1703
|
-
find-up@^4.0.0, find-up@^4.1.0:
|
|
1704
|
-
version "4.1.0"
|
|
1705
|
-
resolved "https://registry.npm.taobao.org/find-up/download/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
|
|
1706
|
-
integrity sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=
|
|
1707
|
-
dependencies:
|
|
1708
|
-
locate-path "^5.0.0"
|
|
1709
|
-
path-exists "^4.0.0"
|
|
1710
|
-
|
|
1711
|
-
find-up@^5.0.0:
|
|
1712
|
-
version "5.0.0"
|
|
1713
|
-
resolved "https://registry.npm.taobao.org/find-up/download/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
|
|
1714
|
-
integrity sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=
|
|
1715
|
-
dependencies:
|
|
1716
|
-
locate-path "^6.0.0"
|
|
1717
|
-
path-exists "^4.0.0"
|
|
1718
|
-
|
|
1719
|
-
find-versions@^4.0.0:
|
|
1720
|
-
version "4.0.0"
|
|
1721
|
-
resolved "https://registry.nlark.com/find-versions/download/find-versions-4.0.0.tgz?cache=0&sync_timestamp=1619599444272&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffind-versions%2Fdownload%2Ffind-versions-4.0.0.tgz#3c57e573bf97769b8cb8df16934b627915da4965"
|
|
1722
|
-
integrity sha1-PFflc7+XdpuMuN8Wk0tieRXaSWU=
|
|
1723
|
-
dependencies:
|
|
1724
|
-
semver-regex "^3.1.2"
|
|
1725
|
-
|
|
1726
|
-
flat-cache@^3.0.4:
|
|
1727
|
-
version "3.0.4"
|
|
1728
|
-
resolved "https://registry.npm.taobao.org/flat-cache/download/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
|
|
1729
|
-
integrity sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=
|
|
1730
|
-
dependencies:
|
|
1731
|
-
flatted "^3.1.0"
|
|
1732
|
-
rimraf "^3.0.2"
|
|
1733
|
-
|
|
1734
|
-
flatted@^3.1.0:
|
|
1735
|
-
version "3.1.1"
|
|
1736
|
-
resolved "https://registry.npm.taobao.org/flatted/download/flatted-3.1.1.tgz?cache=0&sync_timestamp=1611059462226&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fflatted%2Fdownload%2Fflatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469"
|
|
1737
|
-
integrity sha1-xLSJ6ACW2d8d/JfHmHGup8YXxGk=
|
|
1738
|
-
|
|
1739
|
-
form-data@^3.0.0:
|
|
1740
|
-
version "3.0.1"
|
|
1741
|
-
resolved "https://registry.nlark.com/form-data/download/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
|
|
1742
|
-
integrity sha1-69U3kbeDVqma+aMA1CgsTV65dV8=
|
|
1743
|
-
dependencies:
|
|
1744
|
-
asynckit "^0.4.0"
|
|
1745
|
-
combined-stream "^1.0.8"
|
|
1746
|
-
mime-types "^2.1.12"
|
|
1747
|
-
|
|
1748
|
-
fs.realpath@^1.0.0:
|
|
1749
|
-
version "1.0.0"
|
|
1750
|
-
resolved "https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
|
1751
|
-
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
|
1752
|
-
|
|
1753
|
-
fsevents@^2.3.2, fsevents@~2.3.1:
|
|
1754
|
-
version "2.3.2"
|
|
1755
|
-
resolved "https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
|
1756
|
-
integrity sha1-ilJveLj99GI7cJ4Ll1xSwkwC/Ro=
|
|
1757
|
-
|
|
1758
|
-
function-bind@^1.1.1:
|
|
1759
|
-
version "1.1.1"
|
|
1760
|
-
resolved "https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
|
1761
|
-
integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=
|
|
1762
|
-
|
|
1763
|
-
functional-red-black-tree@^1.0.1:
|
|
1764
|
-
version "1.0.1"
|
|
1765
|
-
resolved "https://registry.npm.taobao.org/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz?cache=0&sync_timestamp=1577806294691&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffunctional-red-black-tree%2Fdownload%2Ffunctional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
|
1766
|
-
integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
|
|
1767
|
-
|
|
1768
|
-
gensync@^1.0.0-beta.2:
|
|
1769
|
-
version "1.0.0-beta.2"
|
|
1770
|
-
resolved "https://registry.nlark.com/gensync/download/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
|
|
1771
|
-
integrity sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=
|
|
1772
|
-
|
|
1773
|
-
get-caller-file@^2.0.5:
|
|
1774
|
-
version "2.0.5"
|
|
1775
|
-
resolved "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
|
1776
|
-
integrity sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=
|
|
1777
|
-
|
|
1778
|
-
get-own-enumerable-property-symbols@^3.0.0:
|
|
1779
|
-
version "3.0.2"
|
|
1780
|
-
resolved "https://registry.npm.taobao.org/get-own-enumerable-property-symbols/download/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
|
|
1781
|
-
integrity sha1-tf3nfyLL4185C04ImSLFC85u9mQ=
|
|
1782
|
-
|
|
1783
|
-
get-package-type@^0.1.0:
|
|
1784
|
-
version "0.1.0"
|
|
1785
|
-
resolved "https://registry.nlark.com/get-package-type/download/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
|
|
1786
|
-
integrity sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro=
|
|
1787
|
-
|
|
1788
|
-
get-stream@^4.1.0:
|
|
1789
|
-
version "4.1.0"
|
|
1790
|
-
resolved "https://registry.npm.taobao.org/get-stream/download/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
|
|
1791
|
-
integrity sha1-wbJVV189wh1Zv8ec09K0axw6VLU=
|
|
1792
|
-
dependencies:
|
|
1793
|
-
pump "^3.0.0"
|
|
1794
|
-
|
|
1795
|
-
get-stream@^5.1.0:
|
|
1796
|
-
version "5.2.0"
|
|
1797
|
-
resolved "https://registry.npm.taobao.org/get-stream/download/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
|
|
1798
|
-
integrity sha1-SWaheV7lrOZecGxLe+txJX1uItM=
|
|
1799
|
-
dependencies:
|
|
1800
|
-
pump "^3.0.0"
|
|
1801
|
-
|
|
1802
|
-
get-stream@^6.0.0:
|
|
1803
|
-
version "6.0.1"
|
|
1804
|
-
resolved "https://registry.npm.taobao.org/get-stream/download/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
|
|
1805
|
-
integrity sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=
|
|
1806
|
-
|
|
1807
|
-
glob-parent@^5.1.0, glob-parent@^5.1.2, glob-parent@~5.1.0:
|
|
1808
|
-
version "5.1.2"
|
|
1809
|
-
resolved "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
|
|
1810
|
-
integrity sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=
|
|
1811
|
-
dependencies:
|
|
1812
|
-
is-glob "^4.0.1"
|
|
1813
|
-
|
|
1814
|
-
glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
|
|
1815
|
-
version "7.1.7"
|
|
1816
|
-
resolved "https://registry.nlark.com/glob/download/glob-7.1.7.tgz?cache=0&sync_timestamp=1620337382269&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob%2Fdownload%2Fglob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
|
|
1817
|
-
integrity sha1-Oxk+kjPwHULQs/eClLvutBj5SpA=
|
|
1818
|
-
dependencies:
|
|
1819
|
-
fs.realpath "^1.0.0"
|
|
1820
|
-
inflight "^1.0.4"
|
|
1821
|
-
inherits "2"
|
|
1822
|
-
minimatch "^3.0.4"
|
|
1823
|
-
once "^1.3.0"
|
|
1824
|
-
path-is-absolute "^1.0.0"
|
|
1825
|
-
|
|
1826
|
-
global-dirs@^2.0.1:
|
|
1827
|
-
version "2.1.0"
|
|
1828
|
-
resolved "https://registry.npm.taobao.org/global-dirs/download/global-dirs-2.1.0.tgz?cache=0&sync_timestamp=1610454716901&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobal-dirs%2Fdownload%2Fglobal-dirs-2.1.0.tgz#e9046a49c806ff04d6c1825e196c8f0091e8df4d"
|
|
1829
|
-
integrity sha1-6QRqScgG/wTWwYJeGWyPAJHo300=
|
|
1830
|
-
dependencies:
|
|
1831
|
-
ini "1.3.7"
|
|
1832
|
-
|
|
1833
|
-
globals@^11.1.0:
|
|
1834
|
-
version "11.12.0"
|
|
1835
|
-
resolved "https://registry.nlark.com/globals/download/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
|
1836
|
-
integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=
|
|
1837
|
-
|
|
1838
|
-
globals@^13.6.0, globals@^13.9.0:
|
|
1839
|
-
version "13.9.0"
|
|
1840
|
-
resolved "https://registry.nlark.com/globals/download/globals-13.9.0.tgz#4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb"
|
|
1841
|
-
integrity sha1-S/K/Y1szShc/sdr3xeayGOzcBss=
|
|
1842
|
-
dependencies:
|
|
1843
|
-
type-fest "^0.20.2"
|
|
1844
|
-
|
|
1845
|
-
globby@^11.0.3:
|
|
1846
|
-
version "11.0.3"
|
|
1847
|
-
resolved "https://registry.nlark.com/globby/download/globby-11.0.3.tgz?cache=0&sync_timestamp=1618846983468&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobby%2Fdownload%2Fglobby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"
|
|
1848
|
-
integrity sha1-mx8MtSPhcd0a2MeyqftLZEuVk8s=
|
|
1849
|
-
dependencies:
|
|
1850
|
-
array-union "^2.1.0"
|
|
1851
|
-
dir-glob "^3.0.1"
|
|
1852
|
-
fast-glob "^3.1.1"
|
|
1853
|
-
ignore "^5.1.4"
|
|
1854
|
-
merge2 "^1.3.0"
|
|
1855
|
-
slash "^3.0.0"
|
|
1856
|
-
|
|
1857
|
-
got@^9.6.0:
|
|
1858
|
-
version "9.6.0"
|
|
1859
|
-
resolved "https://registry.nlark.com/got/download/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85"
|
|
1860
|
-
integrity sha1-7fRefWf5lUVwXeH3u+7rEhdl7YU=
|
|
1861
|
-
dependencies:
|
|
1862
|
-
"@sindresorhus/is" "^0.14.0"
|
|
1863
|
-
"@szmarczak/http-timer" "^1.1.2"
|
|
1864
|
-
cacheable-request "^6.0.0"
|
|
1865
|
-
decompress-response "^3.3.0"
|
|
1866
|
-
duplexer3 "^0.1.4"
|
|
1867
|
-
get-stream "^4.1.0"
|
|
1868
|
-
lowercase-keys "^1.0.1"
|
|
1869
|
-
mimic-response "^1.0.1"
|
|
1870
|
-
p-cancelable "^1.0.0"
|
|
1871
|
-
to-readable-stream "^1.0.0"
|
|
1872
|
-
url-parse-lax "^3.0.0"
|
|
1873
|
-
|
|
1874
|
-
graceful-fs@^4.1.2, graceful-fs@^4.2.4:
|
|
1875
|
-
version "4.2.6"
|
|
1876
|
-
resolved "https://registry.nlark.com/graceful-fs/download/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
|
|
1877
|
-
integrity sha1-/wQLKwhTsjw9MQJ1I3BvGIXXa+4=
|
|
1878
|
-
|
|
1879
|
-
has-flag@^3.0.0:
|
|
1880
|
-
version "3.0.0"
|
|
1881
|
-
resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
|
1882
|
-
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
|
1883
|
-
|
|
1884
|
-
has-flag@^4.0.0:
|
|
1885
|
-
version "4.0.0"
|
|
1886
|
-
resolved "https://registry.npm.taobao.org/has-flag/download/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
|
1887
|
-
integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=
|
|
1888
|
-
|
|
1889
|
-
has-yarn@^2.1.0:
|
|
1890
|
-
version "2.1.0"
|
|
1891
|
-
resolved "https://registry.nlark.com/has-yarn/download/has-yarn-2.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-yarn%2Fdownload%2Fhas-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77"
|
|
1892
|
-
integrity sha1-E34RNUp7W/EapctknPDG8/8rLnc=
|
|
1893
|
-
|
|
1894
|
-
has@^1.0.3:
|
|
1895
|
-
version "1.0.3"
|
|
1896
|
-
resolved "https://registry.nlark.com/has/download/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
|
|
1897
|
-
integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=
|
|
1898
|
-
dependencies:
|
|
1899
|
-
function-bind "^1.1.1"
|
|
1900
|
-
|
|
1901
|
-
html-encoding-sniffer@^2.0.1:
|
|
1902
|
-
version "2.0.1"
|
|
1903
|
-
resolved "https://registry.npm.taobao.org/html-encoding-sniffer/download/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
|
|
1904
|
-
integrity sha1-QqbcT9M/ACgRduiyN1nKTk+hhfM=
|
|
1905
|
-
dependencies:
|
|
1906
|
-
whatwg-encoding "^1.0.5"
|
|
1907
|
-
|
|
1908
|
-
html-escaper@^2.0.0:
|
|
1909
|
-
version "2.0.2"
|
|
1910
|
-
resolved "https://registry.npm.taobao.org/html-escaper/download/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
|
|
1911
|
-
integrity sha1-39YAJ9o2o238viNiYsAKWCJoFFM=
|
|
1912
|
-
|
|
1913
|
-
http-cache-semantics@^4.0.0:
|
|
1914
|
-
version "4.1.0"
|
|
1915
|
-
resolved "https://registry.nlark.com/http-cache-semantics/download/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
|
|
1916
|
-
integrity sha1-SekcXL82yblLz81xwj1SSex045A=
|
|
1917
|
-
|
|
1918
|
-
http-proxy-agent@^4.0.1:
|
|
1919
|
-
version "4.0.1"
|
|
1920
|
-
resolved "https://registry.npm.taobao.org/http-proxy-agent/download/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
|
|
1921
|
-
integrity sha1-ioyO9/WTLM+VPClsqCkblap0qjo=
|
|
1922
|
-
dependencies:
|
|
1923
|
-
"@tootallnate/once" "1"
|
|
1924
|
-
agent-base "6"
|
|
1925
|
-
debug "4"
|
|
1926
|
-
|
|
1927
|
-
https-proxy-agent@^5.0.0:
|
|
1928
|
-
version "5.0.0"
|
|
1929
|
-
resolved "https://registry.nlark.com/https-proxy-agent/download/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
|
|
1930
|
-
integrity sha1-4qkFQqu2inYuCghQ9sntrf2FBrI=
|
|
1931
|
-
dependencies:
|
|
1932
|
-
agent-base "6"
|
|
1933
|
-
debug "4"
|
|
1934
|
-
|
|
1935
|
-
human-signals@^2.1.0:
|
|
1936
|
-
version "2.1.0"
|
|
1937
|
-
resolved "https://registry.npm.taobao.org/human-signals/download/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
|
|
1938
|
-
integrity sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=
|
|
1939
|
-
|
|
1940
|
-
husky@^4.3.8:
|
|
1941
|
-
version "4.3.8"
|
|
1942
|
-
resolved "https://registry.npm.taobao.org/husky/download/husky-4.3.8.tgz?cache=0&sync_timestamp=1617004245593&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhusky%2Fdownload%2Fhusky-4.3.8.tgz#31144060be963fd6850e5cc8f019a1dfe194296d"
|
|
1943
|
-
integrity sha1-MRRAYL6WP9aFDlzI8Bmh3+GUKW0=
|
|
1944
|
-
dependencies:
|
|
1945
|
-
chalk "^4.0.0"
|
|
1946
|
-
ci-info "^2.0.0"
|
|
1947
|
-
compare-versions "^3.6.0"
|
|
1948
|
-
cosmiconfig "^7.0.0"
|
|
1949
|
-
find-versions "^4.0.0"
|
|
1950
|
-
opencollective-postinstall "^2.0.2"
|
|
1951
|
-
pkg-dir "^5.0.0"
|
|
1952
|
-
please-upgrade-node "^3.2.0"
|
|
1953
|
-
slash "^3.0.0"
|
|
1954
|
-
which-pm-runs "^1.0.0"
|
|
1955
|
-
|
|
1956
|
-
iconv-lite@0.4.24:
|
|
1957
|
-
version "0.4.24"
|
|
1958
|
-
resolved "https://registry.nlark.com/iconv-lite/download/iconv-lite-0.4.24.tgz?cache=0&sync_timestamp=1621826342262&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ficonv-lite%2Fdownload%2Ficonv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
|
1959
|
-
integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=
|
|
1960
|
-
dependencies:
|
|
1961
|
-
safer-buffer ">= 2.1.2 < 3"
|
|
1962
|
-
|
|
1963
|
-
ignore-by-default@^1.0.1:
|
|
1964
|
-
version "1.0.1"
|
|
1965
|
-
resolved "https://registry.npm.taobao.org/ignore-by-default/download/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
|
|
1966
|
-
integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk=
|
|
1967
|
-
|
|
1968
|
-
ignore@^4.0.6:
|
|
1969
|
-
version "4.0.6"
|
|
1970
|
-
resolved "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
|
1971
|
-
integrity sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=
|
|
1972
|
-
|
|
1973
|
-
ignore@^5.1.4:
|
|
1974
|
-
version "5.1.8"
|
|
1975
|
-
resolved "https://registry.nlark.com/ignore/download/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
|
|
1976
|
-
integrity sha1-8VCotQo0KJsz4i9YiavU2AFvDlc=
|
|
1977
|
-
|
|
1978
|
-
import-fresh@^3.0.0, import-fresh@^3.2.1:
|
|
1979
|
-
version "3.3.0"
|
|
1980
|
-
resolved "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.3.0.tgz?cache=0&sync_timestamp=1608469579940&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fimport-fresh%2Fdownload%2Fimport-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
|
|
1981
|
-
integrity sha1-NxYsJfy566oublPVtNiM4X2eDCs=
|
|
1982
|
-
dependencies:
|
|
1983
|
-
parent-module "^1.0.0"
|
|
1984
|
-
resolve-from "^4.0.0"
|
|
1985
|
-
|
|
1986
|
-
import-lazy@^2.1.0:
|
|
1987
|
-
version "2.1.0"
|
|
1988
|
-
resolved "https://registry.npm.taobao.org/import-lazy/download/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
|
|
1989
|
-
integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
|
|
1990
|
-
|
|
1991
|
-
import-local@^3.0.2:
|
|
1992
|
-
version "3.0.2"
|
|
1993
|
-
resolved "https://registry.nlark.com/import-local/download/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
|
|
1994
|
-
integrity sha1-qM/QQx0d5KIZlwPQA+PmI2T6bbY=
|
|
1995
|
-
dependencies:
|
|
1996
|
-
pkg-dir "^4.2.0"
|
|
1997
|
-
resolve-cwd "^3.0.0"
|
|
1998
|
-
|
|
1999
|
-
imurmurhash@^0.1.4:
|
|
2000
|
-
version "0.1.4"
|
|
2001
|
-
resolved "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
|
|
2002
|
-
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
|
|
2003
|
-
|
|
2004
|
-
indent-string@^4.0.0:
|
|
2005
|
-
version "4.0.0"
|
|
2006
|
-
resolved "https://registry.nlark.com/indent-string/download/indent-string-4.0.0.tgz?cache=0&sync_timestamp=1618847271946&other_urls=https%3A%2F%2Fregistry.nlark.com%2Findent-string%2Fdownload%2Findent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
|
|
2007
|
-
integrity sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=
|
|
2008
|
-
|
|
2009
|
-
inflight@^1.0.4:
|
|
2010
|
-
version "1.0.6"
|
|
2011
|
-
resolved "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
|
2012
|
-
integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
|
|
2013
|
-
dependencies:
|
|
2014
|
-
once "^1.3.0"
|
|
2015
|
-
wrappy "1"
|
|
2016
|
-
|
|
2017
|
-
inherits@2:
|
|
2018
|
-
version "2.0.4"
|
|
2019
|
-
resolved "https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
|
2020
|
-
integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=
|
|
2021
|
-
|
|
2022
|
-
ini@1.3.7:
|
|
2023
|
-
version "1.3.7"
|
|
2024
|
-
resolved "https://registry.nlark.com/ini/download/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84"
|
|
2025
|
-
integrity sha1-oJNj4ZEZcuoW16iFEAXYTPCamoQ=
|
|
2026
|
-
|
|
2027
|
-
ini@~1.3.0:
|
|
2028
|
-
version "1.3.8"
|
|
2029
|
-
resolved "https://registry.nlark.com/ini/download/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
|
|
2030
|
-
integrity sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=
|
|
2031
|
-
|
|
2032
|
-
is-arrayish@^0.2.1:
|
|
2033
|
-
version "0.2.1"
|
|
2034
|
-
resolved "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
|
2035
|
-
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
|
|
2036
|
-
|
|
2037
|
-
is-binary-path@~2.1.0:
|
|
2038
|
-
version "2.1.0"
|
|
2039
|
-
resolved "https://registry.nlark.com/is-binary-path/download/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
|
2040
|
-
integrity sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=
|
|
2041
|
-
dependencies:
|
|
2042
|
-
binary-extensions "^2.0.0"
|
|
2043
|
-
|
|
2044
|
-
is-ci@^2.0.0:
|
|
2045
|
-
version "2.0.0"
|
|
2046
|
-
resolved "https://registry.nlark.com/is-ci/download/is-ci-2.0.0.tgz?cache=0&sync_timestamp=1618847026826&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-ci%2Fdownload%2Fis-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
|
|
2047
|
-
integrity sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw=
|
|
2048
|
-
dependencies:
|
|
2049
|
-
ci-info "^2.0.0"
|
|
2050
|
-
|
|
2051
|
-
is-ci@^3.0.0:
|
|
2052
|
-
version "3.0.0"
|
|
2053
|
-
resolved "https://registry.nlark.com/is-ci/download/is-ci-3.0.0.tgz?cache=0&sync_timestamp=1618847026826&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-ci%2Fdownload%2Fis-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994"
|
|
2054
|
-
integrity sha1-x+e+PJ2O730PoUQ5C9HkuI3EyZQ=
|
|
2055
|
-
dependencies:
|
|
2056
|
-
ci-info "^3.1.1"
|
|
2057
|
-
|
|
2058
|
-
is-core-module@^2.2.0:
|
|
2059
|
-
version "2.4.0"
|
|
2060
|
-
resolved "https://registry.nlark.com/is-core-module/download/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
|
|
2061
|
-
integrity sha1-jp/I4VAnsBFBgCbpjw5vTYYwXME=
|
|
2062
|
-
dependencies:
|
|
2063
|
-
has "^1.0.3"
|
|
2064
|
-
|
|
2065
|
-
is-extglob@^2.1.1:
|
|
2066
|
-
version "2.1.1"
|
|
2067
|
-
resolved "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
|
2068
|
-
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
|
|
2069
|
-
|
|
2070
|
-
is-fullwidth-code-point@^2.0.0:
|
|
2071
|
-
version "2.0.0"
|
|
2072
|
-
resolved "https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
|
|
2073
|
-
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
|
|
2074
|
-
|
|
2075
|
-
is-fullwidth-code-point@^3.0.0:
|
|
2076
|
-
version "3.0.0"
|
|
2077
|
-
resolved "https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
|
|
2078
|
-
integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=
|
|
2079
|
-
|
|
2080
|
-
is-generator-fn@^2.0.0:
|
|
2081
|
-
version "2.1.0"
|
|
2082
|
-
resolved "https://registry.nlark.com/is-generator-fn/download/is-generator-fn-2.1.0.tgz?cache=0&sync_timestamp=1618847015004&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-generator-fn%2Fdownload%2Fis-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
|
|
2083
|
-
integrity sha1-fRQK3DiarzARqPKipM+m+q3/sRg=
|
|
2084
|
-
|
|
2085
|
-
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
|
|
2086
|
-
version "4.0.1"
|
|
2087
|
-
resolved "https://registry.nlark.com/is-glob/download/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
|
|
2088
|
-
integrity sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=
|
|
2089
|
-
dependencies:
|
|
2090
|
-
is-extglob "^2.1.1"
|
|
2091
|
-
|
|
2092
|
-
is-installed-globally@^0.3.1:
|
|
2093
|
-
version "0.3.2"
|
|
2094
|
-
resolved "https://registry.npm.taobao.org/is-installed-globally/download/is-installed-globally-0.3.2.tgz?cache=0&sync_timestamp=1610875398433&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-installed-globally%2Fdownload%2Fis-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141"
|
|
2095
|
-
integrity sha1-/T76ee5nDRGHIzGC1bCh3QAxMUE=
|
|
2096
|
-
dependencies:
|
|
2097
|
-
global-dirs "^2.0.1"
|
|
2098
|
-
is-path-inside "^3.0.1"
|
|
2099
|
-
|
|
2100
|
-
is-npm@^4.0.0:
|
|
2101
|
-
version "4.0.0"
|
|
2102
|
-
resolved "https://registry.nlark.com/is-npm/download/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d"
|
|
2103
|
-
integrity sha1-yQ3YOAaW34enptgjwg0LErvjyE0=
|
|
2104
|
-
|
|
2105
|
-
is-number@^7.0.0:
|
|
2106
|
-
version "7.0.0"
|
|
2107
|
-
resolved "https://registry.npm.taobao.org/is-number/download/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
|
2108
|
-
integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=
|
|
2109
|
-
|
|
2110
|
-
is-obj@^1.0.1:
|
|
2111
|
-
version "1.0.1"
|
|
2112
|
-
resolved "https://registry.nlark.com/is-obj/download/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
|
|
2113
|
-
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
|
|
2114
|
-
|
|
2115
|
-
is-obj@^2.0.0:
|
|
2116
|
-
version "2.0.0"
|
|
2117
|
-
resolved "https://registry.nlark.com/is-obj/download/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
|
|
2118
|
-
integrity sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=
|
|
2119
|
-
|
|
2120
|
-
is-path-inside@^3.0.1:
|
|
2121
|
-
version "3.0.3"
|
|
2122
|
-
resolved "https://registry.nlark.com/is-path-inside/download/is-path-inside-3.0.3.tgz?cache=0&sync_timestamp=1620046845369&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-path-inside%2Fdownload%2Fis-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
|
|
2123
|
-
integrity sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=
|
|
2124
|
-
|
|
2125
|
-
is-potential-custom-element-name@^1.0.1:
|
|
2126
|
-
version "1.0.1"
|
|
2127
|
-
resolved "https://registry.nlark.com/is-potential-custom-element-name/download/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
|
|
2128
|
-
integrity sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=
|
|
2129
|
-
|
|
2130
|
-
is-regexp@^1.0.0:
|
|
2131
|
-
version "1.0.0"
|
|
2132
|
-
resolved "https://registry.npm.taobao.org/is-regexp/download/is-regexp-1.0.0.tgz?cache=0&sync_timestamp=1617816768041&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-regexp%2Fdownload%2Fis-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
|
|
2133
|
-
integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
|
|
2134
|
-
|
|
2135
|
-
is-stream@^2.0.0:
|
|
2136
|
-
version "2.0.0"
|
|
2137
|
-
resolved "https://registry.npm.taobao.org/is-stream/download/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
|
|
2138
|
-
integrity sha1-venDJoDW+uBBKdasnZIc54FfeOM=
|
|
2139
|
-
|
|
2140
|
-
is-typedarray@^1.0.0:
|
|
2141
|
-
version "1.0.0"
|
|
2142
|
-
resolved "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
|
2143
|
-
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
|
|
2144
|
-
|
|
2145
|
-
is-unicode-supported@^0.1.0:
|
|
2146
|
-
version "0.1.0"
|
|
2147
|
-
resolved "https://registry.npm.taobao.org/is-unicode-supported/download/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
|
|
2148
|
-
integrity sha1-PybHaoCVk7Ur+i7LVxDtJ3m1Iqc=
|
|
2149
|
-
|
|
2150
|
-
is-yarn-global@^0.3.0:
|
|
2151
|
-
version "0.3.0"
|
|
2152
|
-
resolved "https://registry.nlark.com/is-yarn-global/download/is-yarn-global-0.3.0.tgz?cache=0&sync_timestamp=1619356824740&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-yarn-global%2Fdownload%2Fis-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232"
|
|
2153
|
-
integrity sha1-1QLTOCWQ6jAEiTdGdUyJE5lz4jI=
|
|
2154
|
-
|
|
2155
|
-
isexe@^2.0.0:
|
|
2156
|
-
version "2.0.0"
|
|
2157
|
-
resolved "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
|
2158
|
-
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
|
|
2159
|
-
|
|
2160
|
-
istanbul-lib-coverage@^3.0.0:
|
|
2161
|
-
version "3.0.0"
|
|
2162
|
-
resolved "https://registry.npm.taobao.org/istanbul-lib-coverage/download/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
|
|
2163
|
-
integrity sha1-9ZRKN8cLVQsCp4pcOyBVsoDOyOw=
|
|
2164
|
-
|
|
2165
|
-
istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3:
|
|
2166
|
-
version "4.0.3"
|
|
2167
|
-
resolved "https://registry.npm.taobao.org/istanbul-lib-instrument/download/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
|
|
2168
|
-
integrity sha1-hzxv/4l0UBGCIndGlqPyiQLXfB0=
|
|
2169
|
-
dependencies:
|
|
2170
|
-
"@babel/core" "^7.7.5"
|
|
2171
|
-
"@istanbuljs/schema" "^0.1.2"
|
|
2172
|
-
istanbul-lib-coverage "^3.0.0"
|
|
2173
|
-
semver "^6.3.0"
|
|
2174
|
-
|
|
2175
|
-
istanbul-lib-report@^3.0.0:
|
|
2176
|
-
version "3.0.0"
|
|
2177
|
-
resolved "https://registry.npm.taobao.org/istanbul-lib-report/download/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
|
|
2178
|
-
integrity sha1-dRj+UupE3jcvRgp2tezan/tz2KY=
|
|
2179
|
-
dependencies:
|
|
2180
|
-
istanbul-lib-coverage "^3.0.0"
|
|
2181
|
-
make-dir "^3.0.0"
|
|
2182
|
-
supports-color "^7.1.0"
|
|
2183
|
-
|
|
2184
|
-
istanbul-lib-source-maps@^4.0.0:
|
|
2185
|
-
version "4.0.0"
|
|
2186
|
-
resolved "https://registry.npm.taobao.org/istanbul-lib-source-maps/download/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
|
|
2187
|
-
integrity sha1-dXQ85tlruG3H7kNSz2Nmoj8LGtk=
|
|
2188
|
-
dependencies:
|
|
2189
|
-
debug "^4.1.1"
|
|
2190
|
-
istanbul-lib-coverage "^3.0.0"
|
|
2191
|
-
source-map "^0.6.1"
|
|
2192
|
-
|
|
2193
|
-
istanbul-reports@^3.0.2:
|
|
2194
|
-
version "3.0.2"
|
|
2195
|
-
resolved "https://registry.nlark.com/istanbul-reports/download/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
|
|
2196
|
-
integrity sha1-1ZMhDlAAaDdQywn8BkTktuJ/1Ts=
|
|
2197
|
-
dependencies:
|
|
2198
|
-
html-escaper "^2.0.0"
|
|
2199
|
-
istanbul-lib-report "^3.0.0"
|
|
2200
|
-
|
|
2201
|
-
jest-changed-files@^27.0.2:
|
|
2202
|
-
version "27.0.2"
|
|
2203
|
-
resolved "https://registry.nlark.com/jest-changed-files/download/jest-changed-files-27.0.2.tgz?cache=0&sync_timestamp=1622290161504&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-changed-files%2Fdownload%2Fjest-changed-files-27.0.2.tgz#997253042b4a032950fc5f56abf3c5d1f8560801"
|
|
2204
|
-
integrity sha1-mXJTBCtKAylQ/F9Wq/PF0fhWCAE=
|
|
2205
|
-
dependencies:
|
|
2206
|
-
"@jest/types" "^27.0.2"
|
|
2207
|
-
execa "^5.0.0"
|
|
2208
|
-
throat "^6.0.1"
|
|
2209
|
-
|
|
2210
|
-
jest-circus@^27.0.4:
|
|
2211
|
-
version "27.0.4"
|
|
2212
|
-
resolved "https://registry.nlark.com/jest-circus/download/jest-circus-27.0.4.tgz#3b261514ee3b3da33def736a6352c98ff56bb6e6"
|
|
2213
|
-
integrity sha1-OyYVFO47PaM973NqY1LJj/VrtuY=
|
|
2214
|
-
dependencies:
|
|
2215
|
-
"@jest/environment" "^27.0.3"
|
|
2216
|
-
"@jest/test-result" "^27.0.2"
|
|
2217
|
-
"@jest/types" "^27.0.2"
|
|
2218
|
-
"@types/node" "*"
|
|
2219
|
-
chalk "^4.0.0"
|
|
2220
|
-
co "^4.6.0"
|
|
2221
|
-
dedent "^0.7.0"
|
|
2222
|
-
expect "^27.0.2"
|
|
2223
|
-
is-generator-fn "^2.0.0"
|
|
2224
|
-
jest-each "^27.0.2"
|
|
2225
|
-
jest-matcher-utils "^27.0.2"
|
|
2226
|
-
jest-message-util "^27.0.2"
|
|
2227
|
-
jest-runtime "^27.0.4"
|
|
2228
|
-
jest-snapshot "^27.0.4"
|
|
2229
|
-
jest-util "^27.0.2"
|
|
2230
|
-
pretty-format "^27.0.2"
|
|
2231
|
-
slash "^3.0.0"
|
|
2232
|
-
stack-utils "^2.0.3"
|
|
2233
|
-
throat "^6.0.1"
|
|
2234
|
-
|
|
2235
|
-
jest-cli@^27.0.4:
|
|
2236
|
-
version "27.0.4"
|
|
2237
|
-
resolved "https://registry.nlark.com/jest-cli/download/jest-cli-27.0.4.tgz#491b12c754c0d7c6873b13a66f26b3a80a852910"
|
|
2238
|
-
integrity sha1-SRsSx1TA18aHOxOmbyazqAqFKRA=
|
|
2239
|
-
dependencies:
|
|
2240
|
-
"@jest/core" "^27.0.4"
|
|
2241
|
-
"@jest/test-result" "^27.0.2"
|
|
2242
|
-
"@jest/types" "^27.0.2"
|
|
2243
|
-
chalk "^4.0.0"
|
|
2244
|
-
exit "^0.1.2"
|
|
2245
|
-
graceful-fs "^4.2.4"
|
|
2246
|
-
import-local "^3.0.2"
|
|
2247
|
-
jest-config "^27.0.4"
|
|
2248
|
-
jest-util "^27.0.2"
|
|
2249
|
-
jest-validate "^27.0.2"
|
|
2250
|
-
prompts "^2.0.1"
|
|
2251
|
-
yargs "^16.0.3"
|
|
2252
|
-
|
|
2253
|
-
jest-config@^27.0.4:
|
|
2254
|
-
version "27.0.4"
|
|
2255
|
-
resolved "https://registry.nlark.com/jest-config/download/jest-config-27.0.4.tgz?cache=0&sync_timestamp=1622709598485&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-config%2Fdownload%2Fjest-config-27.0.4.tgz#c4f41378acf40ca77860fb4e213b12109d87b8cf"
|
|
2256
|
-
integrity sha1-xPQTeKz0DKd4YPtOITsSEJ2HuM8=
|
|
2257
|
-
dependencies:
|
|
2258
|
-
"@babel/core" "^7.1.0"
|
|
2259
|
-
"@jest/test-sequencer" "^27.0.4"
|
|
2260
|
-
"@jest/types" "^27.0.2"
|
|
2261
|
-
babel-jest "^27.0.2"
|
|
2262
|
-
chalk "^4.0.0"
|
|
2263
|
-
deepmerge "^4.2.2"
|
|
2264
|
-
glob "^7.1.1"
|
|
2265
|
-
graceful-fs "^4.2.4"
|
|
2266
|
-
is-ci "^3.0.0"
|
|
2267
|
-
jest-circus "^27.0.4"
|
|
2268
|
-
jest-environment-jsdom "^27.0.3"
|
|
2269
|
-
jest-environment-node "^27.0.3"
|
|
2270
|
-
jest-get-type "^27.0.1"
|
|
2271
|
-
jest-jasmine2 "^27.0.4"
|
|
2272
|
-
jest-regex-util "^27.0.1"
|
|
2273
|
-
jest-resolve "^27.0.4"
|
|
2274
|
-
jest-runner "^27.0.4"
|
|
2275
|
-
jest-util "^27.0.2"
|
|
2276
|
-
jest-validate "^27.0.2"
|
|
2277
|
-
micromatch "^4.0.4"
|
|
2278
|
-
pretty-format "^27.0.2"
|
|
2279
|
-
|
|
2280
|
-
jest-diff@^26.0.0:
|
|
2281
|
-
version "26.6.2"
|
|
2282
|
-
resolved "https://registry.nlark.com/jest-diff/download/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394"
|
|
2283
|
-
integrity sha1-GqdGi1LDpo19XF/c381eSb0WQ5Q=
|
|
2284
|
-
dependencies:
|
|
2285
|
-
chalk "^4.0.0"
|
|
2286
|
-
diff-sequences "^26.6.2"
|
|
2287
|
-
jest-get-type "^26.3.0"
|
|
2288
|
-
pretty-format "^26.6.2"
|
|
2289
|
-
|
|
2290
|
-
jest-diff@^27.0.2:
|
|
2291
|
-
version "27.0.2"
|
|
2292
|
-
resolved "https://registry.nlark.com/jest-diff/download/jest-diff-27.0.2.tgz#f315b87cee5dc134cf42c2708ab27375cc3f5a7e"
|
|
2293
|
-
integrity sha1-8xW4fO5dwTTPQsJwirJzdcw/Wn4=
|
|
2294
|
-
dependencies:
|
|
2295
|
-
chalk "^4.0.0"
|
|
2296
|
-
diff-sequences "^27.0.1"
|
|
2297
|
-
jest-get-type "^27.0.1"
|
|
2298
|
-
pretty-format "^27.0.2"
|
|
2299
|
-
|
|
2300
|
-
jest-docblock@^27.0.1:
|
|
2301
|
-
version "27.0.1"
|
|
2302
|
-
resolved "https://registry.nlark.com/jest-docblock/download/jest-docblock-27.0.1.tgz?cache=0&sync_timestamp=1621937309424&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-docblock%2Fdownload%2Fjest-docblock-27.0.1.tgz#bd9752819b49fa4fab1a50b73eb58c653b962e8b"
|
|
2303
|
-
integrity sha1-vZdSgZtJ+k+rGlC3PrWMZTuWLos=
|
|
2304
|
-
dependencies:
|
|
2305
|
-
detect-newline "^3.0.0"
|
|
2306
|
-
|
|
2307
|
-
jest-each@^27.0.2:
|
|
2308
|
-
version "27.0.2"
|
|
2309
|
-
resolved "https://registry.nlark.com/jest-each/download/jest-each-27.0.2.tgz#865ddb4367476ced752167926b656fa0dcecd8c7"
|
|
2310
|
-
integrity sha1-hl3bQ2dHbO11IWeSa2VvoNzs2Mc=
|
|
2311
|
-
dependencies:
|
|
2312
|
-
"@jest/types" "^27.0.2"
|
|
2313
|
-
chalk "^4.0.0"
|
|
2314
|
-
jest-get-type "^27.0.1"
|
|
2315
|
-
jest-util "^27.0.2"
|
|
2316
|
-
pretty-format "^27.0.2"
|
|
2317
|
-
|
|
2318
|
-
jest-environment-jsdom@^27.0.3:
|
|
2319
|
-
version "27.0.3"
|
|
2320
|
-
resolved "https://registry.nlark.com/jest-environment-jsdom/download/jest-environment-jsdom-27.0.3.tgz?cache=0&sync_timestamp=1622310939432&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-jsdom%2Fdownload%2Fjest-environment-jsdom-27.0.3.tgz#ed73e913ddc03864eb9f934b5cbabf1b63504e2e"
|
|
2321
|
-
integrity sha1-7XPpE93AOGTrn5NLXLq/G2NQTi4=
|
|
2322
|
-
dependencies:
|
|
2323
|
-
"@jest/environment" "^27.0.3"
|
|
2324
|
-
"@jest/fake-timers" "^27.0.3"
|
|
2325
|
-
"@jest/types" "^27.0.2"
|
|
2326
|
-
"@types/node" "*"
|
|
2327
|
-
jest-mock "^27.0.3"
|
|
2328
|
-
jest-util "^27.0.2"
|
|
2329
|
-
jsdom "^16.6.0"
|
|
2330
|
-
|
|
2331
|
-
jest-environment-node@^27.0.3:
|
|
2332
|
-
version "27.0.3"
|
|
2333
|
-
resolved "https://registry.nlark.com/jest-environment-node/download/jest-environment-node-27.0.3.tgz?cache=0&sync_timestamp=1622310963734&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-environment-node%2Fdownload%2Fjest-environment-node-27.0.3.tgz#b4acb3679d2552a4215732cab8b0ca7ec4398ee0"
|
|
2334
|
-
integrity sha1-tKyzZ50lUqQhVzLKuLDKfsQ5juA=
|
|
2335
|
-
dependencies:
|
|
2336
|
-
"@jest/environment" "^27.0.3"
|
|
2337
|
-
"@jest/fake-timers" "^27.0.3"
|
|
2338
|
-
"@jest/types" "^27.0.2"
|
|
2339
|
-
"@types/node" "*"
|
|
2340
|
-
jest-mock "^27.0.3"
|
|
2341
|
-
jest-util "^27.0.2"
|
|
2342
|
-
|
|
2343
|
-
jest-get-type@^26.3.0:
|
|
2344
|
-
version "26.3.0"
|
|
2345
|
-
resolved "https://registry.nlark.com/jest-get-type/download/jest-get-type-26.3.0.tgz?cache=0&sync_timestamp=1621937309906&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
|
|
2346
|
-
integrity sha1-6X3Dw/U8K0Bsp6+u1Ek7HQmRmeA=
|
|
2347
|
-
|
|
2348
|
-
jest-get-type@^27.0.1:
|
|
2349
|
-
version "27.0.1"
|
|
2350
|
-
resolved "https://registry.nlark.com/jest-get-type/download/jest-get-type-27.0.1.tgz?cache=0&sync_timestamp=1621937309906&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-get-type%2Fdownload%2Fjest-get-type-27.0.1.tgz#34951e2b08c8801eb28559d7eb732b04bbcf7815"
|
|
2351
|
-
integrity sha1-NJUeKwjIgB6yhVnX63MrBLvPeBU=
|
|
2352
|
-
|
|
2353
|
-
jest-haste-map@^27.0.2:
|
|
2354
|
-
version "27.0.2"
|
|
2355
|
-
resolved "https://registry.nlark.com/jest-haste-map/download/jest-haste-map-27.0.2.tgz#3f1819400c671237e48b4d4b76a80a0dbed7577f"
|
|
2356
|
-
integrity sha1-PxgZQAxnEjfki01LdqgKDb7XV38=
|
|
2357
|
-
dependencies:
|
|
2358
|
-
"@jest/types" "^27.0.2"
|
|
2359
|
-
"@types/graceful-fs" "^4.1.2"
|
|
2360
|
-
"@types/node" "*"
|
|
2361
|
-
anymatch "^3.0.3"
|
|
2362
|
-
fb-watchman "^2.0.0"
|
|
2363
|
-
graceful-fs "^4.2.4"
|
|
2364
|
-
jest-regex-util "^27.0.1"
|
|
2365
|
-
jest-serializer "^27.0.1"
|
|
2366
|
-
jest-util "^27.0.2"
|
|
2367
|
-
jest-worker "^27.0.2"
|
|
2368
|
-
micromatch "^4.0.4"
|
|
2369
|
-
walker "^1.0.7"
|
|
2370
|
-
optionalDependencies:
|
|
2371
|
-
fsevents "^2.3.2"
|
|
2372
|
-
|
|
2373
|
-
jest-jasmine2@^27.0.4:
|
|
2374
|
-
version "27.0.4"
|
|
2375
|
-
resolved "https://registry.nlark.com/jest-jasmine2/download/jest-jasmine2-27.0.4.tgz?cache=0&sync_timestamp=1622709024575&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-jasmine2%2Fdownload%2Fjest-jasmine2-27.0.4.tgz#c669519ccf4904a485338555e1e66cad36bb0670"
|
|
2376
|
-
integrity sha1-xmlRnM9JBKSFM4VV4eZsrTa7BnA=
|
|
2377
|
-
dependencies:
|
|
2378
|
-
"@babel/traverse" "^7.1.0"
|
|
2379
|
-
"@jest/environment" "^27.0.3"
|
|
2380
|
-
"@jest/source-map" "^27.0.1"
|
|
2381
|
-
"@jest/test-result" "^27.0.2"
|
|
2382
|
-
"@jest/types" "^27.0.2"
|
|
2383
|
-
"@types/node" "*"
|
|
2384
|
-
chalk "^4.0.0"
|
|
2385
|
-
co "^4.6.0"
|
|
2386
|
-
expect "^27.0.2"
|
|
2387
|
-
is-generator-fn "^2.0.0"
|
|
2388
|
-
jest-each "^27.0.2"
|
|
2389
|
-
jest-matcher-utils "^27.0.2"
|
|
2390
|
-
jest-message-util "^27.0.2"
|
|
2391
|
-
jest-runtime "^27.0.4"
|
|
2392
|
-
jest-snapshot "^27.0.4"
|
|
2393
|
-
jest-util "^27.0.2"
|
|
2394
|
-
pretty-format "^27.0.2"
|
|
2395
|
-
throat "^6.0.1"
|
|
2396
|
-
|
|
2397
|
-
jest-leak-detector@^27.0.2:
|
|
2398
|
-
version "27.0.2"
|
|
2399
|
-
resolved "https://registry.nlark.com/jest-leak-detector/download/jest-leak-detector-27.0.2.tgz?cache=0&sync_timestamp=1622290306304&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-leak-detector%2Fdownload%2Fjest-leak-detector-27.0.2.tgz#ce19aa9dbcf7a72a9d58907a970427506f624e69"
|
|
2400
|
-
integrity sha1-zhmqnbz3pyqdWJB6lwQnUG9iTmk=
|
|
2401
|
-
dependencies:
|
|
2402
|
-
jest-get-type "^27.0.1"
|
|
2403
|
-
pretty-format "^27.0.2"
|
|
2404
|
-
|
|
2405
|
-
jest-matcher-utils@^27.0.2:
|
|
2406
|
-
version "27.0.2"
|
|
2407
|
-
resolved "https://registry.nlark.com/jest-matcher-utils/download/jest-matcher-utils-27.0.2.tgz?cache=0&sync_timestamp=1622290307105&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-matcher-utils%2Fdownload%2Fjest-matcher-utils-27.0.2.tgz#f14c060605a95a466cdc759acc546c6f4cbfc4f0"
|
|
2408
|
-
integrity sha1-8UwGBgWpWkZs3HWazFRsb0y/xPA=
|
|
2409
|
-
dependencies:
|
|
2410
|
-
chalk "^4.0.0"
|
|
2411
|
-
jest-diff "^27.0.2"
|
|
2412
|
-
jest-get-type "^27.0.1"
|
|
2413
|
-
pretty-format "^27.0.2"
|
|
2414
|
-
|
|
2415
|
-
jest-message-util@^27.0.2:
|
|
2416
|
-
version "27.0.2"
|
|
2417
|
-
resolved "https://registry.nlark.com/jest-message-util/download/jest-message-util-27.0.2.tgz#181c9b67dff504d8f4ad15cba10d8b80f272048c"
|
|
2418
|
-
integrity sha1-GBybZ9/1BNj0rRXLoQ2LgPJyBIw=
|
|
2419
|
-
dependencies:
|
|
2420
|
-
"@babel/code-frame" "^7.12.13"
|
|
2421
|
-
"@jest/types" "^27.0.2"
|
|
2422
|
-
"@types/stack-utils" "^2.0.0"
|
|
2423
|
-
chalk "^4.0.0"
|
|
2424
|
-
graceful-fs "^4.2.4"
|
|
2425
|
-
micromatch "^4.0.4"
|
|
2426
|
-
pretty-format "^27.0.2"
|
|
2427
|
-
slash "^3.0.0"
|
|
2428
|
-
stack-utils "^2.0.3"
|
|
2429
|
-
|
|
2430
|
-
jest-mock@^27.0.3:
|
|
2431
|
-
version "27.0.3"
|
|
2432
|
-
resolved "https://registry.nlark.com/jest-mock/download/jest-mock-27.0.3.tgz#5591844f9192b3335c0dca38e8e45ed297d4d23d"
|
|
2433
|
-
integrity sha1-VZGET5GSszNcDco46ORe0pfU0j0=
|
|
2434
|
-
dependencies:
|
|
2435
|
-
"@jest/types" "^27.0.2"
|
|
2436
|
-
"@types/node" "*"
|
|
2437
|
-
|
|
2438
|
-
jest-pnp-resolver@^1.2.2:
|
|
2439
|
-
version "1.2.2"
|
|
2440
|
-
resolved "https://registry.npm.taobao.org/jest-pnp-resolver/download/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
|
|
2441
|
-
integrity sha1-twSsCuAoqJEIpNBAs/kZ393I4zw=
|
|
2442
|
-
|
|
2443
|
-
jest-regex-util@^27.0.1:
|
|
2444
|
-
version "27.0.1"
|
|
2445
|
-
resolved "https://registry.nlark.com/jest-regex-util/download/jest-regex-util-27.0.1.tgz?cache=0&sync_timestamp=1621937288780&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-regex-util%2Fdownload%2Fjest-regex-util-27.0.1.tgz#69d4b1bf5b690faa3490113c47486ed85dd45b68"
|
|
2446
|
-
integrity sha1-adSxv1tpD6o0kBE8R0hu2F3UW2g=
|
|
2447
|
-
|
|
2448
|
-
jest-resolve-dependencies@^27.0.4:
|
|
2449
|
-
version "27.0.4"
|
|
2450
|
-
resolved "https://registry.nlark.com/jest-resolve-dependencies/download/jest-resolve-dependencies-27.0.4.tgz?cache=0&sync_timestamp=1622709048970&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-resolve-dependencies%2Fdownload%2Fjest-resolve-dependencies-27.0.4.tgz#a07a242d70d668afd3fcf7f4270755eebb1fe579"
|
|
2451
|
-
integrity sha1-oHokLXDWaK/T/Pf0JwdV7rsf5Xk=
|
|
2452
|
-
dependencies:
|
|
2453
|
-
"@jest/types" "^27.0.2"
|
|
2454
|
-
jest-regex-util "^27.0.1"
|
|
2455
|
-
jest-snapshot "^27.0.4"
|
|
2456
|
-
|
|
2457
|
-
jest-resolve@^27.0.4:
|
|
2458
|
-
version "27.0.4"
|
|
2459
|
-
resolved "https://registry.nlark.com/jest-resolve/download/jest-resolve-27.0.4.tgz#8a27bc3f2f00c8ea28f3bc99bbf6f468300a703d"
|
|
2460
|
-
integrity sha1-iie8Py8AyOoo87yZu/b0aDAKcD0=
|
|
2461
|
-
dependencies:
|
|
2462
|
-
"@jest/types" "^27.0.2"
|
|
2463
|
-
chalk "^4.0.0"
|
|
2464
|
-
escalade "^3.1.1"
|
|
2465
|
-
graceful-fs "^4.2.4"
|
|
2466
|
-
jest-pnp-resolver "^1.2.2"
|
|
2467
|
-
jest-util "^27.0.2"
|
|
2468
|
-
jest-validate "^27.0.2"
|
|
2469
|
-
resolve "^1.20.0"
|
|
2470
|
-
slash "^3.0.0"
|
|
2471
|
-
|
|
2472
|
-
jest-runner@^27.0.4:
|
|
2473
|
-
version "27.0.4"
|
|
2474
|
-
resolved "https://registry.nlark.com/jest-runner/download/jest-runner-27.0.4.tgz#2787170a9509b792ae129794f6944d27d5d12a4f"
|
|
2475
|
-
integrity sha1-J4cXCpUJt5KuEpeU9pRNJ9XRKk8=
|
|
2476
|
-
dependencies:
|
|
2477
|
-
"@jest/console" "^27.0.2"
|
|
2478
|
-
"@jest/environment" "^27.0.3"
|
|
2479
|
-
"@jest/test-result" "^27.0.2"
|
|
2480
|
-
"@jest/transform" "^27.0.2"
|
|
2481
|
-
"@jest/types" "^27.0.2"
|
|
2482
|
-
"@types/node" "*"
|
|
2483
|
-
chalk "^4.0.0"
|
|
2484
|
-
emittery "^0.8.1"
|
|
2485
|
-
exit "^0.1.2"
|
|
2486
|
-
graceful-fs "^4.2.4"
|
|
2487
|
-
jest-docblock "^27.0.1"
|
|
2488
|
-
jest-environment-jsdom "^27.0.3"
|
|
2489
|
-
jest-environment-node "^27.0.3"
|
|
2490
|
-
jest-haste-map "^27.0.2"
|
|
2491
|
-
jest-leak-detector "^27.0.2"
|
|
2492
|
-
jest-message-util "^27.0.2"
|
|
2493
|
-
jest-resolve "^27.0.4"
|
|
2494
|
-
jest-runtime "^27.0.4"
|
|
2495
|
-
jest-util "^27.0.2"
|
|
2496
|
-
jest-worker "^27.0.2"
|
|
2497
|
-
source-map-support "^0.5.6"
|
|
2498
|
-
throat "^6.0.1"
|
|
2499
|
-
|
|
2500
|
-
jest-runtime@^27.0.4:
|
|
2501
|
-
version "27.0.4"
|
|
2502
|
-
resolved "https://registry.nlark.com/jest-runtime/download/jest-runtime-27.0.4.tgz#2e4a6aa77cac32ac612dfe12768387a8aa15c2f0"
|
|
2503
|
-
integrity sha1-Lkpqp3ysMqxhLf4SdoOHqKoVwvA=
|
|
2504
|
-
dependencies:
|
|
2505
|
-
"@jest/console" "^27.0.2"
|
|
2506
|
-
"@jest/environment" "^27.0.3"
|
|
2507
|
-
"@jest/fake-timers" "^27.0.3"
|
|
2508
|
-
"@jest/globals" "^27.0.3"
|
|
2509
|
-
"@jest/source-map" "^27.0.1"
|
|
2510
|
-
"@jest/test-result" "^27.0.2"
|
|
2511
|
-
"@jest/transform" "^27.0.2"
|
|
2512
|
-
"@jest/types" "^27.0.2"
|
|
2513
|
-
"@types/yargs" "^16.0.0"
|
|
2514
|
-
chalk "^4.0.0"
|
|
2515
|
-
cjs-module-lexer "^1.0.0"
|
|
2516
|
-
collect-v8-coverage "^1.0.0"
|
|
2517
|
-
exit "^0.1.2"
|
|
2518
|
-
glob "^7.1.3"
|
|
2519
|
-
graceful-fs "^4.2.4"
|
|
2520
|
-
jest-haste-map "^27.0.2"
|
|
2521
|
-
jest-message-util "^27.0.2"
|
|
2522
|
-
jest-mock "^27.0.3"
|
|
2523
|
-
jest-regex-util "^27.0.1"
|
|
2524
|
-
jest-resolve "^27.0.4"
|
|
2525
|
-
jest-snapshot "^27.0.4"
|
|
2526
|
-
jest-util "^27.0.2"
|
|
2527
|
-
jest-validate "^27.0.2"
|
|
2528
|
-
slash "^3.0.0"
|
|
2529
|
-
strip-bom "^4.0.0"
|
|
2530
|
-
yargs "^16.0.3"
|
|
2531
|
-
|
|
2532
|
-
jest-serializer@^27.0.1:
|
|
2533
|
-
version "27.0.1"
|
|
2534
|
-
resolved "https://registry.nlark.com/jest-serializer/download/jest-serializer-27.0.1.tgz?cache=0&sync_timestamp=1621937299580&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-serializer%2Fdownload%2Fjest-serializer-27.0.1.tgz#2464d04dcc33fb71dc80b7c82e3c5e8a08cb1020"
|
|
2535
|
-
integrity sha1-JGTQTcwz+3HcgLfILjxeigjLECA=
|
|
2536
|
-
dependencies:
|
|
2537
|
-
"@types/node" "*"
|
|
2538
|
-
graceful-fs "^4.2.4"
|
|
2539
|
-
|
|
2540
|
-
jest-snapshot@^27.0.4:
|
|
2541
|
-
version "27.0.4"
|
|
2542
|
-
resolved "https://registry.nlark.com/jest-snapshot/download/jest-snapshot-27.0.4.tgz#2b96e22ca90382b3e93bd0aae2ce4c78bf51fb5b"
|
|
2543
|
-
integrity sha1-K5biLKkDgrPpO9Cq4s5MeL9R+1s=
|
|
2544
|
-
dependencies:
|
|
2545
|
-
"@babel/core" "^7.7.2"
|
|
2546
|
-
"@babel/generator" "^7.7.2"
|
|
2547
|
-
"@babel/parser" "^7.7.2"
|
|
2548
|
-
"@babel/plugin-syntax-typescript" "^7.7.2"
|
|
2549
|
-
"@babel/traverse" "^7.7.2"
|
|
2550
|
-
"@babel/types" "^7.0.0"
|
|
2551
|
-
"@jest/transform" "^27.0.2"
|
|
2552
|
-
"@jest/types" "^27.0.2"
|
|
2553
|
-
"@types/babel__traverse" "^7.0.4"
|
|
2554
|
-
"@types/prettier" "^2.1.5"
|
|
2555
|
-
babel-preset-current-node-syntax "^1.0.0"
|
|
2556
|
-
chalk "^4.0.0"
|
|
2557
|
-
expect "^27.0.2"
|
|
2558
|
-
graceful-fs "^4.2.4"
|
|
2559
|
-
jest-diff "^27.0.2"
|
|
2560
|
-
jest-get-type "^27.0.1"
|
|
2561
|
-
jest-haste-map "^27.0.2"
|
|
2562
|
-
jest-matcher-utils "^27.0.2"
|
|
2563
|
-
jest-message-util "^27.0.2"
|
|
2564
|
-
jest-resolve "^27.0.4"
|
|
2565
|
-
jest-util "^27.0.2"
|
|
2566
|
-
natural-compare "^1.4.0"
|
|
2567
|
-
pretty-format "^27.0.2"
|
|
2568
|
-
semver "^7.3.2"
|
|
2569
|
-
|
|
2570
|
-
jest-util@^27.0.0, jest-util@^27.0.2:
|
|
2571
|
-
version "27.0.2"
|
|
2572
|
-
resolved "https://registry.nlark.com/jest-util/download/jest-util-27.0.2.tgz#fc2c7ace3c75ae561cf1e5fdb643bf685a5be7c7"
|
|
2573
|
-
integrity sha1-/Cx6zjx1rlYc8eX9tkO/aFpb58c=
|
|
2574
|
-
dependencies:
|
|
2575
|
-
"@jest/types" "^27.0.2"
|
|
2576
|
-
"@types/node" "*"
|
|
2577
|
-
chalk "^4.0.0"
|
|
2578
|
-
graceful-fs "^4.2.4"
|
|
2579
|
-
is-ci "^3.0.0"
|
|
2580
|
-
picomatch "^2.2.3"
|
|
2581
|
-
|
|
2582
|
-
jest-validate@^27.0.2:
|
|
2583
|
-
version "27.0.2"
|
|
2584
|
-
resolved "https://registry.nlark.com/jest-validate/download/jest-validate-27.0.2.tgz#7fe2c100089449cd5cbb47a5b0b6cb7cda5beee5"
|
|
2585
|
-
integrity sha1-f+LBAAiUSc1cu0elsLbLfNpb7uU=
|
|
2586
|
-
dependencies:
|
|
2587
|
-
"@jest/types" "^27.0.2"
|
|
2588
|
-
camelcase "^6.2.0"
|
|
2589
|
-
chalk "^4.0.0"
|
|
2590
|
-
jest-get-type "^27.0.1"
|
|
2591
|
-
leven "^3.1.0"
|
|
2592
|
-
pretty-format "^27.0.2"
|
|
2593
|
-
|
|
2594
|
-
jest-watcher@^27.0.2:
|
|
2595
|
-
version "27.0.2"
|
|
2596
|
-
resolved "https://registry.nlark.com/jest-watcher/download/jest-watcher-27.0.2.tgz#dab5f9443e2d7f52597186480731a8c6335c5deb"
|
|
2597
|
-
integrity sha1-2rX5RD4tf1JZcYZIBzGoxjNcXes=
|
|
2598
|
-
dependencies:
|
|
2599
|
-
"@jest/test-result" "^27.0.2"
|
|
2600
|
-
"@jest/types" "^27.0.2"
|
|
2601
|
-
"@types/node" "*"
|
|
2602
|
-
ansi-escapes "^4.2.1"
|
|
2603
|
-
chalk "^4.0.0"
|
|
2604
|
-
jest-util "^27.0.2"
|
|
2605
|
-
string-length "^4.0.1"
|
|
2606
|
-
|
|
2607
|
-
jest-worker@^27.0.2:
|
|
2608
|
-
version "27.0.2"
|
|
2609
|
-
resolved "https://registry.nlark.com/jest-worker/download/jest-worker-27.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest-worker%2Fdownload%2Fjest-worker-27.0.2.tgz#4ebeb56cef48b3e7514552f80d0d80c0129f0b05"
|
|
2610
|
-
integrity sha1-Tr61bO9Is+dRRVL4DQ2AwBKfCwU=
|
|
2611
|
-
dependencies:
|
|
2612
|
-
"@types/node" "*"
|
|
2613
|
-
merge-stream "^2.0.0"
|
|
2614
|
-
supports-color "^8.0.0"
|
|
2615
|
-
|
|
2616
|
-
jest@^27.0.4:
|
|
2617
|
-
version "27.0.4"
|
|
2618
|
-
resolved "https://registry.nlark.com/jest/download/jest-27.0.4.tgz?cache=0&sync_timestamp=1622709043599&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjest%2Fdownload%2Fjest-27.0.4.tgz#91d4d564b36bcf93b98dac1ab19f07089e670f53"
|
|
2619
|
-
integrity sha1-kdTVZLNrz5O5jawasZ8HCJ5nD1M=
|
|
2620
|
-
dependencies:
|
|
2621
|
-
"@jest/core" "^27.0.4"
|
|
2622
|
-
import-local "^3.0.2"
|
|
2623
|
-
jest-cli "^27.0.4"
|
|
2624
|
-
|
|
2625
|
-
js-tokens@^4.0.0:
|
|
2626
|
-
version "4.0.0"
|
|
2627
|
-
resolved "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
|
2628
|
-
integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk=
|
|
2629
|
-
|
|
2630
|
-
js-yaml@^3.13.1:
|
|
2631
|
-
version "3.14.1"
|
|
2632
|
-
resolved "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.14.1.tgz?cache=0&sync_timestamp=1618435151523&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjs-yaml%2Fdownload%2Fjs-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
|
|
2633
|
-
integrity sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=
|
|
2634
|
-
dependencies:
|
|
2635
|
-
argparse "^1.0.7"
|
|
2636
|
-
esprima "^4.0.0"
|
|
2637
|
-
|
|
2638
|
-
jsdom@^16.6.0:
|
|
2639
|
-
version "16.6.0"
|
|
2640
|
-
resolved "https://registry.nlark.com/jsdom/download/jsdom-16.6.0.tgz?cache=0&sync_timestamp=1621799699425&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjsdom%2Fdownload%2Fjsdom-16.6.0.tgz#f79b3786682065492a3da6a60a4695da983805ac"
|
|
2641
|
-
integrity sha1-95s3hmggZUkqPaamCkaV2pg4Baw=
|
|
2642
|
-
dependencies:
|
|
2643
|
-
abab "^2.0.5"
|
|
2644
|
-
acorn "^8.2.4"
|
|
2645
|
-
acorn-globals "^6.0.0"
|
|
2646
|
-
cssom "^0.4.4"
|
|
2647
|
-
cssstyle "^2.3.0"
|
|
2648
|
-
data-urls "^2.0.0"
|
|
2649
|
-
decimal.js "^10.2.1"
|
|
2650
|
-
domexception "^2.0.1"
|
|
2651
|
-
escodegen "^2.0.0"
|
|
2652
|
-
form-data "^3.0.0"
|
|
2653
|
-
html-encoding-sniffer "^2.0.1"
|
|
2654
|
-
http-proxy-agent "^4.0.1"
|
|
2655
|
-
https-proxy-agent "^5.0.0"
|
|
2656
|
-
is-potential-custom-element-name "^1.0.1"
|
|
2657
|
-
nwsapi "^2.2.0"
|
|
2658
|
-
parse5 "6.0.1"
|
|
2659
|
-
saxes "^5.0.1"
|
|
2660
|
-
symbol-tree "^3.2.4"
|
|
2661
|
-
tough-cookie "^4.0.0"
|
|
2662
|
-
w3c-hr-time "^1.0.2"
|
|
2663
|
-
w3c-xmlserializer "^2.0.0"
|
|
2664
|
-
webidl-conversions "^6.1.0"
|
|
2665
|
-
whatwg-encoding "^1.0.5"
|
|
2666
|
-
whatwg-mimetype "^2.3.0"
|
|
2667
|
-
whatwg-url "^8.5.0"
|
|
2668
|
-
ws "^7.4.5"
|
|
2669
|
-
xml-name-validator "^3.0.0"
|
|
2670
|
-
|
|
2671
|
-
jsesc@^2.5.1:
|
|
2672
|
-
version "2.5.2"
|
|
2673
|
-
resolved "https://registry.nlark.com/jsesc/download/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
|
|
2674
|
-
integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=
|
|
2675
|
-
|
|
2676
|
-
json-buffer@3.0.0:
|
|
2677
|
-
version "3.0.0"
|
|
2678
|
-
resolved "https://registry.npm.taobao.org/json-buffer/download/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
|
|
2679
|
-
integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
|
|
2680
|
-
|
|
2681
|
-
json-parse-even-better-errors@^2.3.0:
|
|
2682
|
-
version "2.3.1"
|
|
2683
|
-
resolved "https://registry.npm.taobao.org/json-parse-even-better-errors/download/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
|
|
2684
|
-
integrity sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=
|
|
2685
|
-
|
|
2686
|
-
json-schema-traverse@^0.4.1:
|
|
2687
|
-
version "0.4.1"
|
|
2688
|
-
resolved "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
|
|
2689
|
-
integrity sha1-afaofZUTq4u4/mO9sJecRI5oRmA=
|
|
2690
|
-
|
|
2691
|
-
json-schema-traverse@^1.0.0:
|
|
2692
|
-
version "1.0.0"
|
|
2693
|
-
resolved "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
|
|
2694
|
-
integrity sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=
|
|
2695
|
-
|
|
2696
|
-
json-stable-stringify-without-jsonify@^1.0.1:
|
|
2697
|
-
version "1.0.1"
|
|
2698
|
-
resolved "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
|
|
2699
|
-
integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
|
|
2700
|
-
|
|
2701
|
-
json5@2.x, json5@^2.1.2:
|
|
2702
|
-
version "2.2.0"
|
|
2703
|
-
resolved "https://registry.npm.taobao.org/json5/download/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
|
|
2704
|
-
integrity sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=
|
|
2705
|
-
dependencies:
|
|
2706
|
-
minimist "^1.2.5"
|
|
2707
|
-
|
|
2708
|
-
keyv@^3.0.0:
|
|
2709
|
-
version "3.1.0"
|
|
2710
|
-
resolved "https://registry.npm.taobao.org/keyv/download/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9"
|
|
2711
|
-
integrity sha1-7MIoSG9pmR5J6UdkhaW+Ho/FxNk=
|
|
2712
|
-
dependencies:
|
|
2713
|
-
json-buffer "3.0.0"
|
|
2714
|
-
|
|
2715
|
-
kleur@^3.0.3:
|
|
2716
|
-
version "3.0.3"
|
|
2717
|
-
resolved "https://registry.nlark.com/kleur/download/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
|
|
2718
|
-
integrity sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4=
|
|
2719
|
-
|
|
2720
|
-
latest-version@^5.0.0:
|
|
2721
|
-
version "5.1.0"
|
|
2722
|
-
resolved "https://registry.nlark.com/latest-version/download/latest-version-5.1.0.tgz?cache=0&sync_timestamp=1618847146540&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flatest-version%2Fdownload%2Flatest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face"
|
|
2723
|
-
integrity sha1-EZ3+kI/jjRXfpD7NE/oS7Igy+s4=
|
|
2724
|
-
dependencies:
|
|
2725
|
-
package-json "^6.3.0"
|
|
2726
|
-
|
|
2727
|
-
leven@^3.1.0:
|
|
2728
|
-
version "3.1.0"
|
|
2729
|
-
resolved "https://registry.npm.taobao.org/leven/download/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
|
2730
|
-
integrity sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=
|
|
2731
|
-
|
|
2732
|
-
levn@^0.4.1:
|
|
2733
|
-
version "0.4.1"
|
|
2734
|
-
resolved "https://registry.npm.taobao.org/levn/download/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
|
|
2735
|
-
integrity sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=
|
|
2736
|
-
dependencies:
|
|
2737
|
-
prelude-ls "^1.2.1"
|
|
2738
|
-
type-check "~0.4.0"
|
|
2739
|
-
|
|
2740
|
-
levn@~0.3.0:
|
|
2741
|
-
version "0.3.0"
|
|
2742
|
-
resolved "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
|
2743
|
-
integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
|
|
2744
|
-
dependencies:
|
|
2745
|
-
prelude-ls "~1.1.2"
|
|
2746
|
-
type-check "~0.3.2"
|
|
2747
|
-
|
|
2748
|
-
lines-and-columns@^1.1.6:
|
|
2749
|
-
version "1.1.6"
|
|
2750
|
-
resolved "https://registry.nlark.com/lines-and-columns/download/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
|
|
2751
|
-
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
|
|
2752
|
-
|
|
2753
|
-
lint-staged@^11.0.0:
|
|
2754
|
-
version "11.0.0"
|
|
2755
|
-
resolved "https://registry.nlark.com/lint-staged/download/lint-staged-11.0.0.tgz?cache=0&sync_timestamp=1620406121591&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flint-staged%2Fdownload%2Flint-staged-11.0.0.tgz#24d0a95aa316ba28e257f5c4613369a75a10c712"
|
|
2756
|
-
integrity sha1-JNCpWqMWuijiV/XEYTNpp1oQxxI=
|
|
2757
|
-
dependencies:
|
|
2758
|
-
chalk "^4.1.1"
|
|
2759
|
-
cli-truncate "^2.1.0"
|
|
2760
|
-
commander "^7.2.0"
|
|
2761
|
-
cosmiconfig "^7.0.0"
|
|
2762
|
-
debug "^4.3.1"
|
|
2763
|
-
dedent "^0.7.0"
|
|
2764
|
-
enquirer "^2.3.6"
|
|
2765
|
-
execa "^5.0.0"
|
|
2766
|
-
listr2 "^3.8.2"
|
|
2767
|
-
log-symbols "^4.1.0"
|
|
2768
|
-
micromatch "^4.0.4"
|
|
2769
|
-
normalize-path "^3.0.0"
|
|
2770
|
-
please-upgrade-node "^3.2.0"
|
|
2771
|
-
string-argv "0.3.1"
|
|
2772
|
-
stringify-object "^3.3.0"
|
|
2773
|
-
|
|
2774
|
-
listr2@^3.8.2:
|
|
2775
|
-
version "3.10.0"
|
|
2776
|
-
resolved "https://registry.nlark.com/listr2/download/listr2-3.10.0.tgz?cache=0&sync_timestamp=1623089510604&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flistr2%2Fdownload%2Flistr2-3.10.0.tgz#58105a53ed7fa1430d1b738c6055ef7bb006160f"
|
|
2777
|
-
integrity sha1-WBBaU+1/oUMNG3OMYFXve7AGFg8=
|
|
2778
|
-
dependencies:
|
|
2779
|
-
cli-truncate "^2.1.0"
|
|
2780
|
-
colorette "^1.2.2"
|
|
2781
|
-
log-update "^4.0.0"
|
|
2782
|
-
p-map "^4.0.0"
|
|
2783
|
-
rxjs "^6.6.7"
|
|
2784
|
-
through "^2.3.8"
|
|
2785
|
-
wrap-ansi "^7.0.0"
|
|
2786
|
-
|
|
2787
|
-
locate-path@^5.0.0:
|
|
2788
|
-
version "5.0.0"
|
|
2789
|
-
resolved "https://registry.npm.taobao.org/locate-path/download/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
|
|
2790
|
-
integrity sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=
|
|
2791
|
-
dependencies:
|
|
2792
|
-
p-locate "^4.1.0"
|
|
2793
|
-
|
|
2794
|
-
locate-path@^6.0.0:
|
|
2795
|
-
version "6.0.0"
|
|
2796
|
-
resolved "https://registry.npm.taobao.org/locate-path/download/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
|
|
2797
|
-
integrity sha1-VTIeswn+u8WcSAHZMackUqaB0oY=
|
|
2798
|
-
dependencies:
|
|
2799
|
-
p-locate "^5.0.0"
|
|
2800
|
-
|
|
2801
|
-
lodash.clonedeep@^4.5.0:
|
|
2802
|
-
version "4.5.0"
|
|
2803
|
-
resolved "https://registry.nlark.com/lodash.clonedeep/download/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
|
|
2804
|
-
integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
|
|
2805
|
-
|
|
2806
|
-
lodash.merge@^4.6.2:
|
|
2807
|
-
version "4.6.2"
|
|
2808
|
-
resolved "https://registry.npm.taobao.org/lodash.merge/download/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
|
|
2809
|
-
integrity sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=
|
|
2810
|
-
|
|
2811
|
-
lodash.truncate@^4.4.2:
|
|
2812
|
-
version "4.4.2"
|
|
2813
|
-
resolved "https://registry.nlark.com/lodash.truncate/download/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
|
|
2814
|
-
integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
|
|
2815
|
-
|
|
2816
|
-
lodash@4.x, lodash@^4.17.21, lodash@^4.7.0:
|
|
2817
|
-
version "4.17.21"
|
|
2818
|
-
resolved "https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1618847150612&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flodash%2Fdownload%2Flodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
|
2819
|
-
integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
|
|
2820
|
-
|
|
2821
|
-
log-symbols@^4.1.0:
|
|
2822
|
-
version "4.1.0"
|
|
2823
|
-
resolved "https://registry.nlark.com/log-symbols/download/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
|
|
2824
|
-
integrity sha1-P727lbRoOsn8eFER55LlWNSr1QM=
|
|
2825
|
-
dependencies:
|
|
2826
|
-
chalk "^4.1.0"
|
|
2827
|
-
is-unicode-supported "^0.1.0"
|
|
2828
|
-
|
|
2829
|
-
log-update@^4.0.0:
|
|
2830
|
-
version "4.0.0"
|
|
2831
|
-
resolved "https://registry.npm.taobao.org/log-update/download/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
|
|
2832
|
-
integrity sha1-WJ7NNSRx8qHAxXAodUOmTf0g4KE=
|
|
2833
|
-
dependencies:
|
|
2834
|
-
ansi-escapes "^4.3.0"
|
|
2835
|
-
cli-cursor "^3.1.0"
|
|
2836
|
-
slice-ansi "^4.0.0"
|
|
2837
|
-
wrap-ansi "^6.2.0"
|
|
2838
|
-
|
|
2839
|
-
lowercase-keys@^1.0.0, lowercase-keys@^1.0.1:
|
|
2840
|
-
version "1.0.1"
|
|
2841
|
-
resolved "https://registry.npm.taobao.org/lowercase-keys/download/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
|
|
2842
|
-
integrity sha1-b54wtHCE2XGnyCD/FabFFnt0wm8=
|
|
2843
|
-
|
|
2844
|
-
lowercase-keys@^2.0.0:
|
|
2845
|
-
version "2.0.0"
|
|
2846
|
-
resolved "https://registry.npm.taobao.org/lowercase-keys/download/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
|
|
2847
|
-
integrity sha1-JgPni3tLAAbLyi+8yKMgJVislHk=
|
|
2848
|
-
|
|
2849
|
-
lru-cache@^6.0.0:
|
|
2850
|
-
version "6.0.0"
|
|
2851
|
-
resolved "https://registry.npm.taobao.org/lru-cache/download/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
|
2852
|
-
integrity sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=
|
|
2853
|
-
dependencies:
|
|
2854
|
-
yallist "^4.0.0"
|
|
2855
|
-
|
|
2856
|
-
make-dir@^3.0.0:
|
|
2857
|
-
version "3.1.0"
|
|
2858
|
-
resolved "https://registry.nlark.com/make-dir/download/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
|
|
2859
|
-
integrity sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=
|
|
2860
|
-
dependencies:
|
|
2861
|
-
semver "^6.0.0"
|
|
2862
|
-
|
|
2863
|
-
make-error@1.x:
|
|
2864
|
-
version "1.3.6"
|
|
2865
|
-
resolved "https://registry.nlark.com/make-error/download/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
|
|
2866
|
-
integrity sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=
|
|
2867
|
-
|
|
2868
|
-
makeerror@1.0.x:
|
|
2869
|
-
version "1.0.11"
|
|
2870
|
-
resolved "https://registry.npm.taobao.org/makeerror/download/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
|
|
2871
|
-
integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
|
|
2872
|
-
dependencies:
|
|
2873
|
-
tmpl "1.0.x"
|
|
2874
|
-
|
|
2875
|
-
merge-stream@^2.0.0:
|
|
2876
|
-
version "2.0.0"
|
|
2877
|
-
resolved "https://registry.nlark.com/merge-stream/download/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
|
|
2878
|
-
integrity sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=
|
|
2879
|
-
|
|
2880
|
-
merge2@^1.3.0:
|
|
2881
|
-
version "1.4.1"
|
|
2882
|
-
resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
|
2883
|
-
integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
|
|
2884
|
-
|
|
2885
|
-
micromatch@^4.0.2, micromatch@^4.0.4:
|
|
2886
|
-
version "4.0.4"
|
|
2887
|
-
resolved "https://registry.nlark.com/micromatch/download/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
|
|
2888
|
-
integrity sha1-iW1Rnf6dsl/OlM63pQCRm/iB6/k=
|
|
2889
|
-
dependencies:
|
|
2890
|
-
braces "^3.0.1"
|
|
2891
|
-
picomatch "^2.2.3"
|
|
2892
|
-
|
|
2893
|
-
mime-db@1.48.0:
|
|
2894
|
-
version "1.48.0"
|
|
2895
|
-
resolved "https://registry.nlark.com/mime-db/download/mime-db-1.48.0.tgz?cache=0&sync_timestamp=1622433556078&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-db%2Fdownload%2Fmime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d"
|
|
2896
|
-
integrity sha1-41sxBF3X6to6qtU37YijOvvvLR0=
|
|
2897
|
-
|
|
2898
|
-
mime-types@^2.1.12:
|
|
2899
|
-
version "2.1.31"
|
|
2900
|
-
resolved "https://registry.nlark.com/mime-types/download/mime-types-2.1.31.tgz?cache=0&sync_timestamp=1622569304088&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fmime-types%2Fdownload%2Fmime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b"
|
|
2901
|
-
integrity sha1-oA12t0MXxh+cLbIhi46fjpxcnms=
|
|
2902
|
-
dependencies:
|
|
2903
|
-
mime-db "1.48.0"
|
|
2904
|
-
|
|
2905
|
-
mimic-fn@^2.1.0:
|
|
2906
|
-
version "2.1.0"
|
|
2907
|
-
resolved "https://registry.nlark.com/mimic-fn/download/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
|
|
2908
|
-
integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=
|
|
2909
|
-
|
|
2910
|
-
mimic-response@^1.0.0, mimic-response@^1.0.1:
|
|
2911
|
-
version "1.0.1"
|
|
2912
|
-
resolved "https://registry.nlark.com/mimic-response/download/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
|
|
2913
|
-
integrity sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=
|
|
2914
|
-
|
|
2915
|
-
minimatch@^3.0.4:
|
|
2916
|
-
version "3.0.4"
|
|
2917
|
-
resolved "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
|
2918
|
-
integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=
|
|
2919
|
-
dependencies:
|
|
2920
|
-
brace-expansion "^1.1.7"
|
|
2921
|
-
|
|
2922
|
-
minimist@^1.2.0, minimist@^1.2.5:
|
|
2923
|
-
version "1.2.5"
|
|
2924
|
-
resolved "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
|
2925
|
-
integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=
|
|
2926
|
-
|
|
2927
|
-
mkdirp@1.x:
|
|
2928
|
-
version "1.0.4"
|
|
2929
|
-
resolved "https://registry.npm.taobao.org/mkdirp/download/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
|
2930
|
-
integrity sha1-PrXtYmInVteaXw4qIh3+utdcL34=
|
|
2931
|
-
|
|
2932
|
-
ms@2.0.0:
|
|
2933
|
-
version "2.0.0"
|
|
2934
|
-
resolved "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz?cache=0&sync_timestamp=1607433899126&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
|
2935
|
-
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
|
|
2936
|
-
|
|
2937
|
-
ms@2.1.2:
|
|
2938
|
-
version "2.1.2"
|
|
2939
|
-
resolved "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz?cache=0&sync_timestamp=1607433899126&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
|
|
2940
|
-
integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=
|
|
2941
|
-
|
|
2942
|
-
ms@^2.1.1:
|
|
2943
|
-
version "2.1.3"
|
|
2944
|
-
resolved "https://registry.npm.taobao.org/ms/download/ms-2.1.3.tgz?cache=0&sync_timestamp=1607433899126&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fms%2Fdownload%2Fms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
|
2945
|
-
integrity sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=
|
|
2946
|
-
|
|
2947
|
-
natural-compare@^1.4.0:
|
|
2948
|
-
version "1.4.0"
|
|
2949
|
-
resolved "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
|
2950
|
-
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
|
|
2951
|
-
|
|
2952
|
-
node-int64@^0.4.0:
|
|
2953
|
-
version "0.4.0"
|
|
2954
|
-
resolved "https://registry.npm.taobao.org/node-int64/download/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
|
|
2955
|
-
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
|
|
2956
|
-
|
|
2957
|
-
node-modules-regexp@^1.0.0:
|
|
2958
|
-
version "1.0.0"
|
|
2959
|
-
resolved "https://registry.npm.taobao.org/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
|
2960
|
-
integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
|
|
2961
|
-
|
|
2962
|
-
node-releases@^1.1.71:
|
|
2963
|
-
version "1.1.73"
|
|
2964
|
-
resolved "https://registry.nlark.com/node-releases/download/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20"
|
|
2965
|
-
integrity sha1-3U6B3dUnf/hGuAtSu0DEnt96eyA=
|
|
2966
|
-
|
|
2967
|
-
nodemon@^2.0.7:
|
|
2968
|
-
version "2.0.7"
|
|
2969
|
-
resolved "https://registry.nlark.com/nodemon/download/nodemon-2.0.7.tgz#6f030a0a0ebe3ea1ba2a38f71bf9bab4841ced32"
|
|
2970
|
-
integrity sha1-bwMKCg6+PqG6Kjj3G/m6tIQc7TI=
|
|
2971
|
-
dependencies:
|
|
2972
|
-
chokidar "^3.2.2"
|
|
2973
|
-
debug "^3.2.6"
|
|
2974
|
-
ignore-by-default "^1.0.1"
|
|
2975
|
-
minimatch "^3.0.4"
|
|
2976
|
-
pstree.remy "^1.1.7"
|
|
2977
|
-
semver "^5.7.1"
|
|
2978
|
-
supports-color "^5.5.0"
|
|
2979
|
-
touch "^3.1.0"
|
|
2980
|
-
undefsafe "^2.0.3"
|
|
2981
|
-
update-notifier "^4.1.0"
|
|
2982
|
-
|
|
2983
|
-
nopt@~1.0.10:
|
|
2984
|
-
version "1.0.10"
|
|
2985
|
-
resolved "https://registry.npm.taobao.org/nopt/download/nopt-1.0.10.tgz?cache=0&sync_timestamp=1597649892953&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnopt%2Fdownload%2Fnopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
|
|
2986
|
-
integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=
|
|
2987
|
-
dependencies:
|
|
2988
|
-
abbrev "1"
|
|
2989
|
-
|
|
2990
|
-
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
|
2991
|
-
version "3.0.0"
|
|
2992
|
-
resolved "https://registry.nlark.com/normalize-path/download/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
|
2993
|
-
integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=
|
|
2994
|
-
|
|
2995
|
-
normalize-url@^4.1.0:
|
|
2996
|
-
version "4.5.1"
|
|
2997
|
-
resolved "https://registry.nlark.com/normalize-url/download/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
|
|
2998
|
-
integrity sha1-DdkM8SiO4dExO4cIHJpZMu5IUYo=
|
|
2999
|
-
|
|
3000
|
-
npm-run-path@^4.0.1:
|
|
3001
|
-
version "4.0.1"
|
|
3002
|
-
resolved "https://registry.nlark.com/npm-run-path/download/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
|
3003
|
-
integrity sha1-t+zR5e1T2o43pV4cImnguX7XSOo=
|
|
3004
|
-
dependencies:
|
|
3005
|
-
path-key "^3.0.0"
|
|
3006
|
-
|
|
3007
|
-
nwsapi@^2.2.0:
|
|
3008
|
-
version "2.2.0"
|
|
3009
|
-
resolved "https://registry.nlark.com/nwsapi/download/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
|
|
3010
|
-
integrity sha1-IEh5qePQaP8qVROcLHcngGgaOLc=
|
|
3011
|
-
|
|
3012
|
-
once@^1.3.0, once@^1.3.1, once@^1.4.0:
|
|
3013
|
-
version "1.4.0"
|
|
3014
|
-
resolved "https://registry.nlark.com/once/download/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
|
3015
|
-
integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
|
|
3016
|
-
dependencies:
|
|
3017
|
-
wrappy "1"
|
|
3018
|
-
|
|
3019
|
-
onetime@^5.1.0, onetime@^5.1.2:
|
|
3020
|
-
version "5.1.2"
|
|
3021
|
-
resolved "https://registry.nlark.com/onetime/download/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
|
|
3022
|
-
integrity sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=
|
|
3023
|
-
dependencies:
|
|
3024
|
-
mimic-fn "^2.1.0"
|
|
3025
|
-
|
|
3026
|
-
opencollective-postinstall@^2.0.2:
|
|
3027
|
-
version "2.0.3"
|
|
3028
|
-
resolved "https://registry.npm.taobao.org/opencollective-postinstall/download/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259"
|
|
3029
|
-
integrity sha1-eg//l49tv6TQBiOPusmO1BmMMlk=
|
|
3030
|
-
|
|
3031
|
-
optionator@^0.8.1:
|
|
3032
|
-
version "0.8.3"
|
|
3033
|
-
resolved "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
|
3034
|
-
integrity sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=
|
|
3035
|
-
dependencies:
|
|
3036
|
-
deep-is "~0.1.3"
|
|
3037
|
-
fast-levenshtein "~2.0.6"
|
|
3038
|
-
levn "~0.3.0"
|
|
3039
|
-
prelude-ls "~1.1.2"
|
|
3040
|
-
type-check "~0.3.2"
|
|
3041
|
-
word-wrap "~1.2.3"
|
|
3042
|
-
|
|
3043
|
-
optionator@^0.9.1:
|
|
3044
|
-
version "0.9.1"
|
|
3045
|
-
resolved "https://registry.npm.taobao.org/optionator/download/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
|
|
3046
|
-
integrity sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=
|
|
3047
|
-
dependencies:
|
|
3048
|
-
deep-is "^0.1.3"
|
|
3049
|
-
fast-levenshtein "^2.0.6"
|
|
3050
|
-
levn "^0.4.1"
|
|
3051
|
-
prelude-ls "^1.2.1"
|
|
3052
|
-
type-check "^0.4.0"
|
|
3053
|
-
word-wrap "^1.2.3"
|
|
3054
|
-
|
|
3055
|
-
p-cancelable@^1.0.0:
|
|
3056
|
-
version "1.1.0"
|
|
3057
|
-
resolved "https://registry.nlark.com/p-cancelable/download/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc"
|
|
3058
|
-
integrity sha1-0HjRWjr0CSIMiG8dmgyi5EGrJsw=
|
|
3059
|
-
|
|
3060
|
-
p-each-series@^2.1.0:
|
|
3061
|
-
version "2.2.0"
|
|
3062
|
-
resolved "https://registry.npm.taobao.org/p-each-series/download/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a"
|
|
3063
|
-
integrity sha1-EFqwNXznKyAqiouUkzZyZXteKpo=
|
|
3064
|
-
|
|
3065
|
-
p-limit@^2.2.0:
|
|
3066
|
-
version "2.3.0"
|
|
3067
|
-
resolved "https://registry.nlark.com/p-limit/download/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
|
3068
|
-
integrity sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=
|
|
3069
|
-
dependencies:
|
|
3070
|
-
p-try "^2.0.0"
|
|
3071
|
-
|
|
3072
|
-
p-limit@^3.0.2:
|
|
3073
|
-
version "3.1.0"
|
|
3074
|
-
resolved "https://registry.nlark.com/p-limit/download/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
|
|
3075
|
-
integrity sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=
|
|
3076
|
-
dependencies:
|
|
3077
|
-
yocto-queue "^0.1.0"
|
|
3078
|
-
|
|
3079
|
-
p-locate@^4.1.0:
|
|
3080
|
-
version "4.1.0"
|
|
3081
|
-
resolved "https://registry.nlark.com/p-locate/download/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
|
|
3082
|
-
integrity sha1-o0KLtwiLOmApL2aRkni3wpetTwc=
|
|
3083
|
-
dependencies:
|
|
3084
|
-
p-limit "^2.2.0"
|
|
3085
|
-
|
|
3086
|
-
p-locate@^5.0.0:
|
|
3087
|
-
version "5.0.0"
|
|
3088
|
-
resolved "https://registry.nlark.com/p-locate/download/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
|
|
3089
|
-
integrity sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=
|
|
3090
|
-
dependencies:
|
|
3091
|
-
p-limit "^3.0.2"
|
|
3092
|
-
|
|
3093
|
-
p-map@^4.0.0:
|
|
3094
|
-
version "4.0.0"
|
|
3095
|
-
resolved "https://registry.nlark.com/p-map/download/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
|
|
3096
|
-
integrity sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=
|
|
3097
|
-
dependencies:
|
|
3098
|
-
aggregate-error "^3.0.0"
|
|
3099
|
-
|
|
3100
|
-
p-try@^2.0.0:
|
|
3101
|
-
version "2.2.0"
|
|
3102
|
-
resolved "https://registry.nlark.com/p-try/download/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
|
|
3103
|
-
integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=
|
|
3104
|
-
|
|
3105
|
-
package-json@^6.3.0:
|
|
3106
|
-
version "6.5.0"
|
|
3107
|
-
resolved "https://registry.nlark.com/package-json/download/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0"
|
|
3108
|
-
integrity sha1-b+7ayjXnVyWHbQsOZJdGl/7RRbA=
|
|
3109
|
-
dependencies:
|
|
3110
|
-
got "^9.6.0"
|
|
3111
|
-
registry-auth-token "^4.0.0"
|
|
3112
|
-
registry-url "^5.0.0"
|
|
3113
|
-
semver "^6.2.0"
|
|
3114
|
-
|
|
3115
|
-
parent-module@^1.0.0:
|
|
3116
|
-
version "1.0.1"
|
|
3117
|
-
resolved "https://registry.npm.taobao.org/parent-module/download/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
|
|
3118
|
-
integrity sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=
|
|
3119
|
-
dependencies:
|
|
3120
|
-
callsites "^3.0.0"
|
|
3121
|
-
|
|
3122
|
-
parse-json@^5.0.0:
|
|
3123
|
-
version "5.2.0"
|
|
3124
|
-
resolved "https://registry.nlark.com/parse-json/download/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
|
|
3125
|
-
integrity sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=
|
|
3126
|
-
dependencies:
|
|
3127
|
-
"@babel/code-frame" "^7.0.0"
|
|
3128
|
-
error-ex "^1.3.1"
|
|
3129
|
-
json-parse-even-better-errors "^2.3.0"
|
|
3130
|
-
lines-and-columns "^1.1.6"
|
|
3131
|
-
|
|
3132
|
-
parse5@6.0.1:
|
|
3133
|
-
version "6.0.1"
|
|
3134
|
-
resolved "https://registry.nlark.com/parse5/download/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
|
|
3135
|
-
integrity sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=
|
|
3136
|
-
|
|
3137
|
-
path-exists@^4.0.0:
|
|
3138
|
-
version "4.0.0"
|
|
3139
|
-
resolved "https://registry.nlark.com/path-exists/download/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
|
|
3140
|
-
integrity sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=
|
|
3141
|
-
|
|
3142
|
-
path-is-absolute@^1.0.0:
|
|
3143
|
-
version "1.0.1"
|
|
3144
|
-
resolved "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
3145
|
-
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
|
3146
|
-
|
|
3147
|
-
path-key@^3.0.0, path-key@^3.1.0:
|
|
3148
|
-
version "3.1.1"
|
|
3149
|
-
resolved "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
|
3150
|
-
integrity sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=
|
|
3151
|
-
|
|
3152
|
-
path-parse@^1.0.6:
|
|
3153
|
-
version "1.0.7"
|
|
3154
|
-
resolved "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
|
3155
|
-
integrity sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=
|
|
3156
|
-
|
|
3157
|
-
path-type@^4.0.0:
|
|
3158
|
-
version "4.0.0"
|
|
3159
|
-
resolved "https://registry.npm.taobao.org/path-type/download/path-type-4.0.0.tgz?cache=0&sync_timestamp=1611752015315&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-type%2Fdownload%2Fpath-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
|
3160
|
-
integrity sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=
|
|
3161
|
-
|
|
3162
|
-
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
|
|
3163
|
-
version "2.3.0"
|
|
3164
|
-
resolved "https://registry.nlark.com/picomatch/download/picomatch-2.3.0.tgz?cache=0&sync_timestamp=1621648246651&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpicomatch%2Fdownload%2Fpicomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
|
|
3165
|
-
integrity sha1-8fBh3o9qS/AiiS4tEoI0+5gwKXI=
|
|
3166
|
-
|
|
3167
|
-
pirates@^4.0.1:
|
|
3168
|
-
version "4.0.1"
|
|
3169
|
-
resolved "https://registry.npm.taobao.org/pirates/download/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
|
|
3170
|
-
integrity sha1-ZDqSyviUVm+RsrmG0sZpUKji+4c=
|
|
3171
|
-
dependencies:
|
|
3172
|
-
node-modules-regexp "^1.0.0"
|
|
3173
|
-
|
|
3174
|
-
pkg-dir@^4.2.0:
|
|
3175
|
-
version "4.2.0"
|
|
3176
|
-
resolved "https://registry.nlark.com/pkg-dir/download/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
|
|
3177
|
-
integrity sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=
|
|
3178
|
-
dependencies:
|
|
3179
|
-
find-up "^4.0.0"
|
|
3180
|
-
|
|
3181
|
-
pkg-dir@^5.0.0:
|
|
3182
|
-
version "5.0.0"
|
|
3183
|
-
resolved "https://registry.nlark.com/pkg-dir/download/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760"
|
|
3184
|
-
integrity sha1-oC1q6+a6EzqSj3Suwguv3+a452A=
|
|
3185
|
-
dependencies:
|
|
3186
|
-
find-up "^5.0.0"
|
|
3187
|
-
|
|
3188
|
-
please-upgrade-node@^3.2.0:
|
|
3189
|
-
version "3.2.0"
|
|
3190
|
-
resolved "https://registry.nlark.com/please-upgrade-node/download/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
|
|
3191
|
-
integrity sha1-rt3T+ZTJM+StmLmdmlVu+g4v6UI=
|
|
3192
|
-
dependencies:
|
|
3193
|
-
semver-compare "^1.0.0"
|
|
3194
|
-
|
|
3195
|
-
prelude-ls@^1.2.1:
|
|
3196
|
-
version "1.2.1"
|
|
3197
|
-
resolved "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
|
|
3198
|
-
integrity sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=
|
|
3199
|
-
|
|
3200
|
-
prelude-ls@~1.1.2:
|
|
3201
|
-
version "1.1.2"
|
|
3202
|
-
resolved "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
|
3203
|
-
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
|
|
3204
|
-
|
|
3205
|
-
prepend-http@^2.0.0:
|
|
3206
|
-
version "2.0.0"
|
|
3207
|
-
resolved "https://registry.nlark.com/prepend-http/download/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
|
|
3208
|
-
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
|
|
3209
|
-
|
|
3210
|
-
prettier@^2.3.1:
|
|
3211
|
-
version "2.3.1"
|
|
3212
|
-
resolved "https://registry.nlark.com/prettier/download/prettier-2.3.1.tgz?cache=0&sync_timestamp=1622888668729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fprettier%2Fdownload%2Fprettier-2.3.1.tgz#76903c3f8c4449bc9ac597acefa24dc5ad4cbea6"
|
|
3213
|
-
integrity sha1-dpA8P4xESbyaxZes76JNxa1MvqY=
|
|
3214
|
-
|
|
3215
|
-
pretty-format@^26.0.0, pretty-format@^26.6.2:
|
|
3216
|
-
version "26.6.2"
|
|
3217
|
-
resolved "https://registry.nlark.com/pretty-format/download/pretty-format-26.6.2.tgz?cache=0&sync_timestamp=1622290311384&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93"
|
|
3218
|
-
integrity sha1-41wnBfFMt/4v6U+geDRbREEg/JM=
|
|
3219
|
-
dependencies:
|
|
3220
|
-
"@jest/types" "^26.6.2"
|
|
3221
|
-
ansi-regex "^5.0.0"
|
|
3222
|
-
ansi-styles "^4.0.0"
|
|
3223
|
-
react-is "^17.0.1"
|
|
3224
|
-
|
|
3225
|
-
pretty-format@^27.0.2:
|
|
3226
|
-
version "27.0.2"
|
|
3227
|
-
resolved "https://registry.nlark.com/pretty-format/download/pretty-format-27.0.2.tgz?cache=0&sync_timestamp=1622290311384&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpretty-format%2Fdownload%2Fpretty-format-27.0.2.tgz#9283ff8c4f581b186b2d4da461617143dca478a4"
|
|
3228
|
-
integrity sha1-koP/jE9YGxhrLU2kYWFxQ9ykeKQ=
|
|
3229
|
-
dependencies:
|
|
3230
|
-
"@jest/types" "^27.0.2"
|
|
3231
|
-
ansi-regex "^5.0.0"
|
|
3232
|
-
ansi-styles "^5.0.0"
|
|
3233
|
-
react-is "^17.0.1"
|
|
3234
|
-
|
|
3235
|
-
progress@^2.0.0:
|
|
3236
|
-
version "2.0.3"
|
|
3237
|
-
resolved "https://registry.nlark.com/progress/download/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
|
|
3238
|
-
integrity sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=
|
|
3239
|
-
|
|
3240
|
-
prompts@^2.0.1:
|
|
3241
|
-
version "2.4.1"
|
|
3242
|
-
resolved "https://registry.nlark.com/prompts/download/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61"
|
|
3243
|
-
integrity sha1-vv07EZW6BS+f0v3opIbE6C7nf2E=
|
|
3244
|
-
dependencies:
|
|
3245
|
-
kleur "^3.0.3"
|
|
3246
|
-
sisteransi "^1.0.5"
|
|
3247
|
-
|
|
3248
|
-
psl@^1.1.33:
|
|
3249
|
-
version "1.8.0"
|
|
3250
|
-
resolved "https://registry.npm.taobao.org/psl/download/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
|
|
3251
|
-
integrity sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=
|
|
3252
|
-
|
|
3253
|
-
pstree.remy@^1.1.7:
|
|
3254
|
-
version "1.1.8"
|
|
3255
|
-
resolved "https://registry.npm.taobao.org/pstree.remy/download/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a"
|
|
3256
|
-
integrity sha1-wkIiT0pnwh9oaDm720rCgrg3PTo=
|
|
3257
|
-
|
|
3258
|
-
pump@^3.0.0:
|
|
3259
|
-
version "3.0.0"
|
|
3260
|
-
resolved "https://registry.nlark.com/pump/download/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
|
|
3261
|
-
integrity sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=
|
|
3262
|
-
dependencies:
|
|
3263
|
-
end-of-stream "^1.1.0"
|
|
3264
|
-
once "^1.3.1"
|
|
3265
|
-
|
|
3266
|
-
punycode@^2.1.0, punycode@^2.1.1:
|
|
3267
|
-
version "2.1.1"
|
|
3268
|
-
resolved "https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
|
|
3269
|
-
integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew=
|
|
3270
|
-
|
|
3271
|
-
pupa@^2.0.1:
|
|
3272
|
-
version "2.1.1"
|
|
3273
|
-
resolved "https://registry.npm.taobao.org/pupa/download/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62"
|
|
3274
|
-
integrity sha1-9ej9SvwsXZeCj6pSNUnth0SiDWI=
|
|
3275
|
-
dependencies:
|
|
3276
|
-
escape-goat "^2.0.0"
|
|
3277
|
-
|
|
3278
|
-
queue-microtask@^1.2.2:
|
|
3279
|
-
version "1.2.3"
|
|
3280
|
-
resolved "https://registry.npm.taobao.org/queue-microtask/download/queue-microtask-1.2.3.tgz?cache=0&sync_timestamp=1616391471040&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fqueue-microtask%2Fdownload%2Fqueue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
|
|
3281
|
-
integrity sha1-SSkii7xyTfrEPg77BYyve2z7YkM=
|
|
3282
|
-
|
|
3283
|
-
rc@^1.2.8:
|
|
3284
|
-
version "1.2.8"
|
|
3285
|
-
resolved "https://registry.nlark.com/rc/download/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
|
|
3286
|
-
integrity sha1-zZJL9SAKB1uDwYjNa54hG3/A0+0=
|
|
3287
|
-
dependencies:
|
|
3288
|
-
deep-extend "^0.6.0"
|
|
3289
|
-
ini "~1.3.0"
|
|
3290
|
-
minimist "^1.2.0"
|
|
3291
|
-
strip-json-comments "~2.0.1"
|
|
3292
|
-
|
|
3293
|
-
react-is@^17.0.1:
|
|
3294
|
-
version "17.0.2"
|
|
3295
|
-
resolved "https://registry.nlark.com/react-is/download/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
|
|
3296
|
-
integrity sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA=
|
|
3297
|
-
|
|
3298
|
-
readdirp@~3.5.0:
|
|
3299
|
-
version "3.5.0"
|
|
3300
|
-
resolved "https://registry.npm.taobao.org/readdirp/download/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
|
|
3301
|
-
integrity sha1-m6dMAZsV02UnjS6Ru4xI17TULJ4=
|
|
3302
|
-
dependencies:
|
|
3303
|
-
picomatch "^2.2.1"
|
|
3304
|
-
|
|
3305
|
-
regexpp@^3.1.0:
|
|
3306
|
-
version "3.1.0"
|
|
3307
|
-
resolved "https://registry.npm.taobao.org/regexpp/download/regexpp-3.1.0.tgz?cache=0&sync_timestamp=1592843197777&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregexpp%2Fdownload%2Fregexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
|
|
3308
|
-
integrity sha1-IG0K0KVkjP+9uK5GQ489xRyfeOI=
|
|
3309
|
-
|
|
3310
|
-
registry-auth-token@^4.0.0:
|
|
3311
|
-
version "4.2.1"
|
|
3312
|
-
resolved "https://registry.npm.taobao.org/registry-auth-token/download/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250"
|
|
3313
|
-
integrity sha1-bXtABkQZGJcszV/tzUHcMix5slA=
|
|
3314
|
-
dependencies:
|
|
3315
|
-
rc "^1.2.8"
|
|
3316
|
-
|
|
3317
|
-
registry-url@^5.0.0:
|
|
3318
|
-
version "5.1.0"
|
|
3319
|
-
resolved "https://registry.npm.taobao.org/registry-url/download/registry-url-5.1.0.tgz?cache=0&sync_timestamp=1618681893788&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregistry-url%2Fdownload%2Fregistry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009"
|
|
3320
|
-
integrity sha1-6YM0tQ1UNLgRNrROxjjZwgCcUAk=
|
|
3321
|
-
dependencies:
|
|
3322
|
-
rc "^1.2.8"
|
|
3323
|
-
|
|
3324
|
-
require-directory@^2.1.1:
|
|
3325
|
-
version "2.1.1"
|
|
3326
|
-
resolved "https://registry.nlark.com/require-directory/download/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
|
3327
|
-
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
|
|
3328
|
-
|
|
3329
|
-
require-from-string@^2.0.2:
|
|
3330
|
-
version "2.0.2"
|
|
3331
|
-
resolved "https://registry.nlark.com/require-from-string/download/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
|
|
3332
|
-
integrity sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=
|
|
3333
|
-
|
|
3334
|
-
resolve-cwd@^3.0.0:
|
|
3335
|
-
version "3.0.0"
|
|
3336
|
-
resolved "https://registry.nlark.com/resolve-cwd/download/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
|
|
3337
|
-
integrity sha1-DwB18bslRHZs9zumpuKt/ryxPy0=
|
|
3338
|
-
dependencies:
|
|
3339
|
-
resolve-from "^5.0.0"
|
|
3340
|
-
|
|
3341
|
-
resolve-from@^4.0.0:
|
|
3342
|
-
version "4.0.0"
|
|
3343
|
-
resolved "https://registry.npm.taobao.org/resolve-from/download/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
|
3344
|
-
integrity sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=
|
|
3345
|
-
|
|
3346
|
-
resolve-from@^5.0.0:
|
|
3347
|
-
version "5.0.0"
|
|
3348
|
-
resolved "https://registry.npm.taobao.org/resolve-from/download/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
|
|
3349
|
-
integrity sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=
|
|
3350
|
-
|
|
3351
|
-
resolve@^1.20.0:
|
|
3352
|
-
version "1.20.0"
|
|
3353
|
-
resolved "https://registry.npm.taobao.org/resolve/download/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
|
|
3354
|
-
integrity sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=
|
|
3355
|
-
dependencies:
|
|
3356
|
-
is-core-module "^2.2.0"
|
|
3357
|
-
path-parse "^1.0.6"
|
|
3358
|
-
|
|
3359
|
-
responselike@^1.0.2:
|
|
3360
|
-
version "1.0.2"
|
|
3361
|
-
resolved "https://registry.npm.taobao.org/responselike/download/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
|
|
3362
|
-
integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
|
|
3363
|
-
dependencies:
|
|
3364
|
-
lowercase-keys "^1.0.0"
|
|
3365
|
-
|
|
3366
|
-
restore-cursor@^3.1.0:
|
|
3367
|
-
version "3.1.0"
|
|
3368
|
-
resolved "https://registry.npm.taobao.org/restore-cursor/download/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
|
|
3369
|
-
integrity sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=
|
|
3370
|
-
dependencies:
|
|
3371
|
-
onetime "^5.1.0"
|
|
3372
|
-
signal-exit "^3.0.2"
|
|
3373
|
-
|
|
3374
|
-
reusify@^1.0.4:
|
|
3375
|
-
version "1.0.4"
|
|
3376
|
-
resolved "https://registry.npm.taobao.org/reusify/download/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
|
|
3377
|
-
integrity sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=
|
|
3378
|
-
|
|
3379
|
-
rimraf@^3.0.0, rimraf@^3.0.2:
|
|
3380
|
-
version "3.0.2"
|
|
3381
|
-
resolved "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
|
|
3382
|
-
integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=
|
|
3383
|
-
dependencies:
|
|
3384
|
-
glob "^7.1.3"
|
|
3385
|
-
|
|
3386
|
-
run-parallel@^1.1.9:
|
|
3387
|
-
version "1.2.0"
|
|
3388
|
-
resolved "https://registry.nlark.com/run-parallel/download/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
|
|
3389
|
-
integrity sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=
|
|
3390
|
-
dependencies:
|
|
3391
|
-
queue-microtask "^1.2.2"
|
|
3392
|
-
|
|
3393
|
-
rxjs@^6.6.7:
|
|
3394
|
-
version "6.6.7"
|
|
3395
|
-
resolved "https://registry.nlark.com/rxjs/download/rxjs-6.6.7.tgz?cache=0&sync_timestamp=1621619391474&other_urls=https%3A%2F%2Fregistry.nlark.com%2Frxjs%2Fdownload%2Frxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
|
|
3396
|
-
integrity sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=
|
|
3397
|
-
dependencies:
|
|
3398
|
-
tslib "^1.9.0"
|
|
3399
|
-
|
|
3400
|
-
safe-buffer@~5.1.1:
|
|
3401
|
-
version "5.1.2"
|
|
3402
|
-
resolved "https://registry.nlark.com/safe-buffer/download/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
|
3403
|
-
integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0=
|
|
3404
|
-
|
|
3405
|
-
"safer-buffer@>= 2.1.2 < 3":
|
|
3406
|
-
version "2.1.2"
|
|
3407
|
-
resolved "https://registry.nlark.com/safer-buffer/download/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
|
3408
|
-
integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=
|
|
3409
|
-
|
|
3410
|
-
saxes@^5.0.1:
|
|
3411
|
-
version "5.0.1"
|
|
3412
|
-
resolved "https://registry.nlark.com/saxes/download/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
|
|
3413
|
-
integrity sha1-7rq5U/o7dgjb6U5drbFciI+maW0=
|
|
3414
|
-
dependencies:
|
|
3415
|
-
xmlchars "^2.2.0"
|
|
3416
|
-
|
|
3417
|
-
semver-compare@^1.0.0:
|
|
3418
|
-
version "1.0.0"
|
|
3419
|
-
resolved "https://registry.npm.taobao.org/semver-compare/download/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
|
|
3420
|
-
integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
|
|
3421
|
-
|
|
3422
|
-
semver-diff@^3.1.1:
|
|
3423
|
-
version "3.1.1"
|
|
3424
|
-
resolved "https://registry.nlark.com/semver-diff/download/semver-diff-3.1.1.tgz?cache=0&sync_timestamp=1620044887257&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver-diff%2Fdownload%2Fsemver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b"
|
|
3425
|
-
integrity sha1-Bfd85Z8yXgDicGr9Z7tQbdscoys=
|
|
3426
|
-
dependencies:
|
|
3427
|
-
semver "^6.3.0"
|
|
3428
|
-
|
|
3429
|
-
semver-regex@^3.1.2:
|
|
3430
|
-
version "3.1.2"
|
|
3431
|
-
resolved "https://registry.nlark.com/semver-regex/download/semver-regex-3.1.2.tgz#34b4c0d361eef262e07199dbef316d0f2ab11807"
|
|
3432
|
-
integrity sha1-NLTA02Hu8mLgcZnb7zFtDyqxGAc=
|
|
3433
|
-
|
|
3434
|
-
semver@7.x, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5:
|
|
3435
|
-
version "7.3.5"
|
|
3436
|
-
resolved "https://registry.nlark.com/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1618846864940&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
|
|
3437
|
-
integrity sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=
|
|
3438
|
-
dependencies:
|
|
3439
|
-
lru-cache "^6.0.0"
|
|
3440
|
-
|
|
3441
|
-
semver@^5.7.1:
|
|
3442
|
-
version "5.7.1"
|
|
3443
|
-
resolved "https://registry.nlark.com/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1618846864940&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
|
3444
|
-
integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=
|
|
3445
|
-
|
|
3446
|
-
semver@^6.0.0, semver@^6.2.0, semver@^6.3.0:
|
|
3447
|
-
version "6.3.0"
|
|
3448
|
-
resolved "https://registry.nlark.com/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1618846864940&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
|
3449
|
-
integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=
|
|
3450
|
-
|
|
3451
|
-
shebang-command@^2.0.0:
|
|
3452
|
-
version "2.0.0"
|
|
3453
|
-
resolved "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
|
|
3454
|
-
integrity sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=
|
|
3455
|
-
dependencies:
|
|
3456
|
-
shebang-regex "^3.0.0"
|
|
3457
|
-
|
|
3458
|
-
shebang-regex@^3.0.0:
|
|
3459
|
-
version "3.0.0"
|
|
3460
|
-
resolved "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
|
|
3461
|
-
integrity sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=
|
|
3462
|
-
|
|
3463
|
-
signal-exit@^3.0.2, signal-exit@^3.0.3:
|
|
3464
|
-
version "3.0.3"
|
|
3465
|
-
resolved "https://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.3.tgz?cache=0&sync_timestamp=1592843131591&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsignal-exit%2Fdownload%2Fsignal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
|
3466
|
-
integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw=
|
|
3467
|
-
|
|
3468
|
-
sisteransi@^1.0.5:
|
|
3469
|
-
version "1.0.5"
|
|
3470
|
-
resolved "https://registry.npm.taobao.org/sisteransi/download/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
|
|
3471
|
-
integrity sha1-E01oEpd1ZDfMBcoBNw06elcQde0=
|
|
3472
|
-
|
|
3473
|
-
slash@^3.0.0:
|
|
3474
|
-
version "3.0.0"
|
|
3475
|
-
resolved "https://registry.nlark.com/slash/download/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
|
|
3476
|
-
integrity sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=
|
|
3477
|
-
|
|
3478
|
-
slice-ansi@^3.0.0:
|
|
3479
|
-
version "3.0.0"
|
|
3480
|
-
resolved "https://registry.npm.taobao.org/slice-ansi/download/slice-ansi-3.0.0.tgz?cache=0&sync_timestamp=1618554984144&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fslice-ansi%2Fdownload%2Fslice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
|
|
3481
|
-
integrity sha1-Md3BCTCht+C2ewjJbC9Jt3p4l4c=
|
|
3482
|
-
dependencies:
|
|
3483
|
-
ansi-styles "^4.0.0"
|
|
3484
|
-
astral-regex "^2.0.0"
|
|
3485
|
-
is-fullwidth-code-point "^3.0.0"
|
|
3486
|
-
|
|
3487
|
-
slice-ansi@^4.0.0:
|
|
3488
|
-
version "4.0.0"
|
|
3489
|
-
resolved "https://registry.npm.taobao.org/slice-ansi/download/slice-ansi-4.0.0.tgz?cache=0&sync_timestamp=1618554984144&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fslice-ansi%2Fdownload%2Fslice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
|
|
3490
|
-
integrity sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=
|
|
3491
|
-
dependencies:
|
|
3492
|
-
ansi-styles "^4.0.0"
|
|
3493
|
-
astral-regex "^2.0.0"
|
|
3494
|
-
is-fullwidth-code-point "^3.0.0"
|
|
3495
|
-
|
|
3496
|
-
source-map-support@^0.5.6:
|
|
3497
|
-
version "0.5.19"
|
|
3498
|
-
resolved "https://registry.npm.taobao.org/source-map-support/download/source-map-support-0.5.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
|
|
3499
|
-
integrity sha1-qYti+G3K9PZzmWSMCFKRq56P7WE=
|
|
3500
|
-
dependencies:
|
|
3501
|
-
buffer-from "^1.0.0"
|
|
3502
|
-
source-map "^0.6.0"
|
|
3503
|
-
|
|
3504
|
-
source-map@^0.5.0:
|
|
3505
|
-
version "0.5.7"
|
|
3506
|
-
resolved "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
|
3507
|
-
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
|
|
3508
|
-
|
|
3509
|
-
source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
|
|
3510
|
-
version "0.6.1"
|
|
3511
|
-
resolved "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
|
3512
|
-
integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
|
|
3513
|
-
|
|
3514
|
-
source-map@^0.7.3:
|
|
3515
|
-
version "0.7.3"
|
|
3516
|
-
resolved "https://registry.nlark.com/source-map/download/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
|
|
3517
|
-
integrity sha1-UwL4FpAxc1ImVECS5kmB91F1A4M=
|
|
3518
|
-
|
|
3519
|
-
sprintf-js@~1.0.2:
|
|
3520
|
-
version "1.0.3"
|
|
3521
|
-
resolved "https://registry.nlark.com/sprintf-js/download/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
|
3522
|
-
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
|
|
3523
|
-
|
|
3524
|
-
stack-utils@^2.0.3:
|
|
3525
|
-
version "2.0.3"
|
|
3526
|
-
resolved "https://registry.nlark.com/stack-utils/download/stack-utils-2.0.3.tgz?cache=0&sync_timestamp=1618847025165&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstack-utils%2Fdownload%2Fstack-utils-2.0.3.tgz#cd5f030126ff116b78ccb3c027fe302713b61277"
|
|
3527
|
-
integrity sha1-zV8DASb/EWt4zLPAJ/4wJxO2Enc=
|
|
3528
|
-
dependencies:
|
|
3529
|
-
escape-string-regexp "^2.0.0"
|
|
3530
|
-
|
|
3531
|
-
string-argv@0.3.1:
|
|
3532
|
-
version "0.3.1"
|
|
3533
|
-
resolved "https://registry.npm.taobao.org/string-argv/download/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
|
|
3534
|
-
integrity sha1-leL77AQnrhkYSTX4FtdKqkxcGdo=
|
|
3535
|
-
|
|
3536
|
-
string-length@^4.0.1:
|
|
3537
|
-
version "4.0.2"
|
|
3538
|
-
resolved "https://registry.nlark.com/string-length/download/string-length-4.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-length%2Fdownload%2Fstring-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
|
|
3539
|
-
integrity sha1-qKjce9XBqCubPIuH4SX2aHG25Xo=
|
|
3540
|
-
dependencies:
|
|
3541
|
-
char-regex "^1.0.2"
|
|
3542
|
-
strip-ansi "^6.0.0"
|
|
3543
|
-
|
|
3544
|
-
string-width@^3.0.0:
|
|
3545
|
-
version "3.1.0"
|
|
3546
|
-
resolved "https://registry.nlark.com/string-width/download/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
|
|
3547
|
-
integrity sha1-InZ74htirxCBV0MG9prFG2IgOWE=
|
|
3548
|
-
dependencies:
|
|
3549
|
-
emoji-regex "^7.0.1"
|
|
3550
|
-
is-fullwidth-code-point "^2.0.0"
|
|
3551
|
-
strip-ansi "^5.1.0"
|
|
3552
|
-
|
|
3553
|
-
string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
|
|
3554
|
-
version "4.2.2"
|
|
3555
|
-
resolved "https://registry.nlark.com/string-width/download/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
|
|
3556
|
-
integrity sha1-2v1PlVmnWFz7pSnGoKT3NIjr1MU=
|
|
3557
|
-
dependencies:
|
|
3558
|
-
emoji-regex "^8.0.0"
|
|
3559
|
-
is-fullwidth-code-point "^3.0.0"
|
|
3560
|
-
strip-ansi "^6.0.0"
|
|
3561
|
-
|
|
3562
|
-
stringify-object@^3.3.0:
|
|
3563
|
-
version "3.3.0"
|
|
3564
|
-
resolved "https://registry.npm.taobao.org/stringify-object/download/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
|
|
3565
|
-
integrity sha1-cDBlrvyhkwDTzoivT1s5VtdVZik=
|
|
3566
|
-
dependencies:
|
|
3567
|
-
get-own-enumerable-property-symbols "^3.0.0"
|
|
3568
|
-
is-obj "^1.0.1"
|
|
3569
|
-
is-regexp "^1.0.0"
|
|
3570
|
-
|
|
3571
|
-
strip-ansi@^5.1.0:
|
|
3572
|
-
version "5.2.0"
|
|
3573
|
-
resolved "https://registry.nlark.com/strip-ansi/download/strip-ansi-5.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
|
|
3574
|
-
integrity sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=
|
|
3575
|
-
dependencies:
|
|
3576
|
-
ansi-regex "^4.1.0"
|
|
3577
|
-
|
|
3578
|
-
strip-ansi@^6.0.0:
|
|
3579
|
-
version "6.0.0"
|
|
3580
|
-
resolved "https://registry.nlark.com/strip-ansi/download/strip-ansi-6.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
|
|
3581
|
-
integrity sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=
|
|
3582
|
-
dependencies:
|
|
3583
|
-
ansi-regex "^5.0.0"
|
|
3584
|
-
|
|
3585
|
-
strip-bom@^4.0.0:
|
|
3586
|
-
version "4.0.0"
|
|
3587
|
-
resolved "https://registry.nlark.com/strip-bom/download/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
|
|
3588
|
-
integrity sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=
|
|
3589
|
-
|
|
3590
|
-
strip-final-newline@^2.0.0:
|
|
3591
|
-
version "2.0.0"
|
|
3592
|
-
resolved "https://registry.nlark.com/strip-final-newline/download/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
|
|
3593
|
-
integrity sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=
|
|
3594
|
-
|
|
3595
|
-
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
|
|
3596
|
-
version "3.1.1"
|
|
3597
|
-
resolved "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-3.1.1.tgz?cache=0&sync_timestamp=1594571796132&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-json-comments%2Fdownload%2Fstrip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
|
|
3598
|
-
integrity sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=
|
|
3599
|
-
|
|
3600
|
-
strip-json-comments@~2.0.1:
|
|
3601
|
-
version "2.0.1"
|
|
3602
|
-
resolved "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-2.0.1.tgz?cache=0&sync_timestamp=1594571796132&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-json-comments%2Fdownload%2Fstrip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
|
3603
|
-
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
|
3604
|
-
|
|
3605
|
-
supports-color@^5.3.0, supports-color@^5.5.0:
|
|
3606
|
-
version "5.5.0"
|
|
3607
|
-
resolved "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1622293579301&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
|
3608
|
-
integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=
|
|
3609
|
-
dependencies:
|
|
3610
|
-
has-flag "^3.0.0"
|
|
3611
|
-
|
|
3612
|
-
supports-color@^7.0.0, supports-color@^7.1.0:
|
|
3613
|
-
version "7.2.0"
|
|
3614
|
-
resolved "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1622293579301&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
|
3615
|
-
integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=
|
|
3616
|
-
dependencies:
|
|
3617
|
-
has-flag "^4.0.0"
|
|
3618
|
-
|
|
3619
|
-
supports-color@^8.0.0:
|
|
3620
|
-
version "8.1.1"
|
|
3621
|
-
resolved "https://registry.nlark.com/supports-color/download/supports-color-8.1.1.tgz?cache=0&sync_timestamp=1622293579301&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
|
|
3622
|
-
integrity sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=
|
|
3623
|
-
dependencies:
|
|
3624
|
-
has-flag "^4.0.0"
|
|
3625
|
-
|
|
3626
|
-
supports-hyperlinks@^2.0.0:
|
|
3627
|
-
version "2.2.0"
|
|
3628
|
-
resolved "https://registry.npm.taobao.org/supports-hyperlinks/download/supports-hyperlinks-2.2.0.tgz?cache=0&sync_timestamp=1617751242412&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-hyperlinks%2Fdownload%2Fsupports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb"
|
|
3629
|
-
integrity sha1-T3e0JIh2WJF3S3DHm6vYf5vVlLs=
|
|
3630
|
-
dependencies:
|
|
3631
|
-
has-flag "^4.0.0"
|
|
3632
|
-
supports-color "^7.0.0"
|
|
3633
|
-
|
|
3634
|
-
symbol-tree@^3.2.4:
|
|
3635
|
-
version "3.2.4"
|
|
3636
|
-
resolved "https://registry.npm.taobao.org/symbol-tree/download/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
|
|
3637
|
-
integrity sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=
|
|
3638
|
-
|
|
3639
|
-
table@^6.0.9:
|
|
3640
|
-
version "6.7.1"
|
|
3641
|
-
resolved "https://registry.nlark.com/table/download/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2"
|
|
3642
|
-
integrity sha1-7gVZK3FDgxqMlPPO5qrkwczvM+I=
|
|
3643
|
-
dependencies:
|
|
3644
|
-
ajv "^8.0.1"
|
|
3645
|
-
lodash.clonedeep "^4.5.0"
|
|
3646
|
-
lodash.truncate "^4.4.2"
|
|
3647
|
-
slice-ansi "^4.0.0"
|
|
3648
|
-
string-width "^4.2.0"
|
|
3649
|
-
strip-ansi "^6.0.0"
|
|
3650
|
-
|
|
3651
|
-
term-size@^2.1.0:
|
|
3652
|
-
version "2.2.1"
|
|
3653
|
-
resolved "https://registry.npm.taobao.org/term-size/download/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
|
|
3654
|
-
integrity sha1-KmpUhAQywvtjIP6g9BVTHpAYn1Q=
|
|
3655
|
-
|
|
3656
|
-
terminal-link@^2.0.0:
|
|
3657
|
-
version "2.1.1"
|
|
3658
|
-
resolved "https://registry.npm.taobao.org/terminal-link/download/terminal-link-2.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fterminal-link%2Fdownload%2Fterminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
|
|
3659
|
-
integrity sha1-FKZKJ6s8Dfkz6lRvulXy0HjtyZQ=
|
|
3660
|
-
dependencies:
|
|
3661
|
-
ansi-escapes "^4.2.1"
|
|
3662
|
-
supports-hyperlinks "^2.0.0"
|
|
3663
|
-
|
|
3664
|
-
test-exclude@^6.0.0:
|
|
3665
|
-
version "6.0.0"
|
|
3666
|
-
resolved "https://registry.npm.taobao.org/test-exclude/download/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
|
|
3667
|
-
integrity sha1-BKhphmHYBepvopO2y55jrARO8V4=
|
|
3668
|
-
dependencies:
|
|
3669
|
-
"@istanbuljs/schema" "^0.1.2"
|
|
3670
|
-
glob "^7.1.4"
|
|
3671
|
-
minimatch "^3.0.4"
|
|
3672
|
-
|
|
3673
|
-
text-table@^0.2.0:
|
|
3674
|
-
version "0.2.0"
|
|
3675
|
-
resolved "https://registry.npm.taobao.org/text-table/download/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
|
3676
|
-
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
|
|
3677
|
-
|
|
3678
|
-
throat@^6.0.1:
|
|
3679
|
-
version "6.0.1"
|
|
3680
|
-
resolved "https://registry.npm.taobao.org/throat/download/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
|
|
3681
|
-
integrity sha1-1RT+2tlXQMEsLX/HDqhj61Gt43U=
|
|
3682
|
-
|
|
3683
|
-
through@^2.3.8:
|
|
3684
|
-
version "2.3.8"
|
|
3685
|
-
resolved "https://registry.nlark.com/through/download/through-2.3.8.tgz?cache=0&sync_timestamp=1618847037651&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fthrough%2Fdownload%2Fthrough-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
|
3686
|
-
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
|
|
3687
|
-
|
|
3688
|
-
tmpl@1.0.x:
|
|
3689
|
-
version "1.0.4"
|
|
3690
|
-
resolved "https://registry.npm.taobao.org/tmpl/download/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
|
|
3691
|
-
integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
|
|
3692
|
-
|
|
3693
|
-
to-fast-properties@^2.0.0:
|
|
3694
|
-
version "2.0.0"
|
|
3695
|
-
resolved "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
|
3696
|
-
integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
|
|
3697
|
-
|
|
3698
|
-
to-readable-stream@^1.0.0:
|
|
3699
|
-
version "1.0.0"
|
|
3700
|
-
resolved "https://registry.nlark.com/to-readable-stream/download/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771"
|
|
3701
|
-
integrity sha1-zgqgwvPfat+FLvtASng+d8BHV3E=
|
|
3702
|
-
|
|
3703
|
-
to-regex-range@^5.0.1:
|
|
3704
|
-
version "5.0.1"
|
|
3705
|
-
resolved "https://registry.nlark.com/to-regex-range/download/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
|
|
3706
|
-
integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=
|
|
3707
|
-
dependencies:
|
|
3708
|
-
is-number "^7.0.0"
|
|
3709
|
-
|
|
3710
|
-
touch@^3.1.0:
|
|
3711
|
-
version "3.1.0"
|
|
3712
|
-
resolved "https://registry.nlark.com/touch/download/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b"
|
|
3713
|
-
integrity sha1-/jZfX3XsntTlaCXgu3bSSrdK+Ds=
|
|
3714
|
-
dependencies:
|
|
3715
|
-
nopt "~1.0.10"
|
|
3716
|
-
|
|
3717
|
-
tough-cookie@^4.0.0:
|
|
3718
|
-
version "4.0.0"
|
|
3719
|
-
resolved "https://registry.npm.taobao.org/tough-cookie/download/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
|
|
3720
|
-
integrity sha1-2CIjTuyogvmR8PkIgkrSYi3b7OQ=
|
|
3721
|
-
dependencies:
|
|
3722
|
-
psl "^1.1.33"
|
|
3723
|
-
punycode "^2.1.1"
|
|
3724
|
-
universalify "^0.1.2"
|
|
3725
|
-
|
|
3726
|
-
tr46@^2.1.0:
|
|
3727
|
-
version "2.1.0"
|
|
3728
|
-
resolved "https://registry.nlark.com/tr46/download/tr46-2.1.0.tgz?cache=0&sync_timestamp=1621678141628&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftr46%2Fdownload%2Ftr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
|
|
3729
|
-
integrity sha1-+oeqgcpdWUHajL8fm3SdyWmk4kA=
|
|
3730
|
-
dependencies:
|
|
3731
|
-
punycode "^2.1.1"
|
|
3732
|
-
|
|
3733
|
-
ts-jest@^27.0.3:
|
|
3734
|
-
version "27.0.3"
|
|
3735
|
-
resolved "https://registry.nlark.com/ts-jest/download/ts-jest-27.0.3.tgz#808492f022296cde19390bb6ad627c8126bf93f8"
|
|
3736
|
-
integrity sha1-gISS8CIpbN4ZOQu2rWJ8gSa/k/g=
|
|
3737
|
-
dependencies:
|
|
3738
|
-
bs-logger "0.x"
|
|
3739
|
-
buffer-from "1.x"
|
|
3740
|
-
fast-json-stable-stringify "2.x"
|
|
3741
|
-
jest-util "^27.0.0"
|
|
3742
|
-
json5 "2.x"
|
|
3743
|
-
lodash "4.x"
|
|
3744
|
-
make-error "1.x"
|
|
3745
|
-
mkdirp "1.x"
|
|
3746
|
-
semver "7.x"
|
|
3747
|
-
yargs-parser "20.x"
|
|
3748
|
-
|
|
3749
|
-
tslib@^1.8.1, tslib@^1.9.0:
|
|
3750
|
-
version "1.14.1"
|
|
3751
|
-
resolved "https://registry.nlark.com/tslib/download/tslib-1.14.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftslib%2Fdownload%2Ftslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
|
3752
|
-
integrity sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=
|
|
3753
|
-
|
|
3754
|
-
tsutils@^3.21.0:
|
|
3755
|
-
version "3.21.0"
|
|
3756
|
-
resolved "https://registry.npm.taobao.org/tsutils/download/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
|
|
3757
|
-
integrity sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=
|
|
3758
|
-
dependencies:
|
|
3759
|
-
tslib "^1.8.1"
|
|
3760
|
-
|
|
3761
|
-
type-check@^0.4.0, type-check@~0.4.0:
|
|
3762
|
-
version "0.4.0"
|
|
3763
|
-
resolved "https://registry.nlark.com/type-check/download/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
|
|
3764
|
-
integrity sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=
|
|
3765
|
-
dependencies:
|
|
3766
|
-
prelude-ls "^1.2.1"
|
|
3767
|
-
|
|
3768
|
-
type-check@~0.3.2:
|
|
3769
|
-
version "0.3.2"
|
|
3770
|
-
resolved "https://registry.nlark.com/type-check/download/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
|
|
3771
|
-
integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
|
|
3772
|
-
dependencies:
|
|
3773
|
-
prelude-ls "~1.1.2"
|
|
3774
|
-
|
|
3775
|
-
type-detect@4.0.8:
|
|
3776
|
-
version "4.0.8"
|
|
3777
|
-
resolved "https://registry.nlark.com/type-detect/download/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
|
|
3778
|
-
integrity sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=
|
|
3779
|
-
|
|
3780
|
-
type-fest@^0.20.2:
|
|
3781
|
-
version "0.20.2"
|
|
3782
|
-
resolved "https://registry.nlark.com/type-fest/download/type-fest-0.20.2.tgz?cache=0&sync_timestamp=1622543341459&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
|
|
3783
|
-
integrity sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=
|
|
3784
|
-
|
|
3785
|
-
type-fest@^0.21.3:
|
|
3786
|
-
version "0.21.3"
|
|
3787
|
-
resolved "https://registry.nlark.com/type-fest/download/type-fest-0.21.3.tgz?cache=0&sync_timestamp=1622543341459&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
|
|
3788
|
-
integrity sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=
|
|
3789
|
-
|
|
3790
|
-
type-fest@^0.8.1:
|
|
3791
|
-
version "0.8.1"
|
|
3792
|
-
resolved "https://registry.nlark.com/type-fest/download/type-fest-0.8.1.tgz?cache=0&sync_timestamp=1622543341459&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftype-fest%2Fdownload%2Ftype-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
|
|
3793
|
-
integrity sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=
|
|
3794
|
-
|
|
3795
|
-
typedarray-to-buffer@^3.1.5:
|
|
3796
|
-
version "3.1.5"
|
|
3797
|
-
resolved "https://registry.npm.taobao.org/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
|
|
3798
|
-
integrity sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=
|
|
3799
|
-
dependencies:
|
|
3800
|
-
is-typedarray "^1.0.0"
|
|
3801
|
-
|
|
3802
|
-
typescript@^4.3.2:
|
|
3803
|
-
version "4.3.2"
|
|
3804
|
-
resolved "https://registry.nlark.com/typescript/download/typescript-4.3.2.tgz#399ab18aac45802d6f2498de5054fcbbe716a805"
|
|
3805
|
-
integrity sha1-OZqxiqxFgC1vJJjeUFT8u+cWqAU=
|
|
3806
|
-
|
|
3807
|
-
undefsafe@^2.0.3:
|
|
3808
|
-
version "2.0.3"
|
|
3809
|
-
resolved "https://registry.npm.taobao.org/undefsafe/download/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae"
|
|
3810
|
-
integrity sha1-axZucJStRjE7IgLafsws18xueq4=
|
|
3811
|
-
dependencies:
|
|
3812
|
-
debug "^2.2.0"
|
|
3813
|
-
|
|
3814
|
-
unique-string@^2.0.0:
|
|
3815
|
-
version "2.0.0"
|
|
3816
|
-
resolved "https://registry.nlark.com/unique-string/download/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
|
|
3817
|
-
integrity sha1-OcZFH4GvsnSd4rIz4/fF6IQ72J0=
|
|
3818
|
-
dependencies:
|
|
3819
|
-
crypto-random-string "^2.0.0"
|
|
3820
|
-
|
|
3821
|
-
universalify@^0.1.2:
|
|
3822
|
-
version "0.1.2"
|
|
3823
|
-
resolved "https://registry.npm.taobao.org/universalify/download/universalify-0.1.2.tgz?cache=0&sync_timestamp=1603180004159&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funiversalify%2Fdownload%2Funiversalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
|
|
3824
|
-
integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=
|
|
3825
|
-
|
|
3826
|
-
update-notifier@^4.1.0:
|
|
3827
|
-
version "4.1.3"
|
|
3828
|
-
resolved "https://registry.npm.taobao.org/update-notifier/download/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3"
|
|
3829
|
-
integrity sha1-vobuE+jOSPtQBD/3IFe1vVmOHqM=
|
|
3830
|
-
dependencies:
|
|
3831
|
-
boxen "^4.2.0"
|
|
3832
|
-
chalk "^3.0.0"
|
|
3833
|
-
configstore "^5.0.1"
|
|
3834
|
-
has-yarn "^2.1.0"
|
|
3835
|
-
import-lazy "^2.1.0"
|
|
3836
|
-
is-ci "^2.0.0"
|
|
3837
|
-
is-installed-globally "^0.3.1"
|
|
3838
|
-
is-npm "^4.0.0"
|
|
3839
|
-
is-yarn-global "^0.3.0"
|
|
3840
|
-
latest-version "^5.0.0"
|
|
3841
|
-
pupa "^2.0.1"
|
|
3842
|
-
semver-diff "^3.1.1"
|
|
3843
|
-
xdg-basedir "^4.0.0"
|
|
3844
|
-
|
|
3845
|
-
uri-js@^4.2.2:
|
|
3846
|
-
version "4.4.1"
|
|
3847
|
-
resolved "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz?cache=0&sync_timestamp=1610237641463&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Furi-js%2Fdownload%2Furi-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
|
|
3848
|
-
integrity sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=
|
|
3849
|
-
dependencies:
|
|
3850
|
-
punycode "^2.1.0"
|
|
3851
|
-
|
|
3852
|
-
url-parse-lax@^3.0.0:
|
|
3853
|
-
version "3.0.0"
|
|
3854
|
-
resolved "https://registry.npm.taobao.org/url-parse-lax/download/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
|
|
3855
|
-
integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
|
|
3856
|
-
dependencies:
|
|
3857
|
-
prepend-http "^2.0.0"
|
|
3858
|
-
|
|
3859
|
-
v8-compile-cache@^2.0.3:
|
|
3860
|
-
version "2.3.0"
|
|
3861
|
-
resolved "https://registry.nlark.com/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
|
|
3862
|
-
integrity sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4=
|
|
3863
|
-
|
|
3864
|
-
v8-to-istanbul@^7.0.0:
|
|
3865
|
-
version "7.1.2"
|
|
3866
|
-
resolved "https://registry.nlark.com/v8-to-istanbul/download/v8-to-istanbul-7.1.2.tgz?cache=0&sync_timestamp=1622757647913&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fv8-to-istanbul%2Fdownload%2Fv8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1"
|
|
3867
|
-
integrity sha1-MImNGn+gyE0iWiwUNPuVjykIg8E=
|
|
3868
|
-
dependencies:
|
|
3869
|
-
"@types/istanbul-lib-coverage" "^2.0.1"
|
|
3870
|
-
convert-source-map "^1.6.0"
|
|
3871
|
-
source-map "^0.7.3"
|
|
3872
|
-
|
|
3873
|
-
w3c-hr-time@^1.0.2:
|
|
3874
|
-
version "1.0.2"
|
|
3875
|
-
resolved "https://registry.npm.taobao.org/w3c-hr-time/download/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
|
|
3876
|
-
integrity sha1-ConN9cwVgi35w2BUNnaWPgzDCM0=
|
|
3877
|
-
dependencies:
|
|
3878
|
-
browser-process-hrtime "^1.0.0"
|
|
3879
|
-
|
|
3880
|
-
w3c-xmlserializer@^2.0.0:
|
|
3881
|
-
version "2.0.0"
|
|
3882
|
-
resolved "https://registry.nlark.com/w3c-xmlserializer/download/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
|
|
3883
|
-
integrity sha1-PnEEoFt1FGzGD1ZDgLf2g6zxAgo=
|
|
3884
|
-
dependencies:
|
|
3885
|
-
xml-name-validator "^3.0.0"
|
|
3886
|
-
|
|
3887
|
-
walker@^1.0.7:
|
|
3888
|
-
version "1.0.7"
|
|
3889
|
-
resolved "https://registry.npm.taobao.org/walker/download/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
|
|
3890
|
-
integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
|
|
3891
|
-
dependencies:
|
|
3892
|
-
makeerror "1.0.x"
|
|
3893
|
-
|
|
3894
|
-
webidl-conversions@^5.0.0:
|
|
3895
|
-
version "5.0.0"
|
|
3896
|
-
resolved "https://registry.npm.taobao.org/webidl-conversions/download/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
|
|
3897
|
-
integrity sha1-rlnIoAsSFUOirMZcBDT1ew/BGv8=
|
|
3898
|
-
|
|
3899
|
-
webidl-conversions@^6.1.0:
|
|
3900
|
-
version "6.1.0"
|
|
3901
|
-
resolved "https://registry.npm.taobao.org/webidl-conversions/download/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
|
|
3902
|
-
integrity sha1-kRG01+qArNQPUnDWZmIa+ni2lRQ=
|
|
3903
|
-
|
|
3904
|
-
whatwg-encoding@^1.0.5:
|
|
3905
|
-
version "1.0.5"
|
|
3906
|
-
resolved "https://registry.nlark.com/whatwg-encoding/download/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
|
|
3907
|
-
integrity sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA=
|
|
3908
|
-
dependencies:
|
|
3909
|
-
iconv-lite "0.4.24"
|
|
3910
|
-
|
|
3911
|
-
whatwg-mimetype@^2.3.0:
|
|
3912
|
-
version "2.3.0"
|
|
3913
|
-
resolved "https://registry.npm.taobao.org/whatwg-mimetype/download/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
|
|
3914
|
-
integrity sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78=
|
|
3915
|
-
|
|
3916
|
-
whatwg-url@^8.0.0, whatwg-url@^8.5.0:
|
|
3917
|
-
version "8.6.0"
|
|
3918
|
-
resolved "https://registry.nlark.com/whatwg-url/download/whatwg-url-8.6.0.tgz?cache=0&sync_timestamp=1623171252980&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwhatwg-url%2Fdownload%2Fwhatwg-url-8.6.0.tgz#27c0205a4902084b872aecb97cf0f2a7a3011f4c"
|
|
3919
|
-
integrity sha1-J8AgWkkCCEuHKuy5fPDyp6MBH0w=
|
|
3920
|
-
dependencies:
|
|
3921
|
-
lodash "^4.7.0"
|
|
3922
|
-
tr46 "^2.1.0"
|
|
3923
|
-
webidl-conversions "^6.1.0"
|
|
3924
|
-
|
|
3925
|
-
which-pm-runs@^1.0.0:
|
|
3926
|
-
version "1.0.0"
|
|
3927
|
-
resolved "https://registry.npm.taobao.org/which-pm-runs/download/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
|
|
3928
|
-
integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=
|
|
3929
|
-
|
|
3930
|
-
which@^2.0.1:
|
|
3931
|
-
version "2.0.2"
|
|
3932
|
-
resolved "https://registry.nlark.com/which/download/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
|
|
3933
|
-
integrity sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=
|
|
3934
|
-
dependencies:
|
|
3935
|
-
isexe "^2.0.0"
|
|
3936
|
-
|
|
3937
|
-
widest-line@^3.1.0:
|
|
3938
|
-
version "3.1.0"
|
|
3939
|
-
resolved "https://registry.nlark.com/widest-line/download/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
|
|
3940
|
-
integrity sha1-gpIzO79my0X/DeFgOxNreuFJbso=
|
|
3941
|
-
dependencies:
|
|
3942
|
-
string-width "^4.0.0"
|
|
3943
|
-
|
|
3944
|
-
word-wrap@^1.2.3, word-wrap@~1.2.3:
|
|
3945
|
-
version "1.2.3"
|
|
3946
|
-
resolved "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
|
|
3947
|
-
integrity sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=
|
|
3948
|
-
|
|
3949
|
-
wrap-ansi@^6.2.0:
|
|
3950
|
-
version "6.2.0"
|
|
3951
|
-
resolved "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
|
|
3952
|
-
integrity sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=
|
|
3953
|
-
dependencies:
|
|
3954
|
-
ansi-styles "^4.0.0"
|
|
3955
|
-
string-width "^4.1.0"
|
|
3956
|
-
strip-ansi "^6.0.0"
|
|
3957
|
-
|
|
3958
|
-
wrap-ansi@^7.0.0:
|
|
3959
|
-
version "7.0.0"
|
|
3960
|
-
resolved "https://registry.nlark.com/wrap-ansi/download/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
|
|
3961
|
-
integrity sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=
|
|
3962
|
-
dependencies:
|
|
3963
|
-
ansi-styles "^4.0.0"
|
|
3964
|
-
string-width "^4.1.0"
|
|
3965
|
-
strip-ansi "^6.0.0"
|
|
3966
|
-
|
|
3967
|
-
wrappy@1:
|
|
3968
|
-
version "1.0.2"
|
|
3969
|
-
resolved "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz?cache=0&sync_timestamp=1619133505879&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwrappy%2Fdownload%2Fwrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
3970
|
-
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
|
3971
|
-
|
|
3972
|
-
write-file-atomic@^3.0.0:
|
|
3973
|
-
version "3.0.3"
|
|
3974
|
-
resolved "https://registry.npm.taobao.org/write-file-atomic/download/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
|
|
3975
|
-
integrity sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=
|
|
3976
|
-
dependencies:
|
|
3977
|
-
imurmurhash "^0.1.4"
|
|
3978
|
-
is-typedarray "^1.0.0"
|
|
3979
|
-
signal-exit "^3.0.2"
|
|
3980
|
-
typedarray-to-buffer "^3.1.5"
|
|
3981
|
-
|
|
3982
|
-
ws@^7.4.5:
|
|
3983
|
-
version "7.4.6"
|
|
3984
|
-
resolved "https://registry.nlark.com/ws/download/ws-7.4.6.tgz?cache=0&sync_timestamp=1623180787489&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fws%2Fdownload%2Fws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c"
|
|
3985
|
-
integrity sha1-VlTKjs3u5HwzqaS/bSjivimAN3w=
|
|
3986
|
-
|
|
3987
|
-
xdg-basedir@^4.0.0:
|
|
3988
|
-
version "4.0.0"
|
|
3989
|
-
resolved "https://registry.npm.taobao.org/xdg-basedir/download/xdg-basedir-4.0.0.tgz?cache=0&sync_timestamp=1617611838739&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fxdg-basedir%2Fdownload%2Fxdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
|
|
3990
|
-
integrity sha1-S8jZmEQDaWIl74OhVzy7y0552xM=
|
|
3991
|
-
|
|
3992
|
-
xml-name-validator@^3.0.0:
|
|
3993
|
-
version "3.0.0"
|
|
3994
|
-
resolved "https://registry.npm.taobao.org/xml-name-validator/download/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
|
|
3995
|
-
integrity sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo=
|
|
3996
|
-
|
|
3997
|
-
xmlchars@^2.2.0:
|
|
3998
|
-
version "2.2.0"
|
|
3999
|
-
resolved "https://registry.npm.taobao.org/xmlchars/download/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
|
|
4000
|
-
integrity sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=
|
|
4001
|
-
|
|
4002
|
-
y18n@^5.0.5:
|
|
4003
|
-
version "5.0.8"
|
|
4004
|
-
resolved "https://registry.nlark.com/y18n/download/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
|
|
4005
|
-
integrity sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=
|
|
4006
|
-
|
|
4007
|
-
yallist@^4.0.0:
|
|
4008
|
-
version "4.0.0"
|
|
4009
|
-
resolved "https://registry.npm.taobao.org/yallist/download/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
|
4010
|
-
integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=
|
|
4011
|
-
|
|
4012
|
-
yaml@^1.10.0:
|
|
4013
|
-
version "1.10.2"
|
|
4014
|
-
resolved "https://registry.nlark.com/yaml/download/yaml-1.10.2.tgz?cache=0&sync_timestamp=1618847148789&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyaml%2Fdownload%2Fyaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
|
|
4015
|
-
integrity sha1-IwHF/78StGfejaIzOkWeKeeSDks=
|
|
4016
|
-
|
|
4017
|
-
yargs-parser@20.x, yargs-parser@^20.2.2:
|
|
4018
|
-
version "20.2.7"
|
|
4019
|
-
resolved "https://registry.nlark.com/yargs-parser/download/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"
|
|
4020
|
-
integrity sha1-Yd+FwRPt+1p6TjbriqYO9CPLyQo=
|
|
4021
|
-
|
|
4022
|
-
yargs@^16.0.3:
|
|
4023
|
-
version "16.2.0"
|
|
4024
|
-
resolved "https://registry.nlark.com/yargs/download/yargs-16.2.0.tgz?cache=0&sync_timestamp=1620086644940&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fyargs%2Fdownload%2Fyargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
|
|
4025
|
-
integrity sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=
|
|
4026
|
-
dependencies:
|
|
4027
|
-
cliui "^7.0.2"
|
|
4028
|
-
escalade "^3.1.1"
|
|
4029
|
-
get-caller-file "^2.0.5"
|
|
4030
|
-
require-directory "^2.1.1"
|
|
4031
|
-
string-width "^4.2.0"
|
|
4032
|
-
y18n "^5.0.5"
|
|
4033
|
-
yargs-parser "^20.2.2"
|
|
4034
|
-
|
|
4035
|
-
yocto-queue@^0.1.0:
|
|
4036
|
-
version "0.1.0"
|
|
4037
|
-
resolved "https://registry.nlark.com/yocto-queue/download/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
|
|
4038
|
-
integrity sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=
|