This commit is contained in:
2016-06-18 00:24:31 +02:00
parent f6eed87e45
commit 6c50d2e113
234 changed files with 18451 additions and 0 deletions

21
node_modules/typings-global/LICENSE generated vendored Normal file
View File

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2016 Push.Rocks
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.

2
node_modules/typings-global/README.md generated vendored Normal file
View File

@ -0,0 +1,2 @@
# typings-global
most used global typings as global package in most recent version.

1
node_modules/typings-global/index.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = function(){};

87
node_modules/typings-global/package.json generated vendored Normal file
View File

@ -0,0 +1,87 @@
{
"_args": [
[
{
"name": "typings-global",
"raw": "typings-global@^1.0.3",
"rawSpec": "^1.0.3",
"scope": null,
"spec": ">=1.0.3 <2.0.0",
"type": "range"
},
"/home/philkunz/gitlab/pushrocks/smartdrive/node_modules/npmts-g"
]
],
"_from": "typings-global@>=1.0.3 <2.0.0",
"_id": "typings-global@1.0.3",
"_inCache": true,
"_installable": true,
"_location": "/typings-global",
"_nodeVersion": "4.4.4",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/typings-global-1.0.3.tgz_1463983867175_0.38450356968678534"
},
"_npmUser": {
"email": "npm@lossless.digital",
"name": "lossless"
},
"_npmVersion": "3.8.9",
"_phantomChildren": {},
"_requested": {
"name": "typings-global",
"raw": "typings-global@^1.0.3",
"rawSpec": "^1.0.3",
"scope": null,
"spec": ">=1.0.3 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/npmts-g"
],
"_resolved": "https://registry.npmjs.org/typings-global/-/typings-global-1.0.3.tgz",
"_shasum": "98684d59e39f72d3ccff1fdf181d79e20a5e6b1b",
"_shrinkwrap": null,
"_spec": "typings-global@^1.0.3",
"_where": "/home/philkunz/gitlab/pushrocks/smartdrive/node_modules/npmts-g",
"author": {
"name": "Lossless GmbH"
},
"bugs": {
"url": "https://github.com/pushrocks/typings-global/issues"
},
"dependencies": {},
"description": "most used global typings as global package in most recent version.",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "98684d59e39f72d3ccff1fdf181d79e20a5e6b1b",
"tarball": "https://registry.npmjs.org/typings-global/-/typings-global-1.0.3.tgz"
},
"gitHead": "0e30bc43a1e32a6112e13c51152c9dc39ce4fed9",
"homepage": "https://github.com/pushrocks/typings-global#readme",
"keywords": [
"global",
"typings"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"email": "npm@lossless.digital",
"name": "lossless"
}
],
"name": "typings-global",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/pushrocks/typings-global.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"typings": "typings/custom.d.ts",
"version": "1.0.3"
}

10
node_modules/typings-global/typings.json generated vendored Normal file
View File

@ -0,0 +1,10 @@
{
"name": "typings-global",
"dependencies": {},
"globalDependencies": {
"colors": "registry:dt/colors#0.6.0-1+20160501135139",
"mocha": "registry:dt/mocha#2.2.5+20160317120654",
"node": "registry:dt/node#6.0.0+20160523035754",
"vinyl": "registry:dt/vinyl#1.1.0+20160316155526"
}
}

3
node_modules/typings-global/typings/custom.d.ts generated vendored Normal file
View File

@ -0,0 +1,3 @@
import "./globals/colors/index.d.ts";
import "./globals/node/index.d.ts";
import "./globals/vinyl/index.d.ts";

View File

@ -0,0 +1,123 @@
// Generated by typings
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/58f922ff73c04d28af44b56a02b6adc899c7598e/colors/colors.d.ts
declare module "colors" {
interface Color {
(text: string): string;
black: Color;
red: Color;
green: Color;
yellow: Color;
blue: Color;
magenta: Color;
cyan: Color;
white: Color;
gray: Color;
grey: Color;
bgBlack: Color;
bgRed: Color;
bgGreen: Color;
bgYellow: Color;
bgBlue: Color;
bgMagenta: Color;
bgCyan: Color;
bgWhite: Color;
reset: Color;
bold: Color;
dim: Color;
italic: Color;
underline: Color;
inverse: Color;
hidden: Color;
strikethrough: Color;
rainbow: Color;
zebra: Color;
america: Color;
trap: Color;
random: Color;
zalgo: Color;
}
namespace e {
export function setTheme(theme:any): void;
export var black: Color;
export var red: Color;
export var green: Color;
export var yellow: Color;
export var blue: Color;
export var magenta: Color;
export var cyan: Color;
export var white: Color;
export var gray: Color;
export var grey: Color;
export var bgBlack: Color;
export var bgRed: Color;
export var bgGreen: Color;
export var bgYellow: Color;
export var bgBlue: Color;
export var bgMagenta: Color;
export var bgCyan: Color;
export var bgWhite: Color;
export var reset: Color;
export var bold: Color;
export var dim: Color;
export var italic: Color;
export var underline: Color;
export var inverse: Color;
export var hidden: Color;
export var strikethrough: Color;
export var rainbow: Color;
export var zebra: Color;
export var america: Color;
export var trap: Color;
export var random: Color;
export var zalgo: Color;
}
export = e;
}
interface String {
black: string;
red: string;
green: string;
yellow: string;
blue: string;
magenta: string;
cyan: string;
white: string;
gray: string;
grey: string;
bgBlack: string;
bgRed: string;
bgGreen: string;
bgYellow: string;
bgBlue: string;
bgMagenta: string;
bgCyan: string;
bgWhite: string;
reset: string;
bold: string;
dim: string;
italic: string;
underline: string;
inverse: string;
hidden: string;
strikethrough: string;
rainbow: string;
zebra: string;
america: string;
trap: string;
random: string;
zalgo: string;
}

