aboutsummaryrefslogtreecommitdiff
path: root/node_modules/resolve-dir
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
commitbbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch)
treec58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/resolve-dir
parent003fb34971cf63466184351b4db5f7c67df4f444 (diff)
update packages
Diffstat (limited to 'node_modules/resolve-dir')
-rw-r--r--node_modules/resolve-dir/README.md6
-rw-r--r--node_modules/resolve-dir/node_modules/expand-tilde/LICENSE21
-rw-r--r--node_modules/resolve-dir/node_modules/expand-tilde/index.js22
-rw-r--r--node_modules/resolve-dir/node_modules/expand-tilde/package.json67
-rw-r--r--node_modules/resolve-dir/package.json17
5 files changed, 11 insertions, 122 deletions
diff --git a/node_modules/resolve-dir/README.md b/node_modules/resolve-dir/README.md
index 220178dbd..366075744 100644
--- a/node_modules/resolve-dir/README.md
+++ b/node_modules/resolve-dir/README.md
@@ -1,6 +1,6 @@
-# resolve-dir [![NPM version](https://img.shields.io/npm/v/resolve-dir.svg?style=flat)](https://www.npmjs.com/package/resolve-dir) [![NPM downloads](https://img.shields.io/npm/dm/resolve-dir.svg?style=flat)](https://npmjs.org/package/resolve-dir) [![Build Status](https://img.shields.io/travis/jonschlinkert/resolve-dir.svg?style=flat)](https://travis-ci.org/jonschlinkert/resolve-dir)
+# resolve-dir [![NPM version](https://img.shields.io/npm/v/resolve-dir.svg?style=flat)](https://www.npmjs.com/package/resolve-dir) [![NPM downloads](https://img.shields.io/npm/dm/resolve-dir.svg?style=flat)](https://npmjs.org/package/resolve-dir) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/resolve-dir.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/resolve-dir)
-Resolve a directory that is either local, global or in the user's home directory.
+> Resolve a directory that is either local, global or in the user's home directory.
## Install
@@ -85,4 +85,4 @@ Released under the [MIT license](https://github.com/jonschlinkert/resolve-dir/bl
***
-_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.28, on July 29, 2016._ \ No newline at end of file
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.2.0, on October 18, 2016._ \ No newline at end of file
diff --git a/node_modules/resolve-dir/node_modules/expand-tilde/LICENSE b/node_modules/resolve-dir/node_modules/expand-tilde/LICENSE
deleted file mode 100644
index 1e49edf81..000000000
--- a/node_modules/resolve-dir/node_modules/expand-tilde/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015-2016, Jon Schlinkert.
-
-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 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.
diff --git a/node_modules/resolve-dir/node_modules/expand-tilde/index.js b/node_modules/resolve-dir/node_modules/expand-tilde/index.js
deleted file mode 100644
index ef3656a47..000000000
--- a/node_modules/resolve-dir/node_modules/expand-tilde/index.js
+++ /dev/null
@@ -1,22 +0,0 @@
-/*!
- * expand-tilde <https://github.com/jonschlinkert/expand-tilde>
- *
- * Copyright (c) 2015 Jon Schlinkert.
- * Licensed under the MIT license.
- */
-
-var path = require('path');
-var homedir = require('os-homedir');
-
-module.exports = function expandTilde(filepath) {
- var home = homedir();
-
- if (filepath.charCodeAt(0) === 126 /* ~ */) {
- if (filepath.charCodeAt(1) === 43 /* + */) {
- return path.join(process.cwd(), filepath.slice(2));
- }
- return home ? path.join(home, filepath.slice(1)) : filepath;
- }
-
- return filepath;
-};
diff --git a/node_modules/resolve-dir/node_modules/expand-tilde/package.json b/node_modules/resolve-dir/node_modules/expand-tilde/package.json
deleted file mode 100644
index d146c3718..000000000
--- a/node_modules/resolve-dir/node_modules/expand-tilde/package.json
+++ /dev/null
@@ -1,67 +0,0 @@
-{
- "name": "expand-tilde",
- "description": "Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the user home directory, or `~+` to the cwd.",
- "version": "1.2.2",
- "homepage": "https://github.com/jonschlinkert/expand-tilde",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/expand-tilde",
- "bugs": {
- "url": "https://github.com/jonschlinkert/expand-tilde/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "os-homedir": "^1.0.1"
- },
- "devDependencies": {
- "gulp-format-md": "^0.1.9",
- "is-windows": "^0.2.0",
- "mocha": "^2.5.3"
- },
- "keywords": [
- "cwd",
- "expand",
- "expansion",
- "filepath",
- "home",
- "path",
- "pwd",
- "tilde",
- "user",
- "userhome"
- ],
- "verb": {
- "run": true,
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "related": {
- "list": [
- "micromatch",
- "braces",
- "expand-brackets",
- "is-glob"
- ]
- },
- "reflinks": [
- "verb"
- ],
- "lint": {
- "reflinks": true
- }
- }
-}
diff --git a/node_modules/resolve-dir/package.json b/node_modules/resolve-dir/package.json
index d881c6944..1899e6e96 100644
--- a/node_modules/resolve-dir/package.json
+++ b/node_modules/resolve-dir/package.json
@@ -1,7 +1,7 @@
{
"name": "resolve-dir",
"description": "Resolve a directory that is either local, global or in the user's home directory.",
- "version": "0.1.1",
+ "version": "1.0.1",
"homepage": "https://github.com/jonschlinkert/resolve-dir",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/resolve-dir",
@@ -10,9 +10,7 @@
},
"license": "MIT",
"files": [
- "index.js",
- "LICENSE",
- "README.md"
+ "index.js"
],
"main": "index.js",
"engines": {
@@ -22,12 +20,13 @@
"test": "mocha"
},
"dependencies": {
- "expand-tilde": "^1.2.2",
- "global-modules": "^0.2.3"
+ "expand-tilde": "^2.0.0",
+ "global-modules": "^1.0.0"
},
"devDependencies": {
- "gulp-format-md": "^0.1.9",
- "mocha": "^2.5.3"
+ "gulp-format-md": "^1.0.0",
+ "homedir-polyfill": "^1.0.1",
+ "mocha": "^3.5.0"
},
"keywords": [
"dir",
@@ -58,8 +57,8 @@
],
"related": {
"list": [
- "findup-sync",
"expand-tilde",
+ "findup-sync",
"resolve-modules"
]
},