Cleanup
This commit is contained in:
61
node_modules/mime-db/HISTORY.md
generated
vendored
61
node_modules/mime-db/HISTORY.md
generated
vendored
@@ -1,3 +1,64 @@
|
||||
1.52.0 / 2022-02-21
|
||||
===================
|
||||
|
||||
* Add extensions from IANA for more `image/*` types
|
||||
* Add extension `.asc` to `application/pgp-keys`
|
||||
* Add extensions to various XML types
|
||||
* Add new upstream MIME types
|
||||
|
||||
1.51.0 / 2021-11-08
|
||||
===================
|
||||
|
||||
* Add new upstream MIME types
|
||||
* Mark `image/vnd.microsoft.icon` as compressible
|
||||
* Mark `image/vnd.ms-dds` as compressible
|
||||
|
||||
1.50.0 / 2021-09-15
|
||||
===================
|
||||
|
||||
* Add deprecated iWorks mime types and extensions
|
||||
* Add new upstream MIME types
|
||||
|
||||
1.49.0 / 2021-07-26
|
||||
===================
|
||||
|
||||
* Add extension `.trig` to `application/trig`
|
||||
* Add new upstream MIME types
|
||||
|
||||
1.48.0 / 2021-05-30
|
||||
===================
|
||||
|
||||
* Add extension `.mvt` to `application/vnd.mapbox-vector-tile`
|
||||
* Add new upstream MIME types
|
||||
* Mark `text/yaml` as compressible
|
||||
|
||||
1.47.0 / 2021-04-01
|
||||
===================
|
||||
|
||||
* Add new upstream MIME types
|
||||
* Remove ambigious extensions from IANA for `application/*+xml` types
|
||||
* Update primary extension to `.es` for `application/ecmascript`
|
||||
|
||||
1.46.0 / 2021-02-13
|
||||
===================
|
||||
|
||||
* Add extension `.amr` to `audio/amr`
|
||||
* Add extension `.m4s` to `video/iso.segment`
|
||||
* Add extension `.opus` to `audio/ogg`
|
||||
* Add new upstream MIME types
|
||||
|
||||
1.45.0 / 2020-09-22
|
||||
===================
|
||||
|
||||
* Add `application/ubjson` with extension `.ubj`
|
||||
* Add `image/avif` with extension `.avif`
|
||||
* Add `image/ktx2` with extension `.ktx2`
|
||||
* Add extension `.dbf` to `application/vnd.dbf`
|
||||
* Add extension `.rar` to `application/vnd.rar`
|
||||
* Add extension `.td` to `application/urc-targetdesc+xml`
|
||||
* Add new upstream MIME types
|
||||
* Fix extension of `application/vnd.apple.keynote` to be `.key`
|
||||
|
||||
1.44.0 / 2020-04-22
|
||||
===================
|
||||
|
||||
|
||||
37
node_modules/mime-db/LICENSE
generated
vendored
37
node_modules/mime-db/LICENSE
generated
vendored
@@ -1,22 +1,23 @@
|
||||
(The MIT License)
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
||||
Copyright (c) 2015-2022 Douglas Christopher Wilson <doug@somethingdoug.com>
|
||||
|
||||
Copyright (c) 2014 Jonathan Ong me@jongleberry.com
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
16
node_modules/mime-db/README.md
generated
vendored
16
node_modules/mime-db/README.md
generated
vendored
@@ -3,10 +3,10 @@
|
||||
[![NPM Version][npm-version-image]][npm-url]
|
||||
[![NPM Downloads][npm-downloads-image]][npm-url]
|
||||
[![Node.js Version][node-image]][node-url]
|
||||
[![Build Status][travis-image]][travis-url]
|
||||
[![Build Status][ci-image]][ci-url]
|
||||
[![Coverage Status][coveralls-image]][coveralls-url]
|
||||
|
||||
This is a database of all mime types.
|
||||
This is a large database of mime types and information about them.
|
||||
It consists of a single, public JSON file and does not include any logic,
|
||||
allowing it to remain as un-opinionated as possible with an API.
|
||||
It aggregates data from the following sources:
|
||||
@@ -34,8 +34,6 @@ https://cdn.jsdelivr.net/gh/jshttp/mime-db@master/db.json
|
||||
|
||||
## Usage
|
||||
|
||||
<!-- eslint-disable no-unused-vars -->
|
||||
|
||||
```js
|
||||
var db = require('mime-db')
|
||||
|
||||
@@ -61,11 +59,11 @@ If unknown, every property could be `undefined`.
|
||||
|
||||
## Contributing
|
||||
|
||||
To edit the database, only make PRs against `src/custom.json` or
|
||||
To edit the database, only make PRs against `src/custom-types.json` or
|
||||
`src/custom-suffix.json`.
|
||||
|
||||
The `src/custom.json` file is a JSON object with the MIME type as the keys
|
||||
and the values being an object with the following keys:
|
||||
The `src/custom-types.json` file is a JSON object with the MIME type as the
|
||||
keys and the values being an object with the following keys:
|
||||
|
||||
- `compressible` - leave out if you don't know, otherwise `true`/`false` to
|
||||
indicate whether the data represented by the type is typically compressible.
|
||||
@@ -91,6 +89,8 @@ definitively lists the media type. If an extension is going to be listed as
|
||||
associateed with this media type, the source must definitively link the
|
||||
media type and extension as well.
|
||||
|
||||
[ci-image]: https://badgen.net/github/checks/jshttp/mime-db/master?label=ci
|
||||
[ci-url]: https://github.com/jshttp/mime-db/actions?query=workflow%3Aci
|
||||
[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-db/master
|
||||
[coveralls-url]: https://coveralls.io/r/jshttp/mime-db?branch=master
|
||||
[node-image]: https://badgen.net/npm/node/mime-db
|
||||
@@ -98,5 +98,3 @@ media type and extension as well.
|
||||
[npm-downloads-image]: https://badgen.net/npm/dm/mime-db
|
||||
[npm-url]: https://npmjs.org/package/mime-db
|
||||
[npm-version-image]: https://badgen.net/npm/v/mime-db
|
||||
[travis-image]: https://badgen.net/travis/jshttp/mime-db/master
|
||||
[travis-url]: https://travis-ci.org/jshttp/mime-db
|
||||
|
||||
393
node_modules/mime-db/db.json
generated
vendored
393
node_modules/mime-db/db.json
generated
vendored
@@ -11,9 +11,20 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/3gpphal+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/3gpphalforms+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/a2l": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/ace+cbor": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/activemessage": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -83,6 +94,9 @@
|
||||
"source": "apache",
|
||||
"extensions": ["aw"]
|
||||
},
|
||||
"application/at+jwt": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/atf": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -172,9 +186,8 @@
|
||||
"application/cals-1840": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/cap+xml": {
|
||||
"application/captive+json": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
"compressible": true
|
||||
},
|
||||
"application/cbor": {
|
||||
@@ -237,6 +250,13 @@
|
||||
"application/cfw": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/city+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/clr": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/clue+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -277,7 +297,8 @@
|
||||
},
|
||||
"application/cpl+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
"compressible": true,
|
||||
"extensions": ["cpl"]
|
||||
},
|
||||
"application/csrattrs": {
|
||||
"source": "iana"
|
||||
@@ -312,6 +333,11 @@
|
||||
"compressible": true,
|
||||
"extensions": ["mpd"]
|
||||
},
|
||||
"application/dash-patch+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["mpp"]
|
||||
},
|
||||
"application/dashdelta": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -387,7 +413,7 @@
|
||||
"application/ecmascript": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["ecma","es"]
|
||||
"extensions": ["es","ecma"]
|
||||
},
|
||||
"application/edi-consent": {
|
||||
"source": "iana"
|
||||
@@ -403,6 +429,20 @@
|
||||
"application/efi": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/elm+json": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
"compressible": true
|
||||
},
|
||||
"application/elm+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/emergencycalldata.cap+xml": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
"compressible": true
|
||||
},
|
||||
"application/emergencycalldata.comment+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -467,6 +507,10 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/express": {
|
||||
"source": "iana",
|
||||
"extensions": ["exp"]
|
||||
},
|
||||
"application/fastinfoset": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -659,6 +703,10 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/jscalendar+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/json": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
@@ -749,6 +797,7 @@
|
||||
"extensions": ["mads"]
|
||||
},
|
||||
"application/manifest+json": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
"compressible": true,
|
||||
"extensions": ["webmanifest"]
|
||||
@@ -829,7 +878,8 @@
|
||||
},
|
||||
"application/media-policy-dataset+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
"compressible": true,
|
||||
"extensions": ["mpf"]
|
||||
},
|
||||
"application/media_control+xml": {
|
||||
"source": "iana",
|
||||
@@ -868,6 +918,9 @@
|
||||
"application/mipc": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/missing-blocks+cbor-seq": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/mmt-aei+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
@@ -914,13 +967,11 @@
|
||||
},
|
||||
"application/mrb-consumer+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["xdf"]
|
||||
"compressible": true
|
||||
},
|
||||
"application/mrb-publish+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["xdf"]
|
||||
"compressible": true
|
||||
},
|
||||
"application/msc-ivr+xml": {
|
||||
"source": "iana",
|
||||
@@ -981,6 +1032,12 @@
|
||||
"application/nss": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/oauth-authz-req+jwt": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/oblivious-dns-message": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/ocsp-request": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1022,6 +1079,10 @@
|
||||
"source": "apache",
|
||||
"extensions": ["onetoc","onetoc2","onetmp","onepkg"]
|
||||
},
|
||||
"application/opc-nodeset+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/oscore": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1029,6 +1090,13 @@
|
||||
"source": "iana",
|
||||
"extensions": ["oxps"]
|
||||
},
|
||||
"application/p21": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/p21+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false
|
||||
},
|
||||
"application/p2p-overlay+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
@@ -1062,7 +1130,8 @@
|
||||
"extensions": ["pgp"]
|
||||
},
|
||||
"application/pgp-keys": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["asc"]
|
||||
},
|
||||
"application/pgp-signature": {
|
||||
"source": "iana",
|
||||
@@ -1163,6 +1232,10 @@
|
||||
"source": "iana",
|
||||
"extensions": ["cww"]
|
||||
},
|
||||
"application/prs.cyn": {
|
||||
"source": "iana",
|
||||
"charset": "7-BIT"
|
||||
},
|
||||
"application/prs.hpub+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false
|
||||
@@ -1312,6 +1385,14 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/sarif+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/sarif-external-properties+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/sbe": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1470,6 +1551,10 @@
|
||||
"compressible": true,
|
||||
"extensions": ["srx"]
|
||||
},
|
||||
"application/spdx+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/spirits-event+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -1587,6 +1672,9 @@
|
||||
"application/tnauthlist": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/token-introspection+jwt": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/toml": {
|
||||
"compressible": true,
|
||||
"extensions": ["toml"]
|
||||
@@ -1595,7 +1683,8 @@
|
||||
"source": "iana"
|
||||
},
|
||||
"application/trig": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["trig"]
|
||||
},
|
||||
"application/ttml+xml": {
|
||||
"source": "iana",
|
||||
@@ -1611,6 +1700,10 @@
|
||||
"application/tzif-leap": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/ubjson": {
|
||||
"compressible": false,
|
||||
"extensions": ["ubj"]
|
||||
},
|
||||
"application/ulpfec": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1625,7 +1718,8 @@
|
||||
},
|
||||
"application/urc-targetdesc+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
"compressible": true,
|
||||
"extensions": ["td"]
|
||||
},
|
||||
"application/urc-uisocketdesc+xml": {
|
||||
"source": "iana",
|
||||
@@ -1661,6 +1755,9 @@
|
||||
"application/vnd.3gpp-v2x-local-service-information": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.5gnas": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.access-transfer-events+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -1673,6 +1770,15 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.3gpp.gtpc": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.interworking-data": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.lpp": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.mc-signalling-ear": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1782,6 +1888,12 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.3gpp.ngap": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.pfcp": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.pic-bw-large": {
|
||||
"source": "iana",
|
||||
"extensions": ["plb"]
|
||||
@@ -1794,6 +1906,9 @@
|
||||
"source": "iana",
|
||||
"extensions": ["pvb"]
|
||||
},
|
||||
"application/vnd.3gpp.s1ap": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.3gpp.sms": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1888,6 +2003,9 @@
|
||||
"application/vnd.afpc.afplinedata-pagedef": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.afpc.cmoca-cmresource": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.afpc.foca-charset": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1900,6 +2018,9 @@
|
||||
"application/vnd.afpc.modca": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.afpc.modca-cmtable": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.afpc.modca-formdef": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1915,6 +2036,10 @@
|
||||
"application/vnd.afpc.modca-pagesegment": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.age": {
|
||||
"source": "iana",
|
||||
"extensions": ["age"]
|
||||
},
|
||||
"application/vnd.ah-barcode": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -1976,6 +2101,12 @@
|
||||
"source": "iana",
|
||||
"extensions": ["atx"]
|
||||
},
|
||||
"application/vnd.apache.arrow.file": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.apache.arrow.stream": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.apache.thrift.binary": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -2004,7 +2135,7 @@
|
||||
},
|
||||
"application/vnd.apple.keynote": {
|
||||
"source": "iana",
|
||||
"extensions": ["keynote"]
|
||||
"extensions": ["key"]
|
||||
},
|
||||
"application/vnd.apple.mpegurl": {
|
||||
"source": "iana",
|
||||
@@ -2275,6 +2406,12 @@
|
||||
"application/vnd.crypto-shade-file": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.cryptomator.encrypted": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.cryptomator.vault": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.ctc-posml": {
|
||||
"source": "iana",
|
||||
"extensions": ["pml"]
|
||||
@@ -2317,10 +2454,24 @@
|
||||
"application/vnd.cybank": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.cyclonedx+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.cyclonedx+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.d2l.coursepackage1p0+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false
|
||||
},
|
||||
"application/vnd.d3m-dataset": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.d3m-problem": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.dart": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
@@ -2339,7 +2490,8 @@
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.dbf": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["dbf"]
|
||||
},
|
||||
"application/vnd.debian.binary-package": {
|
||||
"source": "iana"
|
||||
@@ -2510,6 +2662,10 @@
|
||||
"application/vnd.ecip.rlp": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.eclipse.ditto+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.ecowin.chart": {
|
||||
"source": "iana",
|
||||
"extensions": ["mag"]
|
||||
@@ -2667,6 +2823,10 @@
|
||||
"application/vnd.etsi.tsl.der": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.eu.kasparian.car+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.eudora.data": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -2697,6 +2857,10 @@
|
||||
"application/vnd.f-secure.mobile": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.familysearch.gedcom+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false
|
||||
},
|
||||
"application/vnd.fastcopy-disk-image": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -2755,6 +2919,19 @@
|
||||
"source": "iana",
|
||||
"extensions": ["fsc"]
|
||||
},
|
||||
"application/vnd.fujifilm.fb.docuworks": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.fujifilm.fb.docuworks.binder": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.fujifilm.fb.docuworks.container": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.fujifilm.fb.jfi+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.fujitsu.oasys": {
|
||||
"source": "iana",
|
||||
"extensions": ["oas"]
|
||||
@@ -2833,6 +3010,9 @@
|
||||
"source": "iana",
|
||||
"extensions": ["ggb"]
|
||||
},
|
||||
"application/vnd.geogebra.slides": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.geogebra.tool": {
|
||||
"source": "iana",
|
||||
"extensions": ["ggt"]
|
||||
@@ -2971,6 +3151,16 @@
|
||||
"source": "iana",
|
||||
"extensions": ["les"]
|
||||
},
|
||||
"application/vnd.hl7cda+xml": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.hl7v2+xml": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.hp-hpgl": {
|
||||
"source": "iana",
|
||||
"extensions": ["hpgl"]
|
||||
@@ -3362,7 +3552,8 @@
|
||||
"extensions": ["portpkg"]
|
||||
},
|
||||
"application/vnd.mapbox-vector-tile": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["mvt"]
|
||||
},
|
||||
"application/vnd.marlin.drm.actiontoken+xml": {
|
||||
"source": "iana",
|
||||
@@ -3383,6 +3574,10 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.maxar.archive.3tz+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false
|
||||
},
|
||||
"application/vnd.maxmind.maxmind-db": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -3712,6 +3907,10 @@
|
||||
"source": "iana",
|
||||
"extensions": ["taglet"]
|
||||
},
|
||||
"application/vnd.nacamar.ybrid+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.ncd.control": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -3722,6 +3921,9 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.nebumind.line": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.nervana": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -4069,6 +4271,9 @@
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.oma.lwm2m+cbor": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.oma.lwm2m+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -4167,6 +4372,9 @@
|
||||
"compressible": true,
|
||||
"extensions": ["osm"]
|
||||
},
|
||||
"application/vnd.opentimestamps.ots": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.openxmlformats-officedocument.custom-properties+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -4679,7 +4887,8 @@
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.rar": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["rar"]
|
||||
},
|
||||
"application/vnd.realvnc.bed": {
|
||||
"source": "iana",
|
||||
@@ -4697,6 +4906,9 @@
|
||||
"application/vnd.renlearn.rlprint": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.resilient.logic": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.restful+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
@@ -4784,6 +4996,10 @@
|
||||
"source": "iana",
|
||||
"extensions": ["see"]
|
||||
},
|
||||
"application/vnd.seis+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.sema": {
|
||||
"source": "iana",
|
||||
"extensions": ["sema"]
|
||||
@@ -4978,6 +5194,14 @@
|
||||
"application/vnd.swiftview-ics": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.sycle+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.syft+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.symbian.install": {
|
||||
"source": "apache",
|
||||
"extensions": ["sis","sisx"]
|
||||
@@ -5153,6 +5377,10 @@
|
||||
"application/vnd.verimatrix.vcas": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.veritone.aion+json": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
},
|
||||
"application/vnd.veryant.thin": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -5200,6 +5428,9 @@
|
||||
"source": "iana",
|
||||
"extensions": ["wtb"]
|
||||
},
|
||||
"application/vnd.wfa.dpp": {
|
||||
"source": "iana"
|
||||
},
|
||||
"application/vnd.wfa.p2p": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -5355,12 +5586,14 @@
|
||||
"source": "iana"
|
||||
},
|
||||
"application/wasm": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["wasm"]
|
||||
},
|
||||
"application/watcherinfo+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true
|
||||
"compressible": true,
|
||||
"extensions": ["wif"]
|
||||
},
|
||||
"application/webpush-options+json": {
|
||||
"source": "iana",
|
||||
@@ -5636,6 +5869,15 @@
|
||||
"source": "apache",
|
||||
"extensions": ["iso"]
|
||||
},
|
||||
"application/x-iwork-keynote-sffkey": {
|
||||
"extensions": ["key"]
|
||||
},
|
||||
"application/x-iwork-numbers-sffnumbers": {
|
||||
"extensions": ["numbers"]
|
||||
},
|
||||
"application/x-iwork-pages-sffpages": {
|
||||
"extensions": ["pages"]
|
||||
},
|
||||
"application/x-java-archive-diff": {
|
||||
"source": "nginx",
|
||||
"extensions": ["jardiff"]
|
||||
@@ -5992,8 +6234,7 @@
|
||||
},
|
||||
"application/xcap-error+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["xer"]
|
||||
"compressible": true
|
||||
},
|
||||
"application/xcap-ns+xml": {
|
||||
"source": "iana",
|
||||
@@ -6061,7 +6302,7 @@
|
||||
"application/xslt+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["xslt"]
|
||||
"extensions": ["xsl","xslt"]
|
||||
},
|
||||
"application/xspf+xml": {
|
||||
"source": "apache",
|
||||
@@ -6134,7 +6375,8 @@
|
||||
"extensions": ["adp"]
|
||||
},
|
||||
"audio/amr": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["amr"]
|
||||
},
|
||||
"audio/amr-wb": {
|
||||
"source": "iana"
|
||||
@@ -6383,7 +6625,7 @@
|
||||
"audio/ogg": {
|
||||
"source": "iana",
|
||||
"compressible": false,
|
||||
"extensions": ["oga","ogg","spx"]
|
||||
"extensions": ["oga","ogg","spx","opus"]
|
||||
},
|
||||
"audio/opus": {
|
||||
"source": "iana"
|
||||
@@ -6431,6 +6673,9 @@
|
||||
"source": "apache",
|
||||
"extensions": ["s3m"]
|
||||
},
|
||||
"audio/scip": {
|
||||
"source": "iana"
|
||||
},
|
||||
"audio/silk": {
|
||||
"source": "apache",
|
||||
"extensions": ["sil"]
|
||||
@@ -6444,6 +6689,9 @@
|
||||
"audio/smv0": {
|
||||
"source": "iana"
|
||||
},
|
||||
"audio/sofa": {
|
||||
"source": "iana"
|
||||
},
|
||||
"audio/sp-midi": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -6468,6 +6716,9 @@
|
||||
"audio/tone": {
|
||||
"source": "iana"
|
||||
},
|
||||
"audio/tsvcis": {
|
||||
"source": "iana"
|
||||
},
|
||||
"audio/uemclip": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -6762,10 +7013,17 @@
|
||||
"extensions": ["apng"]
|
||||
},
|
||||
"image/avci": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["avci"]
|
||||
},
|
||||
"image/avcs": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["avcs"]
|
||||
},
|
||||
"image/avif": {
|
||||
"source": "iana",
|
||||
"compressible": false,
|
||||
"extensions": ["avif"]
|
||||
},
|
||||
"image/bmp": {
|
||||
"source": "iana",
|
||||
@@ -6889,6 +7147,10 @@
|
||||
"source": "iana",
|
||||
"extensions": ["ktx"]
|
||||
},
|
||||
"image/ktx2": {
|
||||
"source": "iana",
|
||||
"extensions": ["ktx2"]
|
||||
},
|
||||
"image/naplps": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -6990,6 +7252,7 @@
|
||||
},
|
||||
"image/vnd.microsoft.icon": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["ico"]
|
||||
},
|
||||
"image/vnd.mix": {
|
||||
@@ -6999,6 +7262,7 @@
|
||||
"source": "iana"
|
||||
},
|
||||
"image/vnd.ms-dds": {
|
||||
"compressible": true,
|
||||
"extensions": ["dds"]
|
||||
},
|
||||
"image/vnd.ms-modi": {
|
||||
@@ -7013,6 +7277,10 @@
|
||||
"source": "iana",
|
||||
"extensions": ["npx"]
|
||||
},
|
||||
"image/vnd.pco.b16": {
|
||||
"source": "iana",
|
||||
"extensions": ["b16"]
|
||||
},
|
||||
"image/vnd.radiance": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7214,6 +7482,9 @@
|
||||
"source": "iana",
|
||||
"extensions": ["3mf"]
|
||||
},
|
||||
"model/e57": {
|
||||
"source": "iana"
|
||||
},
|
||||
"model/gltf+json": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
@@ -7242,6 +7513,24 @@
|
||||
"source": "iana",
|
||||
"extensions": ["obj"]
|
||||
},
|
||||
"model/step": {
|
||||
"source": "iana"
|
||||
},
|
||||
"model/step+xml": {
|
||||
"source": "iana",
|
||||
"compressible": true,
|
||||
"extensions": ["stpx"]
|
||||
},
|
||||
"model/step+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false,
|
||||
"extensions": ["stpz"]
|
||||
},
|
||||
"model/step-xml+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false,
|
||||
"extensions": ["stpxz"]
|
||||
},
|
||||
"model/stl": {
|
||||
"source": "iana",
|
||||
"extensions": ["stl"]
|
||||
@@ -7292,9 +7581,16 @@
|
||||
"source": "iana",
|
||||
"extensions": ["x_t"]
|
||||
},
|
||||
"model/vnd.pytha.pyox": {
|
||||
"source": "iana"
|
||||
},
|
||||
"model/vnd.rosette.annotated-data-model": {
|
||||
"source": "iana"
|
||||
},
|
||||
"model/vnd.sap.vds": {
|
||||
"source": "iana",
|
||||
"extensions": ["vds"]
|
||||
},
|
||||
"model/vnd.usdz+zip": {
|
||||
"source": "iana",
|
||||
"compressible": false,
|
||||
@@ -7410,6 +7706,15 @@
|
||||
"text/coffeescript": {
|
||||
"extensions": ["coffee","litcoffee"]
|
||||
},
|
||||
"text/cql": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/cql-expression": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/cql-identifier": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/css": {
|
||||
"source": "iana",
|
||||
"charset": "UTF-8",
|
||||
@@ -7439,12 +7744,18 @@
|
||||
"text/enriched": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/fhirpath": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/flexfec": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/fwdred": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/gff3": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/grammar-ref-list": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7551,12 +7862,20 @@
|
||||
"source": "iana",
|
||||
"extensions": ["sgml","sgm"]
|
||||
},
|
||||
"text/shaclc": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/shex": {
|
||||
"source": "iana",
|
||||
"extensions": ["shex"]
|
||||
},
|
||||
"text/slim": {
|
||||
"extensions": ["slim","slm"]
|
||||
},
|
||||
"text/spdx": {
|
||||
"source": "iana",
|
||||
"extensions": ["spdx"]
|
||||
},
|
||||
"text/strings": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7633,6 +7952,10 @@
|
||||
"source": "iana",
|
||||
"charset": "UTF-8"
|
||||
},
|
||||
"text/vnd.familysearch.gedcom": {
|
||||
"source": "iana",
|
||||
"extensions": ["ged"]
|
||||
},
|
||||
"text/vnd.ficlab.flt": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7651,6 +7974,9 @@
|
||||
"source": "iana",
|
||||
"extensions": ["gv"]
|
||||
},
|
||||
"text/vnd.hans": {
|
||||
"source": "iana"
|
||||
},
|
||||
"text/vnd.hgl": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7816,6 +8142,7 @@
|
||||
"source": "iana"
|
||||
},
|
||||
"text/yaml": {
|
||||
"compressible": true,
|
||||
"extensions": ["yaml","yml"]
|
||||
},
|
||||
"video/1d-interleaved-parityfec": {
|
||||
@@ -7832,6 +8159,9 @@
|
||||
"source": "iana",
|
||||
"extensions": ["3g2"]
|
||||
},
|
||||
"video/av1": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/bmpeg": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7847,6 +8177,9 @@
|
||||
"video/encaprtp": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/ffv1": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/flexfec": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -7878,7 +8211,8 @@
|
||||
"source": "iana"
|
||||
},
|
||||
"video/iso.segment": {
|
||||
"source": "iana"
|
||||
"source": "iana",
|
||||
"extensions": ["m4s"]
|
||||
},
|
||||
"video/jpeg": {
|
||||
"source": "iana",
|
||||
@@ -7891,6 +8225,9 @@
|
||||
"source": "apache",
|
||||
"extensions": ["jpm","jpgm"]
|
||||
},
|
||||
"video/jxsv": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/mj2": {
|
||||
"source": "iana",
|
||||
"extensions": ["mj2","mjp2"]
|
||||
@@ -7958,6 +8295,9 @@
|
||||
"video/rtx": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/scip": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/smpte291": {
|
||||
"source": "iana"
|
||||
},
|
||||
@@ -8095,6 +8435,9 @@
|
||||
"video/vp8": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/vp9": {
|
||||
"source": "iana"
|
||||
},
|
||||
"video/webm": {
|
||||
"source": "apache",
|
||||
"compressible": false,
|
||||
|
||||
1
node_modules/mime-db/index.js
generated
vendored
1
node_modules/mime-db/index.js
generated
vendored
@@ -1,6 +1,7 @@
|
||||
/*!
|
||||
* mime-db
|
||||
* Copyright(c) 2014 Jonathan Ong
|
||||
* Copyright(c) 2015-2022 Douglas Christopher Wilson
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
|
||||
33
node_modules/mime-db/package.json
generated
vendored
33
node_modules/mime-db/package.json
generated
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "mime-db",
|
||||
"description": "Media Type Database",
|
||||
"version": "1.44.0",
|
||||
"version": "1.52.0",
|
||||
"contributors": [
|
||||
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
||||
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
|
||||
@@ -22,18 +22,19 @@
|
||||
"bluebird": "3.7.2",
|
||||
"co": "4.6.0",
|
||||
"cogent": "1.0.1",
|
||||
"csv-parse": "4.8.9",
|
||||
"eslint": "6.8.0",
|
||||
"eslint-config-standard": "14.1.1",
|
||||
"eslint-plugin-import": "2.20.2",
|
||||
"eslint-plugin-markdown": "1.0.2",
|
||||
"csv-parse": "4.16.3",
|
||||
"eslint": "7.32.0",
|
||||
"eslint-config-standard": "15.0.1",
|
||||
"eslint-plugin-import": "2.25.4",
|
||||
"eslint-plugin-markdown": "2.2.1",
|
||||
"eslint-plugin-node": "11.1.0",
|
||||
"eslint-plugin-promise": "4.2.1",
|
||||
"eslint-plugin-standard": "4.0.1",
|
||||
"eslint-plugin-promise": "5.1.1",
|
||||
"eslint-plugin-standard": "4.1.0",
|
||||
"gnode": "0.1.2",
|
||||
"mocha": "7.1.1",
|
||||
"nyc": "15.0.1",
|
||||
"raw-body": "2.4.1",
|
||||
"media-typer": "1.1.0",
|
||||
"mocha": "9.2.1",
|
||||
"nyc": "15.1.0",
|
||||
"raw-body": "2.5.0",
|
||||
"stream-to-array": "2.3.0"
|
||||
},
|
||||
"files": [
|
||||
@@ -49,15 +50,11 @@
|
||||
"scripts": {
|
||||
"build": "node scripts/build",
|
||||
"fetch": "node scripts/fetch-apache && gnode scripts/fetch-iana && node scripts/fetch-nginx",
|
||||
"lint": "eslint --plugin markdown --ext js,md .",
|
||||
"lint": "eslint .",
|
||||
"test": "mocha --reporter spec --bail --check-leaks test/",
|
||||
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
||||
"test-cov": "nyc --reporter=html --reporter=text npm test",
|
||||
"test-travis": "nyc --reporter=text npm test",
|
||||
"update": "npm run fetch && npm run build",
|
||||
"version": "node scripts/version-history.js && git add HISTORY.md"
|
||||
}
|
||||
|
||||
,"_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"
|
||||
,"_integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="
|
||||
,"_from": "mime-db@1.44.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user