aboutsummaryrefslogtreecommitdiff
path: root/node_modules/expand-tilde
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/expand-tilde
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/expand-tilde')
-rw-r--r--node_modules/expand-tilde/LICENSE21
-rw-r--r--node_modules/expand-tilde/index.js22
-rw-r--r--node_modules/expand-tilde/package.json138
3 files changed, 181 insertions, 0 deletions
diff --git a/node_modules/expand-tilde/LICENSE b/node_modules/expand-tilde/LICENSE
new file mode 100644
index 000000000..1e49edf81
--- /dev/null
+++ b/node_modules/expand-tilde/LICENSE
@@ -0,0 +1,21 @@
+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/expand-tilde/index.js b/node_modules/expand-tilde/index.js
new file mode 100644
index 000000000..ef3656a47
--- /dev/null
+++ b/node_modules/expand-tilde/index.js
@@ -0,0 +1,22 @@
+/*!
+ * 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/expand-tilde/package.json b/node_modules/expand-tilde/package.json
new file mode 100644
index 000000000..0f10cfd4d
--- /dev/null
+++ b/node_modules/expand-tilde/package.json
@@ -0,0 +1,138 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "expand-tilde@^1.2.2",
+ "scope": null,
+ "escapedName": "expand-tilde",
+ "name": "expand-tilde",
+ "rawSpec": "^1.2.2",
+ "spec": ">=1.2.2 <2.0.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/resolve-dir"
+ ]
+ ],
+ "_from": "expand-tilde@>=1.2.2 <2.0.0",
+ "_id": "expand-tilde@1.2.2",
+ "_inCache": true,
+ "_location": "/expand-tilde",
+ "_nodeVersion": "6.2.0",
+ "_npmOperationalInternal": {
+ "host": "packages-16-east.internal.npmjs.com",
+ "tmp": "tmp/expand-tilde-1.2.2.tgz_1465121172107_0.8694229645188898"
+ },
+ "_npmUser": {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ },
+ "_npmVersion": "3.8.9",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "expand-tilde@^1.2.2",
+ "scope": null,
+ "escapedName": "expand-tilde",
+ "name": "expand-tilde",
+ "rawSpec": "^1.2.2",
+ "spec": ">=1.2.2 <2.0.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/fined",
+ "/resolve-dir"
+ ],
+ "_resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz",
+ "_shasum": "0b81eba897e5a3d31d1c3d102f8f01441e559449",
+ "_shrinkwrap": null,
+ "_spec": "expand-tilde@^1.2.2",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/resolve-dir",
+ "author": {
+ "name": "Jon Schlinkert",
+ "url": "https://github.com/jonschlinkert"
+ },
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/expand-tilde/issues"
+ },
+ "dependencies": {
+ "os-homedir": "^1.0.1"
+ },
+ "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.",
+ "devDependencies": {
+ "gulp-format-md": "^0.1.9",
+ "is-windows": "^0.2.0",
+ "mocha": "^2.5.3"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "0b81eba897e5a3d31d1c3d102f8f01441e559449",
+ "tarball": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "files": [
+ "index.js"
+ ],
+ "gitHead": "20c36b85f5ed7353c8783e340b9652e023403bc4",
+ "homepage": "https://github.com/jonschlinkert/expand-tilde",
+ "keywords": [
+ "cwd",
+ "expand",
+ "expansion",
+ "filepath",
+ "home",
+ "path",
+ "pwd",
+ "tilde",
+ "user",
+ "userhome"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "maintainers": [
+ {
+ "name": "doowb",
+ "email": "brian.woodward@gmail.com"
+ },
+ {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ }
+ ],
+ "name": "expand-tilde",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jonschlinkert/expand-tilde.git"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "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
+ }
+ },
+ "version": "1.2.2"
+}