aboutsummaryrefslogtreecommitdiff
path: root/node_modules/center-align
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/center-align')
-rw-r--r--node_modules/center-align/LICENSE21
-rw-r--r--node_modules/center-align/README.md74
-rw-r--r--node_modules/center-align/index.js16
-rw-r--r--node_modules/center-align/node_modules/lazy-cache/LICENSE21
-rw-r--r--node_modules/center-align/node_modules/lazy-cache/README.md147
-rw-r--r--node_modules/center-align/node_modules/lazy-cache/index.js67
-rw-r--r--node_modules/center-align/node_modules/lazy-cache/package.json58
-rw-r--r--node_modules/center-align/package.json51
-rw-r--r--node_modules/center-align/utils.js40
9 files changed, 0 insertions, 495 deletions
diff --git a/node_modules/center-align/LICENSE b/node_modules/center-align/LICENSE
deleted file mode 100644
index 65f90aca8..000000000
--- a/node_modules/center-align/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015, 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/center-align/README.md b/node_modules/center-align/README.md
deleted file mode 100644
index cbcf3befc..000000000
--- a/node_modules/center-align/README.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# center-align [![NPM version](https://badge.fury.io/js/center-align.svg)](http://badge.fury.io/js/center-align)
-
-> Center-align the text in a string.
-
-Install with [npm](https://www.npmjs.com/)
-
-```sh
-$ npm i center-align --save
-```
-
-## Usage
-
-```js
-var centerAlign = require('center-align');
-```
-
-**Example**
-
-If used on the following:
-
-```
-Lorem ipsum dolor sit amet,
-consectetur adipiscing
-elit, sed do eiusmod tempor incididunt
-ut labore et dolore
-magna aliqua. Ut enim ad minim
-veniam, quis
-```
-
-The result would be:
-
-```
- Lorem ipsum dolor sit amet,
- consectetur adipiscing
-elit, sed do eiusmod tempor incididunt
- ut labore et dolore
- magna aliqua. Ut enim ad minim
- veniam, quis
-```
-
-## Related projects
-
-* [align-text](https://www.npmjs.com/package/align-text): Align the text in a string. | [homepage](https://github.com/jonschlinkert/align-text)
-* [justified](https://www.npmjs.com/package/justified): Wrap words to a specified length and justified the text. | [homepage](https://github.com/jonschlinkert/justified)
-* [right-align](https://www.npmjs.com/package/right-align): Right-align the text in a string. | [homepage](https://github.com/jonschlinkert/right-align)
-* [word-wrap](https://www.npmjs.com/package/word-wrap): Wrap words to a specified length. | [homepage](https://github.com/jonschlinkert/word-wrap)
-
-## Running tests
-
-Install dev dependencies:
-
-```sh
-$ npm i -d && npm test
-```
-
-## Contributing
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/center-align/issues/new).
-
-## Author
-
-**Jon Schlinkert**
-
-+ [github/jonschlinkert](https://github.com/jonschlinkert)
-+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
-
-## License
-
-Copyright © 2015 Jon Schlinkert
-Released under the MIT license.
-
-***
-
-_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on October 27, 2015._ \ No newline at end of file
diff --git a/node_modules/center-align/index.js b/node_modules/center-align/index.js
deleted file mode 100644
index c6ed54a94..000000000
--- a/node_modules/center-align/index.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/*!
- * center-align <https://github.com/jonschlinkert/center-align>
- *
- * Copycenter (c) 2015, Jon Schlinkert.
- * Licensed under the MIT License.
- */
-
-'use strict';
-
-var utils = require('./utils');
-
-module.exports = function centerAlign(val) {
- return utils.align(val, function (len, longest) {
- return Math.floor((longest - len) / 2);
- });
-};
diff --git a/node_modules/center-align/node_modules/lazy-cache/LICENSE b/node_modules/center-align/node_modules/lazy-cache/LICENSE
deleted file mode 100644
index 1e49edf81..000000000
--- a/node_modules/center-align/node_modules/lazy-cache/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/center-align/node_modules/lazy-cache/README.md b/node_modules/center-align/node_modules/lazy-cache/README.md
deleted file mode 100644
index 33b5a4dde..000000000
--- a/node_modules/center-align/node_modules/lazy-cache/README.md
+++ /dev/null
@@ -1,147 +0,0 @@
-# lazy-cache [![NPM version](https://img.shields.io/npm/v/lazy-cache.svg?style=flat)](https://www.npmjs.com/package/lazy-cache) [![NPM downloads](https://img.shields.io/npm/dm/lazy-cache.svg?style=flat)](https://npmjs.org/package/lazy-cache) [![Build Status](https://img.shields.io/travis/jonschlinkert/lazy-cache.svg?style=flat)](https://travis-ci.org/jonschlinkert/lazy-cache)
-
-> Cache requires to be lazy-loaded when needed.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/):
-
-```sh
-$ npm install lazy-cache --save
-```
-
-If you use webpack and are experiencing issues, try using [unlazy-loader](https://github.com/doowb/unlazy-loader), a webpack loader that fixes the bug that prevents webpack from working with native javascript getters.
-
-## Usage
-
-```js
-var utils = require('lazy-cache')(require);
-```
-
-**Use as a property on `lazy`**
-
-The module is also added as a property to the `lazy` function
-so it can be called without having to call a function first.
-
-```js
-var utils = require('lazy-cache')(require);
-
-// `npm install glob`
-utils('glob');
-
-// glob sync
-console.log(utils.glob.sync('*.js'));
-
-// glob async
-utils.glob('*.js', function (err, files) {
- console.log(files);
-});
-```
-
-**Use as a function**
-
-```js
-var utils = require('lazy-cache')(require);
-var glob = utils('glob');
-
-// `glob` is a now a function that may be called when needed
-glob().sync('foo/*.js');
-```
-
-## Aliases
-
-An alias may be passed as the second argument if you don't want to use the automatically camel-cased variable name.
-
-**Example**
-
-```js
-var utils = require('lazy-cache')(require);
-
-// alias `ansi-yellow` as `yellow`
-utils('ansi-yellow', 'yellow');
-console.log(utils.yellow('foo'));
-```
-
-## Browserify usage
-
-**Example**
-
-```js
-var utils = require('lazy-cache')(require);
-// temporarily re-assign `require` to trick browserify
-var fn = require;
-require = utils;
-// list module dependencies (here, `require` is actually `lazy-cache`)
-require('glob');
-require = fn; // restore the native `require` function
-
-/**
- * Now you can use glob with the `utils.glob` variable
- */
-
-// sync
-console.log(utils.glob.sync('*.js'));
-
-// async
-utils.glob('*.js', function (err, files) {
- console.log(files.join('\n'));
-});
-```
-
-## Kill switch
-
-In certain rare edge cases it may be necessary to unlazy all lazy-cached dependencies (5 reported cases after ~30 million downloads).
-
-To force lazy-cache to immediately invoke all dependencies, do:
-
-```js
-process.env.UNLAZY = true;
-```
-
-## Related projects
-
-You might also be interested in these projects:
-
-[lint-deps](https://www.npmjs.com/package/lint-deps): CLI tool that tells you when dependencies are missing from package.json and offers you a… [more](https://www.npmjs.com/package/lint-deps) | [homepage](https://github.com/jonschlinkert/lint-deps)
-
-## Contributing
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/lazy-cache/issues/new).
-
-## Building docs
-
-Generate readme and API documentation with [verb](https://github.com/verbose/verb):
-
-```sh
-$ npm install verb && npm run docs
-```
-
-Or, if [verb](https://github.com/verbose/verb) is installed globally:
-
-```sh
-$ verb
-```
-
-## Running tests
-
-Install dev dependencies:
-
-```sh
-$ npm install -d && npm test
-```
-
-## Author
-
-**Jon Schlinkert**
-
-* [github/jonschlinkert](https://github.com/jonschlinkert)
-* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
-
-## License
-
-Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).
-Released under the [MIT license](https://github.com/jonschlinkert/lazy-cache/blob/master/LICENSE).
-
-***
-
-_This file was generated by [verb](https://github.com/verbose/verb), v0.9.0, on April 22, 2016._ \ No newline at end of file
diff --git a/node_modules/center-align/node_modules/lazy-cache/index.js b/node_modules/center-align/node_modules/lazy-cache/index.js
deleted file mode 100644
index da7897d0c..000000000
--- a/node_modules/center-align/node_modules/lazy-cache/index.js
+++ /dev/null
@@ -1,67 +0,0 @@
-'use strict';
-
-/**
- * Cache results of the first function call to ensure only calling once.
- *
- * ```js
- * var utils = require('lazy-cache')(require);
- * // cache the call to `require('ansi-yellow')`
- * utils('ansi-yellow', 'yellow');
- * // use `ansi-yellow`
- * console.log(utils.yellow('this is yellow'));
- * ```
- *
- * @param {Function} `fn` Function that will be called only once.
- * @return {Function} Function that can be called to get the cached function
- * @api public
- */
-
-function lazyCache(fn) {
- var cache = {};
- var proxy = function(mod, name) {
- name = name || camelcase(mod);
-
- // check both boolean and string in case `process.env` cases to string
- if (process.env.UNLAZY === 'true' || process.env.UNLAZY === true || process.env.TRAVIS) {
- cache[name] = fn(mod);
- }
-
- Object.defineProperty(proxy, name, {
- enumerable: true,
- configurable: true,
- get: getter
- });
-
- function getter() {
- if (cache.hasOwnProperty(name)) {
- return cache[name];
- }
- return (cache[name] = fn(mod));
- }
- return getter;
- };
- return proxy;
-}
-
-/**
- * Used to camelcase the name to be stored on the `lazy` object.
- *
- * @param {String} `str` String containing `_`, `.`, `-` or whitespace that will be camelcased.
- * @return {String} camelcased string.
- */
-
-function camelcase(str) {
- if (str.length === 1) {
- return str.toLowerCase();
- }
- str = str.replace(/^[\W_]+|[\W_]+$/g, '').toLowerCase();
- return str.replace(/[\W_]+(\w|$)/g, function(_, ch) {
- return ch.toUpperCase();
- });
-}
-
-/**
- * Expose `lazyCache`
- */
-
-module.exports = lazyCache;
diff --git a/node_modules/center-align/node_modules/lazy-cache/package.json b/node_modules/center-align/node_modules/lazy-cache/package.json
deleted file mode 100644
index e635e982d..000000000
--- a/node_modules/center-align/node_modules/lazy-cache/package.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "name": "lazy-cache",
- "description": "Cache requires to be lazy-loaded when needed.",
- "version": "1.0.4",
- "homepage": "https://github.com/jonschlinkert/lazy-cache",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/lazy-cache",
- "bugs": {
- "url": "https://github.com/jonschlinkert/lazy-cache/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "devDependencies": {
- "ansi-yellow": "^0.1.1",
- "glob": "^7.0.3",
- "gulp-format-md": "^0.1.8",
- "mocha": "^2.4.5"
- },
- "keywords": [
- "cache",
- "caching",
- "dependencies",
- "dependency",
- "lazy",
- "require",
- "requires"
- ],
- "verb": {
- "related": {
- "list": [
- "lint-deps"
- ]
- },
- "plugins": [
- "gulp-format-md"
- ],
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "lint": {
- "reflinks": true
- },
- "reflinks": [
- "verb"
- ]
- }
-}
diff --git a/node_modules/center-align/package.json b/node_modules/center-align/package.json
deleted file mode 100644
index eee07ee06..000000000
--- a/node_modules/center-align/package.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "name": "center-align",
- "description": "Center-align the text in a string.",
- "version": "0.1.3",
- "homepage": "https://github.com/jonschlinkert/center-align",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/center-align",
- "bugs": {
- "url": "https://github.com/jonschlinkert/center-align/issues"
- },
- "license": "MIT",
- "files": [
- "index.js",
- "utils.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "align-text": "^0.1.3",
- "lazy-cache": "^1.0.3"
- },
- "devDependencies": {
- "mocha": "^2.2.0"
- },
- "keywords": [
- "align",
- "align-center",
- "center",
- "center-align",
- "right",
- "right-align",
- "text",
- "typography"
- ],
- "verb": {
- "related": {
- "description": "",
- "list": [
- "align-text",
- "right-align",
- "justified",
- "word-wrap"
- ]
- }
- }
-}
diff --git a/node_modules/center-align/utils.js b/node_modules/center-align/utils.js
deleted file mode 100644
index aead6d2f0..000000000
--- a/node_modules/center-align/utils.js
+++ /dev/null
@@ -1,40 +0,0 @@
-'use strict';
-
-/**
- * Lazily-required module dependencies (makes the application
- * faster)
- */
-
-var utils = require('lazy-cache')(require);
-
-/**
- * Temporarily re-assign `require` to trick browserify and
- * webpack into reconizing lazy dependencies.
- *
- * This tiny bit of ugliness has the huge dual advantage of
- * only loading modules that are actually called at some
- * point in the lifecycle of the application, whilst also
- * allowing browserify and webpack to find modules that
- * are depended on but never actually called.
- */
-
-var fn = require;
-require = utils;
-
-/**
- * Lazily required module dependencies
- */
-
-require('align-text', 'align');
-
-/**
- * Restore `require`
- */
-
-require = fn;
-
-/**
- * Expose `utils` modules
- */
-
-module.exports = utils;