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:
authorisaacs <i@izs.me>2020-12-09 03:49:37 +0300
committerisaacs <i@izs.me>2020-12-09 03:53:05 +0300
commit3d7aff9d8dd1cf29956aa306464cd44fbc2af426 (patch)
tree3f0f73546eed3fdd466ad48c06f09687a868b3c1 /node_modules/ms
parent518a664500bcde30475788e8c1c3e651f23e881b (diff)
update all dependencies using latest npm to install them
This addresses the inclusion of some dev dependencies that should not have been included, due to a bug in Arborist 1.x which has been corrected. It also just moves some stuff around that was still in the tree shape that npm 6 created, which is different than what npm v7 will create. Several formerly dev deps were moved to production dependencies due to the addition of resolve in normalize-package-data v3.
Diffstat (limited to 'node_modules/ms')
-rw-r--r--node_modules/ms/index.js2
-rw-r--r--node_modules/ms/license.md2
-rw-r--r--node_modules/ms/package.json9
-rw-r--r--node_modules/ms/readme.md3
4 files changed, 8 insertions, 8 deletions
diff --git a/node_modules/ms/index.js b/node_modules/ms/index.js
index c4498bcc2..ea734fb73 100644
--- a/node_modules/ms/index.js
+++ b/node_modules/ms/index.js
@@ -23,7 +23,7 @@ var y = d * 365.25;
* @api public
*/
-module.exports = function(val, options) {
+module.exports = function (val, options) {
options = options || {};
var type = typeof val;
if (type === 'string' && val.length > 0) {
diff --git a/node_modules/ms/license.md b/node_modules/ms/license.md
index 69b61253a..fa5d39b62 100644
--- a/node_modules/ms/license.md
+++ b/node_modules/ms/license.md
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2016 Zeit, Inc.
+Copyright (c) 2020 Vercel, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json
index eea666e1f..49971890d 100644
--- a/node_modules/ms/package.json
+++ b/node_modules/ms/package.json
@@ -1,8 +1,8 @@
{
"name": "ms",
- "version": "2.1.2",
+ "version": "2.1.3",
"description": "Tiny millisecond conversion utility",
- "repository": "zeit/ms",
+ "repository": "vercel/ms",
"main": "./index",
"files": [
"index.js"
@@ -28,10 +28,11 @@
},
"license": "MIT",
"devDependencies": {
- "eslint": "4.12.1",
+ "eslint": "4.18.2",
"expect.js": "0.3.1",
"husky": "0.14.3",
"lint-staged": "5.0.0",
- "mocha": "4.0.1"
+ "mocha": "4.0.1",
+ "prettier": "2.0.5"
}
}
diff --git a/node_modules/ms/readme.md b/node_modules/ms/readme.md
index 9a1996b17..0fc1abb3b 100644
--- a/node_modules/ms/readme.md
+++ b/node_modules/ms/readme.md
@@ -1,7 +1,6 @@
# ms
-[![Build Status](https://travis-ci.org/zeit/ms.svg?branch=master)](https://travis-ci.org/zeit/ms)
-[![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/zeit)
+![CI](https://github.com/vercel/ms/workflows/CI/badge.svg)
Use this package to easily convert various time formats to milliseconds.