feat: adding linter for commits
This commit is contained in:
21
node_modules/@types/minimist/LICENSE
generated
vendored
Executable file
21
node_modules/@types/minimist/LICENSE
generated
vendored
Executable file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
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
|
16
node_modules/@types/minimist/README.md
generated
vendored
Executable file
16
node_modules/@types/minimist/README.md
generated
vendored
Executable file
@ -0,0 +1,16 @@
|
||||
# Installation
|
||||
> `npm install --save @types/minimist`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for minimist (https://github.com/substack/minimist).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist.
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Wed, 07 Jul 2021 00:01:41 GMT
|
||||
* Dependencies: none
|
||||
* Global values: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Bart van der Schoor](https://github.com/Bartvds), [Necroskillz](https://github.com/Necroskillz), [kamranayub](https://github.com/kamranayub), and [Piotr Błażejewicz](https://github.com/peterblazejewicz).
|
95
node_modules/@types/minimist/index.d.ts
generated
vendored
Executable file
95
node_modules/@types/minimist/index.d.ts
generated
vendored
Executable file
@ -0,0 +1,95 @@
|
||||
// Type definitions for minimist 1.2
|
||||
// Project: https://github.com/substack/minimist
|
||||
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
||||
// Necroskillz <https://github.com/Necroskillz>
|
||||
// kamranayub <https://github.com/kamranayub>
|
||||
// Piotr Błażejewicz <https://github.com/peterblazejewicz>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
/**
|
||||
* Return an argument object populated with the array arguments from args
|
||||
*
|
||||
* @param [args] An optional argument array (typically `process.argv.slice(2)`)
|
||||
* @param [opts] An optional options object to customize the parsing
|
||||
*/
|
||||
declare function minimist(args?: string[], opts?: minimist.Opts): minimist.ParsedArgs;
|
||||
|
||||
/**
|
||||
* Return an argument object populated with the array arguments from args. Strongly-typed
|
||||
* to be the intersect of type T with minimist.ParsedArgs.
|
||||
*
|
||||
* `T` The type that will be intersected with minimist.ParsedArgs to represent the argument object
|
||||
*
|
||||
* @param [args] An optional argument array (typically `process.argv.slice(2)`)
|
||||
* @param [opts] An optional options object to customize the parsing
|
||||
*/
|
||||
declare function minimist<T>(args?: string[], opts?: minimist.Opts): T & minimist.ParsedArgs;
|
||||
|
||||
/**
|
||||
* Return an argument object populated with the array arguments from args. Strongly-typed
|
||||
* to be the the type T which should extend minimist.ParsedArgs
|
||||
*
|
||||
* `T` The type that extends minimist.ParsedArgs and represents the argument object
|
||||
*
|
||||
* @param [args] An optional argument array (typically `process.argv.slice(2)`)
|
||||
* @param [opts] An optional options object to customize the parsing
|
||||
*/
|
||||
declare function minimist<T extends minimist.ParsedArgs>(args?: string[], opts?: minimist.Opts): T;
|
||||
|
||||
declare namespace minimist {
|
||||
interface Opts {
|
||||
/**
|
||||
* A string or array of strings argument names to always treat as strings
|
||||
*/
|
||||
string?: string | string[] | undefined;
|
||||
|
||||
/**
|
||||
* A boolean, string or array of strings to always treat as booleans. If true will treat
|
||||
* all double hyphenated arguments without equals signs as boolean (e.g. affects `--foo`, not `-f` or `--foo=bar`)
|
||||
*/
|
||||
boolean?: boolean | string | string[] | undefined;
|
||||
|
||||
/**
|
||||
* An object mapping string names to strings or arrays of string argument names to use as aliases
|
||||
*/
|
||||
alias?: { [key: string]: string | string[] } | undefined;
|
||||
|
||||
/**
|
||||
* An object mapping string argument names to default values
|
||||
*/
|
||||
default?: { [key: string]: any } | undefined;
|
||||
|
||||
/**
|
||||
* When true, populate argv._ with everything after the first non-option
|
||||
*/
|
||||
stopEarly?: boolean | undefined;
|
||||
|
||||
/**
|
||||
* A function which is invoked with a command line parameter not defined in the opts
|
||||
* configuration object. If the function returns false, the unknown option is not added to argv
|
||||
*/
|
||||
unknown?: ((arg: string) => boolean) | undefined;
|
||||
|
||||
/**
|
||||
* When true, populate argv._ with everything before the -- and argv['--'] with everything after the --.
|
||||
* Note that with -- set, parsing for arguments still stops after the `--`.
|
||||
*/
|
||||
'--'?: boolean | undefined;
|
||||
}
|
||||
|
||||
interface ParsedArgs {
|
||||
[arg: string]: any;
|
||||
|
||||
/**
|
||||
* If opts['--'] is true, populated with everything after the --
|
||||
*/
|
||||
'--'?: string[] | undefined;
|
||||
|
||||
/**
|
||||
* Contains all the arguments that didn't have an option associated with them
|
||||
*/
|
||||
_: string[];
|
||||
}
|
||||
}
|
||||
|
||||
export = minimist;
|
40
node_modules/@types/minimist/package.json
generated
vendored
Executable file
40
node_modules/@types/minimist/package.json
generated
vendored
Executable file
@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "@types/minimist",
|
||||
"version": "1.2.2",
|
||||
"description": "TypeScript definitions for minimist",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Bart van der Schoor",
|
||||
"url": "https://github.com/Bartvds",
|
||||
"githubUsername": "Bartvds"
|
||||
},
|
||||
{
|
||||
"name": "Necroskillz",
|
||||
"url": "https://github.com/Necroskillz",
|
||||
"githubUsername": "Necroskillz"
|
||||
},
|
||||
{
|
||||
"name": "kamranayub",
|
||||
"url": "https://github.com/kamranayub",
|
||||
"githubUsername": "kamranayub"
|
||||
},
|
||||
{
|
||||
"name": "Piotr Błażejewicz",
|
||||
"url": "https://github.com/peterblazejewicz",
|
||||
"githubUsername": "peterblazejewicz"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/minimist"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"typesPublisherContentHash": "9032205d52417d0f537f1e52af6f7ac447acb4b87dca0ab5840b83ec7818232e",
|
||||
"typeScriptVersion": "3.6"
|
||||
}
|
21
node_modules/@types/normalize-package-data/LICENSE
generated
vendored
Executable file
21
node_modules/@types/normalize-package-data/LICENSE
generated
vendored
Executable file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
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
|
66
node_modules/@types/normalize-package-data/README.md
generated
vendored
Executable file
66
node_modules/@types/normalize-package-data/README.md
generated
vendored
Executable file
@ -0,0 +1,66 @@
|
||||
# Installation
|
||||
> `npm install --save @types/normalize-package-data`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for normalize-package-data (https://github.com/npm/normalize-package-data#readme).
|
||||
|
||||
# Details
|
||||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data.
|
||||
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data/index.d.ts)
|
||||
````ts
|
||||
// Type definitions for normalize-package-data 2.4
|
||||
// Project: https://github.com/npm/normalize-package-data#readme
|
||||
// Definitions by: Jeff Dickey <https://github.com/jdxcode>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
export = normalize;
|
||||
|
||||
declare function normalize(data: normalize.Input, warn?: normalize.WarnFn, strict?: boolean): void;
|
||||
declare function normalize(data: normalize.Input, strict?: boolean): void;
|
||||
|
||||
declare namespace normalize {
|
||||
type WarnFn = (msg: string) => void;
|
||||
interface Input {[k: string]: any; }
|
||||
|
||||
interface Person {
|
||||
name?: string | undefined;
|
||||
email?: string | undefined;
|
||||
url?: string | undefined;
|
||||
}
|
||||
|
||||
interface Package {
|
||||
[k: string]: any;
|
||||
name: string;
|
||||
version: string;
|
||||
files?: string[] | undefined;
|
||||
bin?: {[k: string]: string } | undefined;
|
||||
man?: string[] | undefined;
|
||||
keywords?: string[] | undefined;
|
||||
author?: Person | undefined;
|
||||
maintainers?: Person[] | undefined;
|
||||
contributors?: Person[] | undefined;
|
||||
bundleDependencies?: {[name: string]: string; } | undefined;
|
||||
dependencies?: {[name: string]: string; } | undefined;
|
||||
devDependencies?: {[name: string]: string; } | undefined;
|
||||
optionalDependencies?: {[name: string]: string; } | undefined;
|
||||
description?: string | undefined;
|
||||
engines?: {[type: string]: string } | undefined;
|
||||
license?: string | undefined;
|
||||
repository?: { type: string, url: string } | undefined;
|
||||
bugs?: { url: string, email?: string | undefined } | { url?: string | undefined, email: string } | undefined;
|
||||
homepage?: string | undefined;
|
||||
scripts?: {[k: string]: string} | undefined;
|
||||
readme: string;
|
||||
_id: string;
|
||||
}
|
||||
}
|
||||
|
||||
````
|
||||
|
||||
### Additional Details
|
||||
* Last updated: Wed, 07 Jul 2021 16:31:34 GMT
|
||||
* Dependencies: none
|
||||
* Global values: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by [Jeff Dickey](https://github.com/jdxcode).
|
46
node_modules/@types/normalize-package-data/index.d.ts
generated
vendored
Executable file
46
node_modules/@types/normalize-package-data/index.d.ts
generated
vendored
Executable file
@ -0,0 +1,46 @@
|
||||
// Type definitions for normalize-package-data 2.4
|
||||
// Project: https://github.com/npm/normalize-package-data#readme
|
||||
// Definitions by: Jeff Dickey <https://github.com/jdxcode>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
export = normalize;
|
||||
|
||||
declare function normalize(data: normalize.Input, warn?: normalize.WarnFn, strict?: boolean): void;
|
||||
declare function normalize(data: normalize.Input, strict?: boolean): void;
|
||||
|
||||
declare namespace normalize {
|
||||
type WarnFn = (msg: string) => void;
|
||||
interface Input {[k: string]: any; }
|
||||
|
||||
interface Person {
|
||||
name?: string | undefined;
|
||||
email?: string | undefined;
|
||||
url?: string | undefined;
|
||||
}
|
||||
|
||||
interface Package {
|
||||
[k: string]: any;
|
||||
name: string;
|
||||
version: string;
|
||||
files?: string[] | undefined;
|
||||
bin?: {[k: string]: string } | undefined;
|
||||
man?: string[] | undefined;
|
||||
keywords?: string[] | undefined;
|
||||
author?: Person | undefined;
|
||||
maintainers?: Person[] | undefined;
|
||||
contributors?: Person[] | undefined;
|
||||
bundleDependencies?: {[name: string]: string; } | undefined;
|
||||
dependencies?: {[name: string]: string; } | undefined;
|
||||
devDependencies?: {[name: string]: string; } | undefined;
|
||||
optionalDependencies?: {[name: string]: string; } | undefined;
|
||||
description?: string | undefined;
|
||||
engines?: {[type: string]: string } | undefined;
|
||||
license?: string | undefined;
|
||||
repository?: { type: string, url: string } | undefined;
|
||||
bugs?: { url: string, email?: string | undefined } | { url?: string | undefined, email: string } | undefined;
|
||||
homepage?: string | undefined;
|
||||
scripts?: {[k: string]: string} | undefined;
|
||||
readme: string;
|
||||
_id: string;
|
||||
}
|
||||
}
|
25
node_modules/@types/normalize-package-data/package.json
generated
vendored
Executable file
25
node_modules/@types/normalize-package-data/package.json
generated
vendored
Executable file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "@types/normalize-package-data",
|
||||
"version": "2.4.1",
|
||||
"description": "TypeScript definitions for normalize-package-data",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Jeff Dickey",
|
||||
"url": "https://github.com/jdxcode",
|
||||
"githubUsername": "jdxcode"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"types": "index.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
||||
"directory": "types/normalize-package-data"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"typesPublisherContentHash": "10653410655e204616118acfbe2900dc09227bc3a80c532a93d44b46be54db36",
|
||||
"typeScriptVersion": "3.6"
|
||||
}
|
21
node_modules/@types/parse-json/LICENSE
generated
vendored
Normal file
21
node_modules/@types/parse-json/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
|
||||
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
|
16
node_modules/@types/parse-json/README.md
generated
vendored
Normal file
16
node_modules/@types/parse-json/README.md
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
# Installation
|
||||
> `npm install --save @types/parse-json`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for parse-json (https://github.com/sindresorhus/parse-json).
|
||||
|
||||
# Details
|
||||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json
|
||||
|
||||
Additional Details
|
||||
* Last updated: Tue, 14 Nov 2017 00:30:05 GMT
|
||||
* Dependencies: none
|
||||
* Global values: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by mrmlnc <https://github.com/mrmlnc>.
|
9
node_modules/@types/parse-json/index.d.ts
generated
vendored
Normal file
9
node_modules/@types/parse-json/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
// Type definitions for parse-json 4.0
|
||||
// Project: https://github.com/sindresorhus/parse-json
|
||||
// Definitions by: mrmlnc <https://github.com/mrmlnc>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
declare function parseJson(input: string | null, filepath?: string): any;
|
||||
declare function parseJson(input: string | null, reviver: (key: any, value: any) => any, filepath?: string): any;
|
||||
|
||||
export = parseJson;
|
22
node_modules/@types/parse-json/package.json
generated
vendored
Normal file
22
node_modules/@types/parse-json/package.json
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "@types/parse-json",
|
||||
"version": "4.0.0",
|
||||
"description": "TypeScript definitions for parse-json",
|
||||
"license": "MIT",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "mrmlnc",
|
||||
"url": "https://github.com/mrmlnc",
|
||||
"githubUsername": "mrmlnc"
|
||||
}
|
||||
],
|
||||
"main": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"
|
||||
},
|
||||
"scripts": {},
|
||||
"dependencies": {},
|
||||
"typesPublisherContentHash": "68b3120a3ffa0ae0c978a90b74a1e50adc0340a9d11f17cc1efb7bf2186e7751",
|
||||
"typeScriptVersion": "2.0"
|
||||
}
|
Reference in New Issue
Block a user