chore(package): re-init package with commitizen and standard-release

This commit is contained in:
Pavel Pertsev
2018-05-16 12:54:46 +03:00
parent cb4e7a5643
commit eaf2328575
10640 changed files with 609660 additions and 117 deletions

9
node_modules/text-extensions/license generated vendored Normal file
View File

@@ -0,0 +1,9 @@
MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
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.

36
node_modules/text-extensions/package.json generated vendored Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "text-extensions",
"version": "1.7.0",
"description": "List of text file extensions",
"license": "MIT",
"repository": "sindresorhus/text-extensions",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"main": "text-extensions.json",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "ava"
},
"files": [
"text-extensions.json"
],
"keywords": [
"text",
"ascii",
"ext",
"extensions",
"extension",
"file",
"json",
"list",
"array"
],
"devDependencies": {
"ava": "*"
}
}

33
node_modules/text-extensions/readme.md generated vendored Normal file
View File

@@ -0,0 +1,33 @@
# text-extensions [![Build Status](https://travis-ci.org/sindresorhus/text-extensions.svg?branch=master)](https://travis-ci.org/sindresorhus/text-extensions)
> List of text file extensions
The list is just a [JSON file](text-extensions.json) and can be used wherever.
## Install
```
$ npm install text-extensions
```
## Usage
```js
const textExtensions = require('text-extensions');
console.log(textExtensions);
//=> ['asp', 'aspx', ...]
```
## Related
- [is-text-path](https://github.com/sindresorhus/is-text-path) - Check if a filepath is a text file
- [binary-extensions](https://github.com/sindresorhus/binary-extensions) - List of binary file extensions
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)

146
node_modules/text-extensions/text-extensions.json generated vendored Normal file
View File

@@ -0,0 +1,146 @@
[
"applescript",
"asp",
"aspx",
"atom",
"bashrc",
"bat",
"bbcolors",
"bib",
"bowerrc",
"c",
"cbl",
"cc",
"cfc",
"cfg",
"cfm",
"cmd",
"cnf",
"cob",
"coffee",
"conf",
"cpp",
"cson",
"css",
"csslintrc",
"csv",
"curlrc",
"cxx",
"diff",
"eco",
"editorconfig",
"ejs",
"emacs",
"eml",
"erb",
"erl",
"eslintignore",
"eslintrc",
"gemrc",
"gitattributes",
"gitconfig",
"gitignore",
"go",
"gvimrc",
"h",
"haml",
"hbs",
"hgignore",
"hpp",
"htaccess",
"htm",
"html",
"iced",
"ini",
"ino",
"irbrc",
"itermcolors",
"jade",
"js",
"jscsrc",
"jshintignore",
"jshintrc",
"json",
"jsonld",
"jsx",
"less",
"log",
"ls",
"m",
"markdown",
"md",
"mdown",
"mdwn",
"mht",
"mhtml",
"mjs",
"mkd",
"mkdn",
"mkdown",
"nfo",
"npmignore",
"npmrc",
"nvmrc",
"patch",
"pbxproj",
"pch",
"php",
"phtml",
"pl",
"pm",
"properties",
"py",
"rb",
"rdoc",
"rdoc_options",
"ron",
"rss",
"rst",
"rtf",
"rvmrc",
"sass",
"scala",
"scss",
"seestyle",
"sh",
"sls",
"sql",
"sss",
"strings",
"styl",
"stylus",
"sub",
"sublime-build",
"sublime-commands",
"sublime-completions",
"sublime-keymap",
"sublime-macro",
"sublime-menu",
"sublime-project",
"sublime-settings",
"sublime-workspace",
"svg",
"terminal",
"tex",
"text",
"textile",
"tmLanguage",
"tmTheme",
"ts",
"tsv",
"tsx",
"txt",
"vbs",
"vim",
"viminfo",
"vimrc",
"webapp",
"xht",
"xhtml",
"xml",
"xsl",
"yaml",
"yml",
"zsh",
"zshrc"
]