Template Upload
This commit is contained in:
21
node_modules/filename-regex/LICENSE
generated
vendored
Normal file
21
node_modules/filename-regex/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014-2015, 2017, 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.
|
63
node_modules/filename-regex/README.md
generated
vendored
Normal file
63
node_modules/filename-regex/README.md
generated
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
# filename-regex [](https://www.npmjs.com/package/filename-regex) [](https://npmjs.org/package/filename-regex) [](https://npmjs.org/package/filename-regex) [](https://travis-ci.org/regexhq/filename-regex)
|
||||
|
||||
> Regular expression for matching file names, with or without extension.
|
||||
|
||||
## Install
|
||||
|
||||
Install with [npm](https://www.npmjs.com/):
|
||||
|
||||
```sh
|
||||
$ npm install --save filename-regex
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var regex = require('filename-regex');
|
||||
|
||||
'a/b/c/d.min.js'.match(regex());
|
||||
//=> match[0] = 'd.min.js'
|
||||
|
||||
'a/b/c/.dotfile'.match(regex());
|
||||
//=> match[0] = '.dotfile'
|
||||
```
|
||||
|
||||
## About
|
||||
|
||||
### Contributing
|
||||
|
||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||
|
||||
### Building docs
|
||||
|
||||
_(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.)_
|
||||
|
||||
To generate the readme, run the following command:
|
||||
|
||||
```sh
|
||||
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||
```
|
||||
|
||||
### 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
|
||||
```
|
||||
|
||||
### Author
|
||||
|
||||
**Jon Schlinkert**
|
||||
|
||||
* [github/jonschlinkert](https://github.com/jonschlinkert)
|
||||
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
|
||||
|
||||
### License
|
||||
|
||||
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||
Released under the [MIT License](LICENSE).
|
||||
|
||||
***
|
||||
|
||||
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.3, on April 28, 2017._
|
10
node_modules/filename-regex/index.js
generated
vendored
Normal file
10
node_modules/filename-regex/index.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
/*!
|
||||
* filename-regex <https://github.com/regexps/filename-regex>
|
||||
*
|
||||
* Copyright (c) 2014-2015, Jon Schlinkert
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
module.exports = function filenameRegex() {
|
||||
return /([^\\\/]+)$/;
|
||||
};
|
112
node_modules/filename-regex/package.json
generated
vendored
Normal file
112
node_modules/filename-regex/package.json
generated
vendored
Normal file
@ -0,0 +1,112 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"filename-regex@^2.0.0",
|
||||
"C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\micromatch"
|
||||
]
|
||||
],
|
||||
"_from": "filename-regex@>=2.0.0-0 <3.0.0-0",
|
||||
"_id": "filename-regex@2.0.1",
|
||||
"_inCache": true,
|
||||
"_location": "/filename-regex",
|
||||
"_nodeVersion": "6.10.1",
|
||||
"_npmOperationalInternal": {
|
||||
"host": "packages-18-east.internal.npmjs.com",
|
||||
"tmp": "tmp/filename-regex-2.0.1.tgz_1493403379598_0.7071489882655442"
|
||||
},
|
||||
"_npmUser": {
|
||||
"email": "brian.woodward@gmail.com",
|
||||
"name": "doowb"
|
||||
},
|
||||
"_npmVersion": "3.10.10",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"name": "filename-regex",
|
||||
"raw": "filename-regex@^2.0.0",
|
||||
"rawSpec": "^2.0.0",
|
||||
"scope": null,
|
||||
"spec": ">=2.0.0-0 <3.0.0-0",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/micromatch"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz",
|
||||
"_shasum": "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "filename-regex@^2.0.0",
|
||||
"_where": "C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\micromatch",
|
||||
"author": {
|
||||
"name": "Jon Schlinkert",
|
||||
"url": "https://github.com/jonschlinkert"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/regexhq/filename-regex/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Regular expression for matching file names, with or without extension.",
|
||||
"devDependencies": {
|
||||
"gulp-format-md": "^0.1.12"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"shasum": "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26",
|
||||
"tarball": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"gitHead": "821fec482acdb1ce3f23a804ce8a86724d02b4e6",
|
||||
"homepage": "https://github.com/regexhq/filename-regex",
|
||||
"installable": true,
|
||||
"keywords": [
|
||||
"basename",
|
||||
"file",
|
||||
"filename",
|
||||
"filepath",
|
||||
"match",
|
||||
"name",
|
||||
"path",
|
||||
"regex",
|
||||
"regexp",
|
||||
"regular expression"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "doowb",
|
||||
"email": "brian.woodward@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "jonschlinkert",
|
||||
"email": "github@sellside.com"
|
||||
}
|
||||
],
|
||||
"name": "filename-regex",
|
||||
"optionalDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/regexhq/filename-regex.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"verb": {
|
||||
"layout": "default",
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
},
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"toc": false
|
||||
},
|
||||
"version": "2.0.1"
|
||||
}
|
Reference in New Issue
Block a user