Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2021-02-12 02:21:47 +0300
committerGar <gar+gh@danger.computer>2021-02-12 02:25:14 +0300
commit554d91cdf82e9c92c2ac3752ed91e7081c2271e5 (patch)
tree4297252545b35ea2dae22cdca1de6529b7714306 /node_modules/mime-types
parente998811170ce5df00a725b2d683b4bff124c6792 (diff)
chore(package-lock): rebuild package-lock
This pulls in, installs, and de-dupes our subdependencies. Notable updates are promise-retry and @npmcli/move-file which had new versions but we had no way to update and/or dedupe We also manually removed uuid from our package.json which was only added in the past to try to get around this same deduping issue
Diffstat (limited to 'node_modules/mime-types')
-rw-r--r--node_modules/mime-types/HISTORY.md13
-rw-r--r--node_modules/mime-types/README.md6
-rw-r--r--node_modules/mime-types/package.json18
3 files changed, 25 insertions, 12 deletions
diff --git a/node_modules/mime-types/HISTORY.md b/node_modules/mime-types/HISTORY.md
index e93149ae9..af65fdb10 100644
--- a/node_modules/mime-types/HISTORY.md
+++ b/node_modules/mime-types/HISTORY.md
@@ -1,3 +1,16 @@
+2.1.28 / 2021-01-01
+===================
+
+ * deps: mime-db@1.45.0
+ - 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`
+
2.1.27 / 2020-04-23
===================
diff --git a/node_modules/mime-types/README.md b/node_modules/mime-types/README.md
index 3863339aa..e8bf8ebce 100644
--- a/node_modules/mime-types/README.md
+++ b/node_modules/mime-types/README.md
@@ -3,7 +3,7 @@
[![NPM Version][npm-version-image]][npm-url]
[![NPM Downloads][npm-downloads-image]][npm-url]
[![Node.js Version][node-version-image]][node-version-url]
-[![Build Status][travis-image]][travis-url]
+[![Build Status][ci-image]][ci-url]
[![Test Coverage][coveralls-image]][coveralls-url]
The ultimate javascript content-type utility.
@@ -112,6 +112,8 @@ A map of extensions by content-type.
[MIT](LICENSE)
+[ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci
+[ci-url]: https://github.com/jshttp/mime-types/actions?query=workflow%3Aci
[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master
[coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master
[node-version-image]: https://badgen.net/npm/node/mime-types
@@ -119,5 +121,3 @@ A map of extensions by content-type.
[npm-downloads-image]: https://badgen.net/npm/dm/mime-types
[npm-url]: https://npmjs.org/package/mime-types
[npm-version-image]: https://badgen.net/npm/v/mime-types
-[travis-image]: https://badgen.net/travis/jshttp/mime-types/master
-[travis-url]: https://travis-ci.org/jshttp/mime-types
diff --git a/node_modules/mime-types/package.json b/node_modules/mime-types/package.json
index 53100eba0..26fa6f694 100644
--- a/node_modules/mime-types/package.json
+++ b/node_modules/mime-types/package.json
@@ -1,7 +1,7 @@
{
"name": "mime-types",
"description": "The ultimate javascript content-type utility.",
- "version": "2.1.27",
+ "version": "2.1.28",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)",
@@ -14,18 +14,18 @@
],
"repository": "jshttp/mime-types",
"dependencies": {
- "mime-db": "1.44.0"
+ "mime-db": "1.45.0"
},
"devDependencies": {
- "eslint": "6.8.0",
+ "eslint": "7.17.0",
"eslint-config-standard": "14.1.1",
- "eslint-plugin-import": "2.20.2",
+ "eslint-plugin-import": "2.22.1",
"eslint-plugin-markdown": "1.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
- "eslint-plugin-standard": "4.0.1",
- "mocha": "7.1.1",
- "nyc": "15.0.1"
+ "eslint-plugin-standard": "4.1.0",
+ "mocha": "8.2.1",
+ "nyc": "15.1.0"
},
"files": [
"HISTORY.md",
@@ -38,7 +38,7 @@
"scripts": {
"lint": "eslint --plugin markdown --ext js,md .",
"test": "mocha --reporter spec test/test.js",
- "test-cov": "nyc --reporter=html --reporter=text npm test",
- "test-travis": "nyc --reporter=text npm test"
+ "test-ci": "nyc --reporter=lcov --reporter=text npm test",
+ "test-cov": "nyc --reporter=html --reporter=text npm test"
}
}