View File

@ -0,0 +1,8 @@
{
"resolution": "main",
"tree": {
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/58f922ff73c04d28af44b56a02b6adc899c7598e/colors/colors.d.ts",
"raw": "registry:dt/colors#0.6.0-1+20160501135139",
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/58f922ff73c04d28af44b56a02b6adc899c7598e/colors/colors.d.ts"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,8 @@
{
"resolution": "main",
"tree": {
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/d8b8632c611c9c307431d169f425d08bdb8b6a2f/node/node.d.ts",
"raw": "registry:dt/node#6.0.0+20160523035754",
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/d8b8632c611c9c307431d169f425d08bdb8b6a2f/node/node.d.ts"
}
}

View File

@ -0,0 +1,142 @@
// Generated by typings
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/vinyl/vinyl.d.ts
declare module "vinyl" {
import fs = require("fs");
/**
* A virtual file format.
*/
class File {
constructor(options?: {
/**
* Default: process.cwd()
*/
cwd?: string;
/**
* Used for relative pathing. Typically where a glob starts.
*/
base?: string;
/**
* Full path to the file.
*/
path?: string;
/**
* Path history. Has no effect if options.path is passed.
*/
history?: string[];
/**
* The result of an fs.stat call. See fs.Stats for more information.
*/
stat?: fs.Stats;
/**
* File contents.
* Type: Buffer, Stream, or null
*/
contents?: Buffer | NodeJS.ReadWriteStream;
});
/**
* Default: process.cwd()
*/
public cwd: string;
/**
* Used for relative pathing. Typically where a glob starts.
*/
public dirname: string;
public basename: string;
public base: string;
/**
* Full path to the file.
*/
public path: string;
public stat: fs.Stats;
/**
* Gets and sets stem (filename without suffix) for the file path.
*/
public stem: string;
/**
* Gets and sets path.extname for the file path
*/
public extname: string;
/**
* Array of path values the file object has had
*/
public history: string[];
/**
* Type: Buffer|Stream|null (Default: null)
*/
public contents: Buffer | NodeJS.ReadableStream;
/**
* Returns path.relative for the file base and file path.
* Example:
* var file = new File({
* cwd: "/",
* base: "/test/",
* path: "/test/file.js"
* });
* console.log(file.relative); // file.js
*/
public relative: string;
/**
* Returns true if file.contents is a Buffer.
*/
public isBuffer(): boolean;
/**
* Returns true if file.contents is a Stream.
*/
public isStream(): boolean;
/**
* Returns true if file.contents is null.
*/
public isNull(): boolean;
/**
* Returns a new File object with all attributes cloned. Custom attributes are deep-cloned.
*/
public clone(opts?: { contents?: boolean, deep?:boolean }): File;
/**
* If file.contents is a Buffer, it will write it to the stream.
* If file.contents is a Stream, it will pipe it to the stream.
* If file.contents is null, it will do nothing.
*/
public pipe<T extends NodeJS.ReadWriteStream>(
stream: T,
opts?: {
/**
* If false, the destination stream will not be ended (same as node core).
*/
end?: boolean;
}): T;
/**
* Returns a pretty String interpretation of the File. Useful for console.log.
*/
public inspect(): string;
/**
* Checks if a given object is a vinyl file.
*/
public static isVinyl(obj: any): boolean;
}
export = File;
}

View File

@ -0,0 +1,8 @@
{
"resolution": "main",
"tree": {
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/vinyl/vinyl.d.ts",
"raw": "registry:dt/vinyl#1.1.0+20160316155526",
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/56295f5058cac7ae458540423c50ac2dcf9fc711/vinyl/vinyl.d.ts"
}
}