From bbff7403fbf46f9ad92240ac213df8d30ef31b64 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 20 Sep 2018 02:56:13 +0200 Subject: update packages --- node_modules/repeat-element/LICENSE | 2 +- node_modules/repeat-element/README.md | 68 ++++++++++++++++++++++---------- node_modules/repeat-element/index.js | 2 +- node_modules/repeat-element/package.json | 49 ++++++++++++----------- 4 files changed, 77 insertions(+), 44 deletions(-) (limited to 'node_modules/repeat-element') diff --git a/node_modules/repeat-element/LICENSE b/node_modules/repeat-element/LICENSE index 33754daec..7cccaf9e3 100644 --- a/node_modules/repeat-element/LICENSE +++ b/node_modules/repeat-element/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Jon Schlinkert +Copyright (c) 2015-present, 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 diff --git a/node_modules/repeat-element/README.md b/node_modules/repeat-element/README.md index 008e20ead..6006418b3 100644 --- a/node_modules/repeat-element/README.md +++ b/node_modules/repeat-element/README.md @@ -1,19 +1,21 @@ -# repeat-element [![NPM version](https://badge.fury.io/js/repeat-element.svg)](http://badge.fury.io/js/repeat-element) +# repeat-element [![NPM version](https://img.shields.io/npm/v/repeat-element.svg?style=flat)](https://www.npmjs.com/package/repeat-element) [![NPM monthly downloads](https://img.shields.io/npm/dm/repeat-element.svg?style=flat)](https://npmjs.org/package/repeat-element) [![NPM total downloads](https://img.shields.io/npm/dt/repeat-element.svg?style=flat)](https://npmjs.org/package/repeat-element) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/repeat-element.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/repeat-element) > Create an array by repeating the given value n times. +Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support. + ## Install -Install with [npm](https://www.npmjs.com/) +Install with [npm](https://www.npmjs.com/): -```bash -npm i repeat-element --save +```sh +$ npm install --save repeat-element ``` ## Usage ```js -var repeat = require('repeat-element'); +const repeat = require('repeat-element'); repeat('a', 5); //=> ['a', 'a', 'a', 'a', 'a'] @@ -38,34 +40,60 @@ repeat(5, 5) //» [ 5, 5, 5, 5, 5 ] ``` -## Related projects +## About + +
+Contributing + +Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). + +
+ +
+Running Tests + +Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: + +```sh +$ npm install && npm test +``` + +
-[repeat-string](https://github.com/jonschlinkert/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string. +
+Building docs -## Running tests +_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ -Install dev dependencies: +To generate the readme, run the following command: -```bash -npm i -d && npm test +```sh +$ npm install -g verbose/verb#dev verb-generate-readme && verb ``` -## Contributing +
+ +### Contributors -Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/repeat-element/issues) +| **Commits** | **Contributor** | +| --- | --- | +| 17 | [jonschlinkert](https://github.com/jonschlinkert) | +| 3 | [LinusU](https://github.com/LinusU) | +| 1 | [architectcodes](https://github.com/architectcodes) | -## Author +### Author **Jon Schlinkert** -+ [github/jonschlinkert](https://github.com/jonschlinkert) -+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) +* [GitHub Profile](https://github.com/jonschlinkert) +* [Twitter Profile](https://twitter.com/jonschlinkert) +* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert) -## License +### License -Copyright (c) 2015 Jon Schlinkert -Released under the MIT license. +Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert). +Released under the [MIT License](LICENSE). *** -_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on May 06, 2015._ +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on August 19, 2018._ \ No newline at end of file diff --git a/node_modules/repeat-element/index.js b/node_modules/repeat-element/index.js index 0ad45ab46..06a8d01d9 100644 --- a/node_modules/repeat-element/index.js +++ b/node_modules/repeat-element/index.js @@ -1,7 +1,7 @@ /*! * repeat-element * - * Copyright (c) 2015 Jon Schlinkert. + * Copyright (c) 2015-present, Jon Schlinkert. * Licensed under the MIT license. */ diff --git a/node_modules/repeat-element/package.json b/node_modules/repeat-element/package.json index 5b359b098..7f12ef98c 100644 --- a/node_modules/repeat-element/package.json +++ b/node_modules/repeat-element/package.json @@ -1,23 +1,17 @@ { "name": "repeat-element", "description": "Create an array by repeating the given value n times.", - "version": "1.1.2", + "version": "1.1.3", "homepage": "https://github.com/jonschlinkert/repeat-element", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, - "repository": { - "type": "git", - "url": "git://github.com/jonschlinkert/repeat-element.git" - }, + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/repeat-element", "bugs": { "url": "https://github.com/jonschlinkert/repeat-element/issues" }, - "license": { - "type": "MIT", - "url": "https://github.com/jonschlinkert/repeat-element/blob/master/LICENSE" - }, + "license": "MIT", + "files": [ + "index.js" + ], "main": "index.js", "engines": { "node": ">=0.10.0" @@ -25,20 +19,31 @@ "scripts": { "test": "mocha" }, - "files": [ - "index.js" - ], + "devDependencies": { + "benchmarked": "^2.0.0", + "chalk": "^2.4.1", + "glob": "^7.1.2", + "gulp-format-md": "^1.0.0", + "minimist": "^1.2.0", + "mocha": "^3.5.3" + }, "keywords": [ "array", "element", "repeat", "string" ], - "devDependencies": { - "benchmarked": "^0.1.4", - "chalk": "^1.0.0", - "glob": "^5.0.5", - "minimist": "^1.1.1", - "mocha": "^2.2.4" + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } } } -- cgit v1.2.3