# add dist

This commit is contained in:
Mario Romano
2016-04-21 11:56:31 +01:00
parent 5914688467
commit 07807e7bc3
13499 changed files with 1808930 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
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.

View File

@@ -0,0 +1,74 @@
# 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._

View File

@@ -0,0 +1,16 @@
/*!
* 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);
});
};

View File

@@ -0,0 +1,113 @@
{
"_args": [
[
"center-align@^0.1.1",
"/Users/mromano/dev/dev-platform-webcomponents/ng2-components/ng2-alfresco-documentslist/node_modules/systemjs-builder/node_modules/cliui"
]
],
"_from": "center-align@>=0.1.1 <0.2.0",
"_id": "center-align@0.1.3",
"_inCache": true,
"_installable": true,
"_location": "/center-align",
"_nodeVersion": "5.3.0",
"_npmOperationalInternal": {
"host": "packages-9-west.internal.npmjs.com",
"tmp": "tmp/center-align-0.1.3.tgz_1454366538829_0.9471865000668913"
},
"_npmUser": {
"email": "github@sellside.com",
"name": "jonschlinkert"
},
"_npmVersion": "3.3.12",
"_phantomChildren": {},
"_requested": {
"name": "center-align",
"raw": "center-align@^0.1.1",
"rawSpec": "^0.1.1",
"scope": null,
"spec": ">=0.1.1 <0.2.0",
"type": "range"
},
"_requiredBy": [
"/systemjs-builder/cliui"
],
"_resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
"_shasum": "aa0d32629b6ee972200411cbd4461c907bc2b7ad",
"_shrinkwrap": null,
"_spec": "center-align@^0.1.1",
"_where": "/Users/mromano/dev/dev-platform-webcomponents/ng2-components/ng2-alfresco-documentslist/node_modules/systemjs-builder/node_modules/cliui",
"author": {
"name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert"
},
"bugs": {
"url": "https://github.com/jonschlinkert/center-align/issues"
},
"dependencies": {
"align-text": "^0.1.3",
"lazy-cache": "^1.0.3"
},
"description": "Center-align the text in a string.",
"devDependencies": {
"mocha": "^2.2.0"
},
"directories": {},
"dist": {
"shasum": "aa0d32629b6ee972200411cbd4461c907bc2b7ad",
"tarball": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"utils.js"
],
"gitHead": "5c5fab5012fceaa3e21a00162958c0ed11109419",
"homepage": "https://github.com/jonschlinkert/center-align",
"keywords": [
"align",
"align-center",
"center",
"center-align",
"right",
"right-align",
"text",
"typography"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"email": "brian.woodward@gmail.com",
"name": "doowb"
},
{
"email": "github@sellside.com",
"name": "jonschlinkert"
}
],
"name": "center-align",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/jonschlinkert/center-align.git"
},
"scripts": {
"test": "mocha"
},
"verb": {
"related": {
"description": "",
"list": [
"align-text",
"right-align",
"justified",
"word-wrap"
]
}
},
"version": "0.1.3"
}

View File

@@ -0,0 +1,40 @@
'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;