Merge pull request #10420 from timvandermeij/misc
Update translations/packages and improve documentation
This commit is contained in:
commit
7307c60407
@ -39,7 +39,7 @@ Before downloading PDF.js please take a moment to understand the different layer
|
|||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<h3>Pre-built</h3>
|
<h3>Prebuilt</h3>
|
||||||
<p>
|
<p>
|
||||||
Includes the generic build of PDF.js and the viewer.
|
Includes the generic build of PDF.js and the viewer.
|
||||||
</p>
|
</p>
|
||||||
@ -66,49 +66,51 @@ PDF.js is hosted on several free CDNs:
|
|||||||
|
|
||||||
## File Layout Overview
|
## File Layout Overview
|
||||||
|
|
||||||
|
Note that we only mention the most relevant files and folders.
|
||||||
|
|
||||||
### Prebuilt
|
### Prebuilt
|
||||||
|
|
||||||
```
|
```
|
||||||
├── LICENSE
|
|
||||||
├── build/
|
├── build/
|
||||||
│ ├── pdf.js - display layer
|
│ ├── pdf.js - display layer
|
||||||
│ └── pdf.worker.js - core layer
|
│ ├── pdf.js.map - display layer's source map
|
||||||
└── web/
|
│ ├── pdf.worker.js - core layer
|
||||||
├── cmaps/ - character maps(required by core)
|
│ └── pdf.worker.js.map - core layer's source map
|
||||||
├── compressed.tracemonkey-pldi-09.pdf - test pdf
|
├── web/
|
||||||
├── debugger.js - helpful pdf debugging features
|
│ ├── cmaps/ - character maps (required by core)
|
||||||
├── images/ - images for the viewer and annotation icons
|
│ ├── compressed.tracemonkey-pldi-09.pdf - PDF file for testing purposes
|
||||||
├── l10n.js - localization
|
│ ├── debugger.js - helpful debugging features
|
||||||
├── locale/ - translation files
|
│ └── images/ - images for the viewer and annotation icons
|
||||||
├── viewer.css - viewer style sheet
|
│ ├── locale/ - translation files
|
||||||
├── viewer.html - viewer html
|
│ ├── viewer.css - viewer style sheet
|
||||||
└── viewer.js - viewer layer
|
│ ├── viewer.html - viewer layout
|
||||||
|
│ └── viewer.js - viewer layer
|
||||||
|
│ └── viewer.js.map - viewer layer's source map
|
||||||
|
└── LICENSE
|
||||||
```
|
```
|
||||||
|
|
||||||
### Source
|
### Source
|
||||||
|
|
||||||
```
|
```
|
||||||
├── AUTHORS
|
├── docs/ - website source code
|
||||||
├── CONTRIBUTING.md
|
├── examples/ - simple usage examples
|
||||||
├── LICENSE
|
├── extensions/ - browser extension source code
|
||||||
├── README.md
|
|
||||||
├── build/ - output of build steps (empty)
|
|
||||||
├── docs/ - this
|
|
||||||
├── examples/ - bare bones examples
|
|
||||||
├── extensions/ - various browser extensions
|
|
||||||
├── external/ - third party code
|
├── external/ - third party code
|
||||||
├── l10n/ - translation files
|
├── l10n/ - translation files
|
||||||
├── gulpfile.js - build script
|
|
||||||
├── package.json
|
|
||||||
├── src/
|
├── src/
|
||||||
│ ├── core/ - core layer
|
│ ├── core/ - core layer
|
||||||
│ ├── display/ - display layer
|
│ ├── display/ - display layer
|
||||||
│ ├── images/
|
│ ├── shared/ - shared code between the core and display layers
|
||||||
│ ├── pdf.js - wrapper file that everything is bundled into
|
│ ├── interfaces.js - interface definitions for the core/display layers
|
||||||
│ ├── shared/ - shared code between core and display layers
|
│ ├── pdf.*.js - wrapper files for bundling
|
||||||
│ └── worker_loader.js - used for developer builds to load worker files
|
│ └── worker_loader.js - used for developer builds to load worker files
|
||||||
├── test/ - reference, unit, and font tests
|
├── test/ - unit, font and reference tests
|
||||||
└── web/ - viewer layer
|
├── web/ - viewer layer
|
||||||
|
├── LICENSE
|
||||||
|
├── README.md
|
||||||
|
├── gulpfile.js - build scripts/logic
|
||||||
|
├── package-lock.json - pinned dependency versions
|
||||||
|
└── package.json - package definition and dependencies
|
||||||
```
|
```
|
||||||
|
|
||||||
## Trying the Viewer
|
## Trying the Viewer
|
||||||
|
@ -4,8 +4,8 @@ Example to demonstrate PDF.js library usage for rendering files with AcroForms.
|
|||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
Build PDF.js using `gulp dist` and run `gulp server` to start a web server.
|
Build and install PDF.js using `gulp dist-install` and run `gulp server` to
|
||||||
You can then work with the example at
|
start a web server. You can then work with the example at
|
||||||
http://localhost:8888/examples/acroforms/acroforms.html.
|
http://localhost:8888/examples/acroforms/acroforms.html.
|
||||||
|
|
||||||
Refer to `acroforms.js` for the source code of the example.
|
Refer to `acroforms.js` for the source code of the example.
|
||||||
|
@ -38,7 +38,7 @@ presentation_mode_label=Režim prezentace
|
|||||||
open_file.title=Otevře soubor
|
open_file.title=Otevře soubor
|
||||||
open_file_label=Otevřít
|
open_file_label=Otevřít
|
||||||
print.title=Vytiskne dokument
|
print.title=Vytiskne dokument
|
||||||
print_label=Tisk
|
print_label=Vytisknout
|
||||||
download.title=Stáhne dokument
|
download.title=Stáhne dokument
|
||||||
download_label=Stáhnout
|
download_label=Stáhnout
|
||||||
bookmark.title=Současný pohled (kopírovat nebo otevřít v novém okně)
|
bookmark.title=Současný pohled (kopírovat nebo otevřít v novém okně)
|
||||||
|
@ -65,6 +65,20 @@ cursor_text_select_tool_label=Text Selection Tool
|
|||||||
cursor_hand_tool.title=Enable Hand Tool
|
cursor_hand_tool.title=Enable Hand Tool
|
||||||
cursor_hand_tool_label=Hand Tool
|
cursor_hand_tool_label=Hand Tool
|
||||||
|
|
||||||
|
scroll_vertical.title=Use Vertical Scrolling
|
||||||
|
scroll_vertical_label=Vertical Scrolling
|
||||||
|
scroll_horizontal.title=Use Horizontal Scrolling
|
||||||
|
scroll_horizontal_label=Horizontal Scrolling
|
||||||
|
scroll_wrapped.title=Use Wrapped Scrolling
|
||||||
|
scroll_wrapped_label=Wrapped Scrolling
|
||||||
|
|
||||||
|
spread_none.title=Do not join page spreads
|
||||||
|
spread_none_label=No Spreads
|
||||||
|
spread_odd.title=Join page spreads starting with odd-numbered pages
|
||||||
|
spread_odd_label=Odd Spreads
|
||||||
|
spread_even.title=Join page spreads starting with even-numbered pages
|
||||||
|
spread_even_label=Even Spreads
|
||||||
|
|
||||||
# Document properties dialog box
|
# Document properties dialog box
|
||||||
document_properties.title=Document Properties…
|
document_properties.title=Document Properties…
|
||||||
document_properties_label=Document Properties…
|
document_properties_label=Document Properties…
|
||||||
@ -89,6 +103,28 @@ document_properties_creator=Creator:
|
|||||||
document_properties_producer=PDF Producer:
|
document_properties_producer=PDF Producer:
|
||||||
document_properties_version=PDF Version:
|
document_properties_version=PDF Version:
|
||||||
document_properties_page_count=Page Count:
|
document_properties_page_count=Page Count:
|
||||||
|
document_properties_page_size=Page Size:
|
||||||
|
document_properties_page_size_unit_inches=in
|
||||||
|
document_properties_page_size_unit_millimeters=mm
|
||||||
|
document_properties_page_size_orientation_portrait=portrait
|
||||||
|
document_properties_page_size_orientation_landscape=landscape
|
||||||
|
document_properties_page_size_name_a3=A3
|
||||||
|
document_properties_page_size_name_a4=A4
|
||||||
|
document_properties_page_size_name_letter=Letter
|
||||||
|
document_properties_page_size_name_legal=Legal
|
||||||
|
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
|
||||||
|
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
|
||||||
|
# the size, respectively their unit of measurement and orientation, of the (current) page.
|
||||||
|
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
|
||||||
|
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
|
||||||
|
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
|
||||||
|
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
|
||||||
|
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
|
||||||
|
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||||
|
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||||
|
document_properties_linearized=Fast Web View:
|
||||||
|
document_properties_linearized_yes=Yes
|
||||||
|
document_properties_linearized_no=No
|
||||||
document_properties_close=Close
|
document_properties_close=Close
|
||||||
|
|
||||||
print_progress_message=Preparing document for printing…
|
print_progress_message=Preparing document for printing…
|
||||||
@ -129,8 +165,30 @@ find_next.title=Find the next occurrence of the phrase
|
|||||||
find_next_label=Next
|
find_next_label=Next
|
||||||
find_highlight=Highlight all
|
find_highlight=Highlight all
|
||||||
find_match_case_label=Match case
|
find_match_case_label=Match case
|
||||||
|
find_entire_word_label=Whole words
|
||||||
find_reached_top=Reached top of document, continued from bottom
|
find_reached_top=Reached top of document, continued from bottom
|
||||||
find_reached_bottom=Reached end of document, continued from top
|
find_reached_bottom=Reached end of document, continued from top
|
||||||
|
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
|
||||||
|
# [one|two|few|many|other], with [other] as the default value.
|
||||||
|
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
||||||
|
# index of the currently active find result, respectively a number representing
|
||||||
|
# the total number of matches in the document.
|
||||||
|
find_match_count={[ plural(total) ]}
|
||||||
|
find_match_count[one]={{current}} of {{total}} match
|
||||||
|
find_match_count[two]={{current}} of {{total}} matches
|
||||||
|
find_match_count[few]={{current}} of {{total}} matches
|
||||||
|
find_match_count[many]={{current}} of {{total}} matches
|
||||||
|
find_match_count[other]={{current}} of {{total}} matches
|
||||||
|
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||||
|
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||||
|
# "{{limit}}" will be replaced by a numerical value.
|
||||||
|
find_match_count_limit={[ plural(limit) ]}
|
||||||
|
find_match_count_limit[zero]=More than {{limit}} matches
|
||||||
|
find_match_count_limit[one]=More than {{limit}} match
|
||||||
|
find_match_count_limit[two]=More than {{limit}} matches
|
||||||
|
find_match_count_limit[few]=More than {{limit}} matches
|
||||||
|
find_match_count_limit[many]=More than {{limit}} matches
|
||||||
|
find_match_count_limit[other]=More than {{limit}} matches
|
||||||
find_not_found=Phrase not found
|
find_not_found=Phrase not found
|
||||||
|
|
||||||
# Error panel labels
|
# Error panel labels
|
||||||
|
@ -89,7 +89,7 @@ document_properties_file_size=Dimensiunea fișierului:
|
|||||||
document_properties_kb={{size_kb}} KB ({{size_b}} byți)
|
document_properties_kb={{size_kb}} KB ({{size_b}} byți)
|
||||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||||
document_properties_mb={{size_mb}} MB ({{size_b}} octeți)
|
document_properties_mb={{size_mb}} MB ({{size_b}} byți)
|
||||||
document_properties_title=Titlu:
|
document_properties_title=Titlu:
|
||||||
document_properties_author=Autor:
|
document_properties_author=Autor:
|
||||||
document_properties_subject=Subiect:
|
document_properties_subject=Subiect:
|
||||||
|
@ -160,6 +160,7 @@ find_reached_bottom=పేజీ చివరకు చేరుకున్న
|
|||||||
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
||||||
# index of the currently active find result, respectively a number representing
|
# index of the currently active find result, respectively a number representing
|
||||||
# the total number of matches in the document.
|
# the total number of matches in the document.
|
||||||
|
find_match_count={[ plural(total) ]}
|
||||||
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||||
# [zero|one|two|few|many|other], with [other] as the default value.
|
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||||
# "{{limit}}" will be replaced by a numerical value.
|
# "{{limit}}" will be replaced by a numerical value.
|
||||||
|
@ -122,6 +122,7 @@ document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}}
|
|||||||
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
|
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
|
||||||
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||||
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||||
|
document_properties_linearized=มุมมองเว็บแบบรวดเร็ว:
|
||||||
document_properties_linearized_yes=ใช่
|
document_properties_linearized_yes=ใช่
|
||||||
document_properties_linearized_no=ไม่
|
document_properties_linearized_no=ไม่
|
||||||
document_properties_close=ปิด
|
document_properties_close=ปิด
|
||||||
@ -172,9 +173,22 @@ find_reached_bottom=ค้นหาถึงจุดสิ้นสุดหน
|
|||||||
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
||||||
# index of the currently active find result, respectively a number representing
|
# index of the currently active find result, respectively a number representing
|
||||||
# the total number of matches in the document.
|
# the total number of matches in the document.
|
||||||
|
find_match_count={[ plural(total) ]}
|
||||||
|
find_match_count[one]={{current}} จาก {{total}} ที่ตรงกัน
|
||||||
|
find_match_count[two]={{current}} จาก {{total}} ที่ตรงกัน
|
||||||
|
find_match_count[few]={{current}} จาก {{total}} ที่ตรงกัน
|
||||||
|
find_match_count[many]={{current}} จาก {{total}} ที่ตรงกัน
|
||||||
|
find_match_count[other]={{current}} จาก {{total}} ที่ตรงกัน
|
||||||
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||||
# [zero|one|two|few|many|other], with [other] as the default value.
|
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||||
# "{{limit}}" will be replaced by a numerical value.
|
# "{{limit}}" will be replaced by a numerical value.
|
||||||
|
find_match_count_limit={[ plural(limit) ]}
|
||||||
|
find_match_count_limit[zero]=มากกว่า {{limit}} ที่ตรงกัน
|
||||||
|
find_match_count_limit[one]=มากกว่า {{limit}} ที่ตรงกัน
|
||||||
|
find_match_count_limit[two]=มากกว่า {{limit}} ที่ตรงกัน
|
||||||
|
find_match_count_limit[few]=มากกว่า {{limit}} ที่ตรงกัน
|
||||||
|
find_match_count_limit[many]=มากกว่า {{limit}} ที่ตรงกัน
|
||||||
|
find_match_count_limit[other]=มากกว่า {{limit}} ที่ตรงกัน
|
||||||
find_not_found=ไม่พบวลี
|
find_not_found=ไม่พบวลี
|
||||||
|
|
||||||
# Error panel labels
|
# Error panel labels
|
||||||
|
315
package-lock.json
generated
315
package-lock.json
generated
@ -1111,9 +1111,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"acorn": {
|
"acorn": {
|
||||||
"version": "6.0.4",
|
"version": "6.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.0.5.tgz",
|
||||||
"integrity": "sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg==",
|
"integrity": "sha512-i33Zgp3XWtmZBMNvCr4azvOFeWVw1Rk6p3hfi3LUDvIFraOMywb1kAtrbi+med14m4Xfpqm3zRZMT+c0FNE7kg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"acorn-dynamic-import": {
|
"acorn-dynamic-import": {
|
||||||
@ -1250,7 +1250,7 @@
|
|||||||
},
|
},
|
||||||
"ansi-escapes": {
|
"ansi-escapes": {
|
||||||
"version": "3.1.0",
|
"version": "3.1.0",
|
||||||
"resolved": "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz",
|
||||||
"integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==",
|
"integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
@ -1545,29 +1545,94 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"autoprefixer": {
|
"autoprefixer": {
|
||||||
"version": "9.4.3",
|
"version": "9.4.4",
|
||||||
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.4.3.tgz",
|
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.4.4.tgz",
|
||||||
"integrity": "sha512-/XSnzDepRkAU//xLcXA/lUWxpsBuw0WiriAHOqnxkuCtzLhaz+fL4it4gp20BQ8n5SyLzK/FOc7A0+u/rti2FQ==",
|
"integrity": "sha512-7tpjBadJyHKf+gOJEmKhZIksWxdZCSrnKbbTJNsw+/zX9+f//DLELRQPWjjjVoDbbWlCuNRkN7RfmZwDVgWMLw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"browserslist": "^4.3.6",
|
"browserslist": "^4.3.7",
|
||||||
"caniuse-lite": "^1.0.30000921",
|
"caniuse-lite": "^1.0.30000926",
|
||||||
"normalize-range": "^0.1.2",
|
"normalize-range": "^0.1.2",
|
||||||
"num2fraction": "^1.2.2",
|
"num2fraction": "^1.2.2",
|
||||||
"postcss": "^7.0.6",
|
"postcss": "^7.0.7",
|
||||||
"postcss-value-parser": "^3.3.1"
|
"postcss-value-parser": "^3.3.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"babel-loader": {
|
"babel-loader": {
|
||||||
"version": "8.0.4",
|
"version": "8.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.5.tgz",
|
||||||
"integrity": "sha512-fhBhNkUToJcW9nV46v8w87AJOwAJDz84c1CL57n3Stj73FANM/b9TbCUK4YhdOwEyZ+OxhYpdeZDNzSI29Firw==",
|
"integrity": "sha512-NTnHnVRd2JnRqPC0vW+iOQWU5pchDbYXsG2E6DMXEpMfUcQKclF9gmf3G3ZMhzG7IG9ji4coL0cm+FxeWxDpnw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"find-cache-dir": "^1.0.0",
|
"find-cache-dir": "^2.0.0",
|
||||||
"loader-utils": "^1.0.2",
|
"loader-utils": "^1.0.2",
|
||||||
"mkdirp": "^0.5.1",
|
"mkdirp": "^0.5.1",
|
||||||
"util.promisify": "^1.0.0"
|
"util.promisify": "^1.0.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"find-cache-dir": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.0.0.tgz",
|
||||||
|
"integrity": "sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"commondir": "^1.0.1",
|
||||||
|
"make-dir": "^1.0.0",
|
||||||
|
"pkg-dir": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"find-up": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"locate-path": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"locate-path": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"p-locate": "^3.0.0",
|
||||||
|
"path-exists": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"p-limit": {
|
||||||
|
"version": "2.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz",
|
||||||
|
"integrity": "sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"p-try": "^2.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"p-locate": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"p-limit": "^2.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"p-try": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz",
|
||||||
|
"integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==",
|
||||||
|
"dev": true
|
||||||
|
},
|
||||||
|
"pkg-dir": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"find-up": "^3.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"babel-runtime": {
|
"babel-runtime": {
|
||||||
@ -1846,14 +1911,25 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"browserslist": {
|
"browserslist": {
|
||||||
"version": "4.3.6",
|
"version": "4.3.7",
|
||||||
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.3.6.tgz",
|
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.3.7.tgz",
|
||||||
"integrity": "sha512-kMGKs4BTzRWviZ8yru18xBpx+CyHG9eqgRbj9XbE3IMgtczf4aiA0Y1YCpVdvUieKGZ03kolSPXqTcscBCb9qw==",
|
"integrity": "sha512-pWQv51Ynb0MNk9JGMCZ8VkM785/4MQNXiFYtPqI7EEP0TJO+/d/NqRVn1uiAN0DNbnlUSpL2sh16Kspasv3pUQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"caniuse-lite": "^1.0.30000921",
|
"caniuse-lite": "^1.0.30000925",
|
||||||
"electron-to-chromium": "^1.3.92",
|
"electron-to-chromium": "^1.3.96",
|
||||||
"node-releases": "^1.1.1"
|
"node-releases": "^1.1.3"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"node-releases": {
|
||||||
|
"version": "1.1.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.3.tgz",
|
||||||
|
"integrity": "sha512-6VrvH7z6jqqNFY200kdB6HdzkgM96Oaj9v3dqGfgp6mF+cHmU4wyQKZ2/WPDRVoR0Jz9KqbamaBN0ZhdUaysUQ==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"semver": "^5.3.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buffer": {
|
"buffer": {
|
||||||
@ -1941,19 +2017,10 @@
|
|||||||
"unset-value": "^1.0.0"
|
"unset-value": "^1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"caller-path": {
|
|
||||||
"version": "0.1.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
|
|
||||||
"integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
|
|
||||||
"dev": true,
|
|
||||||
"requires": {
|
|
||||||
"callsites": "^0.2.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"callsites": {
|
"callsites": {
|
||||||
"version": "0.2.0",
|
"version": "3.0.0",
|
||||||
"resolved": "http://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.0.0.tgz",
|
||||||
"integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
|
"integrity": "sha512-tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"camelcase": {
|
"camelcase": {
|
||||||
@ -1963,9 +2030,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"caniuse-lite": {
|
"caniuse-lite": {
|
||||||
"version": "1.0.30000923",
|
"version": "1.0.30000927",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000923.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000927.tgz",
|
||||||
"integrity": "sha512-j5ur7eeluOFjjPUkydtXP4KFAsmH3XaQNch5tvWSO+dLHYt5PE+VgJZLWtbVOodfWij6m6zas28T4gB/cLYq1w==",
|
"integrity": "sha512-ogq4NbUWf1uG/j66k0AmiO3GjqJAlQyF8n4w8a954cbCyFKmYGvRtgz6qkq2fWuduTXHibX7GyYL5Pg58Aks2g==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"catharsis": {
|
"catharsis": {
|
||||||
@ -2697,7 +2764,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"domelementtype": {
|
"domelementtype": {
|
||||||
"version": "1.1.3",
|
"version": "1.1.3",
|
||||||
"resolved": "http://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
|
||||||
"integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=",
|
"integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=",
|
||||||
"dev": true
|
"dev": true
|
||||||
}
|
}
|
||||||
@ -2809,9 +2876,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"electron-to-chromium": {
|
"electron-to-chromium": {
|
||||||
"version": "1.3.96",
|
"version": "1.3.98",
|
||||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.96.tgz",
|
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.98.tgz",
|
||||||
"integrity": "sha512-ZUXBUyGLeoJxp4Nt6G/GjBRLnyz8IKQGexZ2ndWaoegThgMGFO1tdDYID5gBV32/1S83osjJHyfzvanE/8HY4Q==",
|
"integrity": "sha512-WIZdNuvE3dFr6kkPgv4d/cfswNZD6XbeLBM8baOIQTsnbf4xWrVEaLvp7oNnbnMWWXDqq7Tbv+H5JfciLTJm4Q==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"elliptic": {
|
"elliptic": {
|
||||||
@ -2895,16 +2962,25 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"es-abstract": {
|
"es-abstract": {
|
||||||
"version": "1.12.0",
|
"version": "1.13.0",
|
||||||
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
|
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz",
|
||||||
"integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==",
|
"integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"es-to-primitive": "^1.1.1",
|
"es-to-primitive": "^1.2.0",
|
||||||
"function-bind": "^1.1.1",
|
"function-bind": "^1.1.1",
|
||||||
"has": "^1.0.1",
|
"has": "^1.0.3",
|
||||||
"is-callable": "^1.1.3",
|
"is-callable": "^1.1.4",
|
||||||
"is-regex": "^1.0.4"
|
"is-regex": "^1.0.4",
|
||||||
|
"object-keys": "^1.0.12"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"object-keys": {
|
||||||
|
"version": "1.0.12",
|
||||||
|
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz",
|
||||||
|
"integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==",
|
||||||
|
"dev": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"es-to-primitive": {
|
"es-to-primitive": {
|
||||||
@ -3021,9 +3097,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eslint": {
|
"eslint": {
|
||||||
"version": "5.10.0",
|
"version": "5.12.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint/-/eslint-5.10.0.tgz",
|
"resolved": "https://registry.npmjs.org/eslint/-/eslint-5.12.0.tgz",
|
||||||
"integrity": "sha512-HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ==",
|
"integrity": "sha512-LntwyPxtOHrsJdcSwyQKVtHofPHdv+4+mFwEe91r2V13vqpM8yLr7b1sW+Oo/yheOPkWYsYlYJCkzlFAt8KV7g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@babel/code-frame": "^7.0.0",
|
"@babel/code-frame": "^7.0.0",
|
||||||
@ -3043,6 +3119,7 @@
|
|||||||
"glob": "^7.1.2",
|
"glob": "^7.1.2",
|
||||||
"globals": "^11.7.0",
|
"globals": "^11.7.0",
|
||||||
"ignore": "^4.0.6",
|
"ignore": "^4.0.6",
|
||||||
|
"import-fresh": "^3.0.0",
|
||||||
"imurmurhash": "^0.1.4",
|
"imurmurhash": "^0.1.4",
|
||||||
"inquirer": "^6.1.0",
|
"inquirer": "^6.1.0",
|
||||||
"js-yaml": "^3.12.0",
|
"js-yaml": "^3.12.0",
|
||||||
@ -3057,7 +3134,6 @@
|
|||||||
"pluralize": "^7.0.0",
|
"pluralize": "^7.0.0",
|
||||||
"progress": "^2.0.0",
|
"progress": "^2.0.0",
|
||||||
"regexpp": "^2.0.1",
|
"regexpp": "^2.0.1",
|
||||||
"require-uncached": "^1.0.3",
|
|
||||||
"semver": "^5.5.1",
|
"semver": "^5.5.1",
|
||||||
"strip-ansi": "^4.0.0",
|
"strip-ansi": "^4.0.0",
|
||||||
"strip-json-comments": "^2.0.1",
|
"strip-json-comments": "^2.0.1",
|
||||||
@ -3085,36 +3161,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"debug": {
|
"debug": {
|
||||||
"version": "4.1.0",
|
"version": "4.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
||||||
"integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==",
|
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"ms": "^2.1.1"
|
"ms": "^2.1.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"esprima": {
|
|
||||||
"version": "4.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
|
||||||
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"globals": {
|
|
||||||
"version": "11.9.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/globals/-/globals-11.9.0.tgz",
|
|
||||||
"integrity": "sha512-5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg==",
|
|
||||||
"dev": true
|
|
||||||
},
|
|
||||||
"js-yaml": {
|
|
||||||
"version": "3.12.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
|
|
||||||
"integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
|
|
||||||
"dev": true,
|
|
||||||
"requires": {
|
|
||||||
"argparse": "^1.0.7",
|
|
||||||
"esprima": "^4.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ms": {
|
"ms": {
|
||||||
"version": "2.1.1",
|
"version": "2.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
|
||||||
@ -3229,9 +3283,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eslint-plugin-mozilla": {
|
"eslint-plugin-mozilla": {
|
||||||
"version": "1.0.3",
|
"version": "1.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-mozilla/-/eslint-plugin-mozilla-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-mozilla/-/eslint-plugin-mozilla-1.0.4.tgz",
|
||||||
"integrity": "sha512-OeaP4yUQxSvx5b9Mi/RlYRUPzxmCxMwHaEU0O1Zc1yqX0QCmkcew9ln45cBBnzLmWmNIuCDz8T2bOXB+ofRs9Q==",
|
"integrity": "sha512-fft+kbWH7zwAgJpakLz+lkMGvbjPH0jy/LI0CHMMdRt91x/Lv/z1poE7zWAGL4Z2CFpRjyl9+/lu9bV1zXI0YA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"htmlparser2": "3.9.2",
|
"htmlparser2": "3.9.2",
|
||||||
@ -3292,14 +3346,6 @@
|
|||||||
"acorn": "^6.0.2",
|
"acorn": "^6.0.2",
|
||||||
"acorn-jsx": "^5.0.0",
|
"acorn-jsx": "^5.0.0",
|
||||||
"eslint-visitor-keys": "^1.0.0"
|
"eslint-visitor-keys": "^1.0.0"
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"acorn": {
|
|
||||||
"version": "6.0.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.0.4.tgz",
|
|
||||||
"integrity": "sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg==",
|
|
||||||
"dev": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"esprima": {
|
"esprima": {
|
||||||
@ -3798,14 +3844,12 @@
|
|||||||
"balanced-match": {
|
"balanced-match": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"brace-expansion": {
|
"brace-expansion": {
|
||||||
"version": "1.1.11",
|
"version": "1.1.11",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"balanced-match": "^1.0.0",
|
"balanced-match": "^1.0.0",
|
||||||
"concat-map": "0.0.1"
|
"concat-map": "0.0.1"
|
||||||
@ -3820,20 +3864,17 @@
|
|||||||
"code-point-at": {
|
"code-point-at": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"concat-map": {
|
"concat-map": {
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"console-control-strings": {
|
"console-control-strings": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"core-util-is": {
|
"core-util-is": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
@ -3950,8 +3991,7 @@
|
|||||||
"inherits": {
|
"inherits": {
|
||||||
"version": "2.0.3",
|
"version": "2.0.3",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"ini": {
|
"ini": {
|
||||||
"version": "1.3.5",
|
"version": "1.3.5",
|
||||||
@ -3963,7 +4003,6 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"number-is-nan": "^1.0.0"
|
"number-is-nan": "^1.0.0"
|
||||||
}
|
}
|
||||||
@ -3978,7 +4017,6 @@
|
|||||||
"version": "3.0.4",
|
"version": "3.0.4",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"brace-expansion": "^1.1.7"
|
"brace-expansion": "^1.1.7"
|
||||||
}
|
}
|
||||||
@ -3986,14 +4024,12 @@
|
|||||||
"minimist": {
|
"minimist": {
|
||||||
"version": "0.0.8",
|
"version": "0.0.8",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"minipass": {
|
"minipass": {
|
||||||
"version": "2.2.4",
|
"version": "2.2.4",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"safe-buffer": "^5.1.1",
|
"safe-buffer": "^5.1.1",
|
||||||
"yallist": "^3.0.0"
|
"yallist": "^3.0.0"
|
||||||
@ -4012,7 +4048,6 @@
|
|||||||
"version": "0.5.1",
|
"version": "0.5.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"minimist": "0.0.8"
|
"minimist": "0.0.8"
|
||||||
}
|
}
|
||||||
@ -4093,8 +4128,7 @@
|
|||||||
"number-is-nan": {
|
"number-is-nan": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true
|
||||||
"optional": true
|
|
||||||
},
|
},
|
||||||
"object-assign": {
|
"object-assign": {
|
||||||
"version": "4.1.1",
|
"version": "4.1.1",
|
||||||
@ -4106,7 +4140,6 @@
|
|||||||
"version": "1.4.0",
|
"version": "1.4.0",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"wrappy": "1"
|
"wrappy": "1"
|
||||||
}
|
}
|
||||||
@ -4228,7 +4261,6 @@
|
|||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
|
||||||
"requires": {
|
"requires": {
|
||||||
"code-point-at": "^1.0.0",
|
"code-point-at": "^1.0.0",
|
||||||
"is-fullwidth-code-point": "^1.0.0",
|
"is-fullwidth-code-point": "^1.0.0",
|
||||||
@ -4896,7 +4928,7 @@
|
|||||||
},
|
},
|
||||||
"htmlparser2": {
|
"htmlparser2": {
|
||||||
"version": "3.9.2",
|
"version": "3.9.2",
|
||||||
"resolved": "http://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz",
|
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz",
|
||||||
"integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=",
|
"integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
@ -4950,6 +4982,16 @@
|
|||||||
"import-from": "^2.1.0"
|
"import-from": "^2.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"import-fresh": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"parent-module": "^1.0.0",
|
||||||
|
"resolve-from": "^4.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"import-from": {
|
"import-from": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
|
||||||
@ -9671,7 +9713,7 @@
|
|||||||
},
|
},
|
||||||
"os-tmpdir": {
|
"os-tmpdir": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
|
||||||
"integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
|
"integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
@ -9722,6 +9764,15 @@
|
|||||||
"readable-stream": "^2.1.5"
|
"readable-stream": "^2.1.5"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"parent-module": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-8Mf5juOMmiE4FcmzYc4IaiS9L3+9paz2KOiXzkRviCP6aDmN49Hz6EMWz0lGNp9pX80GvvAuLADtyGfW/Em3TA==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"callsites": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"parse-asn1": {
|
"parse-asn1": {
|
||||||
"version": "5.1.1",
|
"version": "5.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
|
||||||
@ -10544,16 +10595,6 @@
|
|||||||
"integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
|
"integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"require-uncached": {
|
|
||||||
"version": "1.0.3",
|
|
||||||
"resolved": "http://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz",
|
|
||||||
"integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=",
|
|
||||||
"dev": true,
|
|
||||||
"requires": {
|
|
||||||
"caller-path": "^0.1.0",
|
|
||||||
"resolve-from": "^1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requizzle": {
|
"requizzle": {
|
||||||
"version": "0.2.1",
|
"version": "0.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz",
|
||||||
@ -10591,9 +10632,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"resolve-from": {
|
"resolve-from": {
|
||||||
"version": "1.0.1",
|
"version": "4.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
||||||
"integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=",
|
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"resolve-options": {
|
"resolve-options": {
|
||||||
@ -10637,12 +10678,28 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rimraf": {
|
"rimraf": {
|
||||||
"version": "2.6.2",
|
"version": "2.6.3",
|
||||||
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
|
||||||
"integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
|
"integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"glob": "^7.0.5"
|
"glob": "^7.1.3"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"glob": {
|
||||||
|
"version": "7.1.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
|
||||||
|
"integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"fs.realpath": "^1.0.0",
|
||||||
|
"inflight": "^1.0.4",
|
||||||
|
"inherits": "2",
|
||||||
|
"minimatch": "^3.0.4",
|
||||||
|
"once": "^1.3.0",
|
||||||
|
"path-is-absolute": "^1.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ripemd160": {
|
"ripemd160": {
|
||||||
@ -11390,9 +11447,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"terser": {
|
"terser": {
|
||||||
"version": "3.13.1",
|
"version": "3.14.1",
|
||||||
"resolved": "https://registry.npmjs.org/terser/-/terser-3.13.1.tgz",
|
"resolved": "https://registry.npmjs.org/terser/-/terser-3.14.1.tgz",
|
||||||
"integrity": "sha512-ogyZye4DFqOtMzT92Y3Nxxw8OvXmL39HOALro4fc+EUYFFF9G/kk0znkvwMz6PPYgBtdKAodh3FPR70eugdaQA==",
|
"integrity": "sha512-NSo3E99QDbYSMeJaEk9YW2lTg3qS9V0aKGlb+PlOrei1X02r1wSBHCNX/O+yeTRFSWPKPIGj6MqvvdqV4rnVGw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"commander": "~2.17.1",
|
"commander": "~2.17.1",
|
||||||
|
14
package.json
14
package.json
@ -7,14 +7,14 @@
|
|||||||
"@babel/plugin-transform-runtime": "^7.2.0",
|
"@babel/plugin-transform-runtime": "^7.2.0",
|
||||||
"@babel/preset-env": "^7.2.3",
|
"@babel/preset-env": "^7.2.3",
|
||||||
"@babel/runtime": "^7.2.0",
|
"@babel/runtime": "^7.2.0",
|
||||||
"acorn": "^6.0.4",
|
"acorn": "^6.0.5",
|
||||||
"autoprefixer": "^9.4.3",
|
"autoprefixer": "^9.4.4",
|
||||||
"babel-loader": "^8.0.4",
|
"babel-loader": "^8.0.5",
|
||||||
"core-js": "^2.6.1",
|
"core-js": "^2.6.1",
|
||||||
"escodegen": "^1.11.0",
|
"escodegen": "^1.11.0",
|
||||||
"eslint": "^5.10.0",
|
"eslint": "^5.12.0",
|
||||||
"eslint-plugin-import": "^2.14.0",
|
"eslint-plugin-import": "^2.14.0",
|
||||||
"eslint-plugin-mozilla": "^1.0.3",
|
"eslint-plugin-mozilla": "^1.0.4",
|
||||||
"eslint-plugin-no-unsanitized": "^3.0.2",
|
"eslint-plugin-no-unsanitized": "^3.0.2",
|
||||||
"eslint-plugin-unicorn": "^6.0.1",
|
"eslint-plugin-unicorn": "^6.0.1",
|
||||||
"fancy-log": "^1.3.3",
|
"fancy-log": "^1.3.3",
|
||||||
@ -32,11 +32,11 @@
|
|||||||
"merge-stream": "^1.0.1",
|
"merge-stream": "^1.0.1",
|
||||||
"mkdirp": "^0.5.1",
|
"mkdirp": "^0.5.1",
|
||||||
"node-ensure": "^0.0.0",
|
"node-ensure": "^0.0.0",
|
||||||
"rimraf": "^2.6.2",
|
"rimraf": "^2.6.3",
|
||||||
"streamqueue": "^1.1.2",
|
"streamqueue": "^1.1.2",
|
||||||
"systemjs": "^0.21.5",
|
"systemjs": "^0.21.5",
|
||||||
"systemjs-plugin-babel": "^0.0.25",
|
"systemjs-plugin-babel": "^0.0.25",
|
||||||
"terser": "^3.13.1",
|
"terser": "^3.14.1",
|
||||||
"ttest": "^2.0.0",
|
"ttest": "^2.0.0",
|
||||||
"typogr": "^0.6.8",
|
"typogr": "^0.6.8",
|
||||||
"vinyl": "^2.2.0",
|
"vinyl": "^2.2.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user