Completely updated React, fixed #11, (hopefully)
This commit is contained in:
31
goTorrentWebUI/node_modules/css-loader/CHANGELOG.md
generated
vendored
31
goTorrentWebUI/node_modules/css-loader/CHANGELOG.md
generated
vendored
@@ -2,6 +2,37 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
<a name="0.28.10"></a>
|
||||
## [0.28.10](https://github.com/webpack-contrib/css-loader/compare/v0.28.9...v0.28.10) (2018-02-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **getLocalIdent:** add `rootContext` support (`webpack >= v4.0.0`) ([#681](https://github.com/webpack-contrib/css-loader/issues/681)) ([9f876d2](https://github.com/webpack-contrib/css-loader/commit/9f876d2))
|
||||
|
||||
|
||||
|
||||
<a name="0.28.9"></a>
|
||||
## [0.28.9](https://github.com/webpack-contrib/css-loader/compare/v0.28.8...v0.28.9) (2018-01-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* ignore invalid URLs (`url()`) ([#663](https://github.com/webpack-contrib/css-loader/issues/663)) ([d1d8221](https://github.com/webpack-contrib/css-loader/commit/d1d8221))
|
||||
|
||||
|
||||
|
||||
<a name="0.28.8"></a>
|
||||
## [0.28.8](https://github.com/webpack-contrib/css-loader/compare/v0.28.7...v0.28.8) (2018-01-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **loader:** correctly check if source map is `undefined` ([#641](https://github.com/webpack-contrib/css-loader/issues/641)) ([0dccfa9](https://github.com/webpack-contrib/css-loader/commit/0dccfa9))
|
||||
* proper URL escaping and wrapping (`url()`) ([#627](https://github.com/webpack-contrib/css-loader/issues/627)) ([8897d44](https://github.com/webpack-contrib/css-loader/commit/8897d44))
|
||||
|
||||
|
||||
|
||||
<a name="0.28.7"></a>
|
||||
## [0.28.7](https://github.com/webpack/css-loader/compare/v0.28.6...v0.28.7) (2017-08-30)
|
||||
|
||||
|
22
goTorrentWebUI/node_modules/css-loader/README.md
generated
vendored
22
goTorrentWebUI/node_modules/css-loader/README.md
generated
vendored
@@ -94,15 +94,15 @@ It's useful when you, for instance, need to post process the CSS as a string.
|
||||
|
||||
|Name|Type|Default|Description|
|
||||
|:--:|:--:|:-----:|:----------|
|
||||
|**`root`**|`{String}`|`/`|Path to resolve URLs, URLs starting with `/` will not be translated|
|
||||
|**`url`**|`{Boolean}`|`true`| Enable/Disable `url()` handling|
|
||||
|**`alias`**|`{Object}`|`{}`|Create aliases to import certain modules more easily|
|
||||
|**`import`** |`{Boolean}`|`true`| Enable/Disable @import handling|
|
||||
|**`modules`**|`{Boolean}`|`false`|Enable/Disable CSS Modules|
|
||||
|**`minimize`**|`{Boolean\|Object}`|`false`|Enable/Disable minification|
|
||||
|**`sourceMap`**|`{Boolean}`|`false`|Enable/Disable Sourcemaps|
|
||||
|**`camelCase`**|`{Boolean\|String}`|`false`|Export Classnames in CamelCase|
|
||||
|**`importLoaders`**|`{Number}`|`0`|Number of loaders applied before CSS loader|
|
||||
|**[`root`](#root)**|`{String}`|`/`|Path to resolve URLs, URLs starting with `/` will not be translated|
|
||||
|**[`url`](#url)**|`{Boolean}`|`true`| Enable/Disable `url()` handling|
|
||||
|**[`alias`](#alias)**|`{Object}`|`{}`|Create aliases to import certain modules more easily|
|
||||
|**[`import`](#import)** |`{Boolean}`|`true`| Enable/Disable @import handling|
|
||||
|**[`modules`](#modules)**|`{Boolean}`|`false`|Enable/Disable CSS Modules|
|
||||
|**[`minimize`](#minimize)**|`{Boolean\|Object}`|`false`|Enable/Disable minification|
|
||||
|**[`sourceMap`](#sourcemap)**|`{Boolean}`|`false`|Enable/Disable Sourcemaps|
|
||||
|**[`camelCase`](#camelcase)**|`{Boolean\|String}`|`false`|Export Classnames in CamelCase|
|
||||
|**[`importLoaders`](#importloaders)**|`{Number}`|`0`|Number of loaders applied before CSS loader|
|
||||
|**`localIdentName`**|`{String}`|`[hash:base64]`|Configure the generated ident|
|
||||
|
||||
### `root`
|
||||
@@ -141,7 +141,7 @@ url(~module/image.png) => require('module/image.png')
|
||||
|
||||
Rewrite your urls with alias, this is useful when it's hard to change url paths of your input files, for example, when you're using some css / sass files in another package (bootstrap, ratchet, font-awesome, etc.).
|
||||
|
||||
`css-loader`'s `alias` follows the same syntax as webpack's `resolve.alias`, you can see the details at the [resolve docs] (https://webpack.js.org/configuration/resolve/#resolve-alias)
|
||||
`css-loader`'s `alias` follows the same syntax as webpack's `resolve.alias`, you can see the details at the [resolve docs](https://webpack.js.org/configuration/resolve/#resolve-alias)
|
||||
|
||||
**file.scss**
|
||||
```css
|
||||
@@ -419,7 +419,7 @@ The query parameter `importLoaders` allows to configure how many loaders before
|
||||
{
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
importLoaders: 1 // 0 => no loaders (default); 1 => postcss-loader; 2 => postcss-loader, sass-loader
|
||||
importLoaders: 2 // 0 => no loaders (default); 1 => postcss-loader; 2 => postcss-loader, sass-loader
|
||||
}
|
||||
},
|
||||
'postcss-loader',
|
||||
|
11
goTorrentWebUI/node_modules/css-loader/lib/getLocalIdent.js
generated
vendored
11
goTorrentWebUI/node_modules/css-loader/lib/getLocalIdent.js
generated
vendored
@@ -6,8 +6,15 @@ var loaderUtils = require("loader-utils");
|
||||
var path = require("path");
|
||||
|
||||
module.exports = function getLocalIdent(loaderContext, localIdentName, localName, options) {
|
||||
if(!options.context)
|
||||
options.context = loaderContext.options && typeof loaderContext.options.context === "string" ? loaderContext.options.context : loaderContext.context;
|
||||
if(!options.context) {
|
||||
if (loaderContext.rootContext) {
|
||||
options.context = loaderContext.rootContext;
|
||||
} else if (loaderContext.options && typeof loaderContext.options.context === "string") {
|
||||
options.context = loaderContext.options.context;
|
||||
} else {
|
||||
options.context = loaderContext.context;
|
||||
}
|
||||
}
|
||||
var request = path.relative(options.context, loaderContext.resourcePath);
|
||||
options.content = options.hashPrefix + request + "+" + localName;
|
||||
localIdentName = localIdentName.replace(/\[local\]/gi, localName);
|
||||
|
22
goTorrentWebUI/node_modules/css-loader/lib/loader.js
generated
vendored
22
goTorrentWebUI/node_modules/css-loader/lib/loader.js
generated
vendored
@@ -83,7 +83,13 @@ module.exports = function(content, map) {
|
||||
}
|
||||
|
||||
cssAsString = cssAsString.replace(result.importItemRegExpG, importItemMatcher.bind(this));
|
||||
if(query.url !== false) {
|
||||
|
||||
// helper for ensuring valid CSS strings from requires
|
||||
var urlEscapeHelper = "";
|
||||
|
||||
if(query.url !== false && result.urlItems.length > 0) {
|
||||
urlEscapeHelper = "var escape = require(" + loaderUtils.stringifyRequest(this, require.resolve("./url/escape.js")) + ");\n";
|
||||
|
||||
cssAsString = cssAsString.replace(result.urlItemRegExpG, function(item) {
|
||||
var match = result.urlItemRegExp.exec(item);
|
||||
var idx = +match[1];
|
||||
@@ -95,22 +101,21 @@ module.exports = function(content, map) {
|
||||
if(idx > 0) { // idx === 0 is catched by isUrlRequest
|
||||
// in cases like url('webfont.eot?#iefix')
|
||||
urlRequest = url.substr(0, idx);
|
||||
return "\" + require(" + loaderUtils.stringifyRequest(this, urlRequest) + ") + \"" +
|
||||
return "\" + escape(require(" + loaderUtils.stringifyRequest(this, urlRequest) + ")) + \"" +
|
||||
url.substr(idx);
|
||||
}
|
||||
urlRequest = url;
|
||||
return "\" + require(" + loaderUtils.stringifyRequest(this, urlRequest) + ") + \"";
|
||||
return "\" + escape(require(" + loaderUtils.stringifyRequest(this, urlRequest) + ")) + \"";
|
||||
}.bind(this));
|
||||
}
|
||||
|
||||
|
||||
|
||||
var exportJs = compileExports(result, importItemMatcher.bind(this), camelCaseKeys);
|
||||
if (exportJs) {
|
||||
exportJs = "exports.locals = " + exportJs + ";";
|
||||
}
|
||||
|
||||
var moduleJs;
|
||||
if(query.sourceMap && result.map) {
|
||||
if(sourceMap && result.map) {
|
||||
// add a SourceMap
|
||||
map = result.map;
|
||||
if(map.sources) {
|
||||
@@ -127,9 +132,10 @@ module.exports = function(content, map) {
|
||||
}
|
||||
|
||||
// embed runtime
|
||||
callback(null, "exports = module.exports = require(" +
|
||||
callback(null, urlEscapeHelper +
|
||||
"exports = module.exports = require(" +
|
||||
loaderUtils.stringifyRequest(this, require.resolve("./css-base.js")) +
|
||||
")(" + query.sourceMap + ");\n" +
|
||||
")(" + sourceMap + ");\n" +
|
||||
"// imports\n" +
|
||||
importJs + "\n\n" +
|
||||
"// module\n" +
|
||||
|
6
goTorrentWebUI/node_modules/css-loader/lib/processCss.js
generated
vendored
6
goTorrentWebUI/node_modules/css-loader/lib/processCss.js
generated
vendored
@@ -104,10 +104,8 @@ var parserPlugin = postcss.plugin("css-loader-parser", function(options) {
|
||||
break;
|
||||
case "url":
|
||||
if (options.url && item.url.replace(/\s/g, '').length && !/^#/.test(item.url) && (isAlias(item.url) || loaderUtils.isUrlRequest(item.url, options.root))) {
|
||||
// Don't remove quotes around url when contain space
|
||||
if (item.url.indexOf(" ") === -1) {
|
||||
item.stringType = "";
|
||||
}
|
||||
// Strip quotes, they will be re-added if the module needs them
|
||||
item.stringType = "";
|
||||
delete item.innerSpacingBefore;
|
||||
delete item.innerSpacingAfter;
|
||||
var url = item.url;
|
||||
|
16
goTorrentWebUI/node_modules/css-loader/lib/url/escape.js
generated
vendored
Normal file
16
goTorrentWebUI/node_modules/css-loader/lib/url/escape.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
module.exports = function escape(url) {
|
||||
if (typeof url !== 'string') {
|
||||
return url
|
||||
}
|
||||
// If url is already wrapped in quotes, remove them
|
||||
if (/^['"].*['"]$/.test(url)) {
|
||||
url = url.slice(1, -1);
|
||||
}
|
||||
// Should url be wrapped?
|
||||
// See https://drafts.csswg.org/css-values-3/#urls
|
||||
if (/["'() \t\n]/.test(url)) {
|
||||
return '"' + url.replace(/"/g, '\\"').replace(/\n/g, '\\n') + '"'
|
||||
}
|
||||
|
||||
return url
|
||||
}
|
71
goTorrentWebUI/node_modules/css-loader/node_modules/alphanum-sort/package.json
generated
vendored
71
goTorrentWebUI/node_modules/css-loader/node_modules/alphanum-sort/package.json
generated
vendored
@@ -1,29 +1,51 @@
|
||||
{
|
||||
"name": "alphanum-sort",
|
||||
"version": "1.0.2",
|
||||
"description": "Alphanumeric sorting algorithm",
|
||||
"main": "lib/index.js",
|
||||
"files": [
|
||||
"lib"
|
||||
"_args": [
|
||||
[
|
||||
"alphanum-sort@1.0.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "alphanum-sort@1.0.2",
|
||||
"_id": "alphanum-sort@1.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
|
||||
"_location": "/css-loader/alphanum-sort",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "alphanum-sort@1.0.2",
|
||||
"name": "alphanum-sort",
|
||||
"escapedName": "alphanum-sort",
|
||||
"rawSpec": "1.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-minify-params",
|
||||
"/css-loader/postcss-minify-selectors",
|
||||
"/css-loader/postcss-unique-selectors"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
|
||||
"_spec": "1.0.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Bogdan Chadkin",
|
||||
"email": "trysound@yandex.ru"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/TrySound/alphanum-sort/issues"
|
||||
},
|
||||
"description": "Alphanumeric sorting algorithm",
|
||||
"devDependencies": {
|
||||
"eslint": "^1.5.1",
|
||||
"javascript-natural-sort": "^0.7.1",
|
||||
"tap-spec": "^4.1.0",
|
||||
"tape": "^4.2.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "eslint lib test.js && tape test.js | tap-spec"
|
||||
},
|
||||
"author": "Bogdan Chadkin <trysound@yandex.ru>",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/TrySound/alphanum-sort.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/TrySound/alphanum-sort/issues"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://github.com/TrySound/alphanum-sort",
|
||||
"keywords": [
|
||||
"sort",
|
||||
@@ -31,5 +53,16 @@
|
||||
"alphanumeric",
|
||||
"natural",
|
||||
"human"
|
||||
]
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "alphanum-sort",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/TrySound/alphanum-sort.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "eslint lib test.js && tape test.js | tap-spec"
|
||||
},
|
||||
"version": "1.0.2"
|
||||
}
|
||||
|
82
goTorrentWebUI/node_modules/css-loader/node_modules/ansi-regex/package.json
generated
vendored
82
goTorrentWebUI/node_modules/css-loader/node_modules/ansi-regex/package.json
generated
vendored
@@ -1,29 +1,53 @@
|
||||
{
|
||||
"name": "ansi-regex",
|
||||
"version": "2.1.1",
|
||||
"description": "Regular expression for matching ANSI escape codes",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/ansi-regex",
|
||||
"_args": [
|
||||
[
|
||||
"ansi-regex@2.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "ansi-regex@2.1.1",
|
||||
"_id": "ansi-regex@2.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
|
||||
"_location": "/css-loader/ansi-regex",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "ansi-regex@2.1.1",
|
||||
"name": "ansi-regex",
|
||||
"escapedName": "ansi-regex",
|
||||
"rawSpec": "2.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/has-ansi",
|
||||
"/css-loader/strip-ansi"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
|
||||
"_spec": "2.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
|
||||
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/ansi-regex/issues"
|
||||
},
|
||||
"description": "Regular expression for matching ANSI escape codes",
|
||||
"devDependencies": {
|
||||
"ava": "0.17.0",
|
||||
"xo": "0.16.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava --verbose",
|
||||
"view-supported": "node fixtures/view-codes.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/ansi-regex#readme",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
@@ -51,10 +75,34 @@
|
||||
"find",
|
||||
"pattern"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "0.17.0",
|
||||
"xo": "0.16.0"
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
},
|
||||
{
|
||||
"name": "JD Ballard",
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"url": "github.com/qix-"
|
||||
}
|
||||
],
|
||||
"name": "ansi-regex",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/ansi-regex.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava --verbose",
|
||||
"view-supported": "node fixtures/view-codes.js"
|
||||
},
|
||||
"version": "2.1.1",
|
||||
"xo": {
|
||||
"rules": {
|
||||
"guard-for-in": 0,
|
||||
|
73
goTorrentWebUI/node_modules/css-loader/node_modules/ansi-styles/package.json
generated
vendored
73
goTorrentWebUI/node_modules/css-loader/node_modules/ansi-styles/package.json
generated
vendored
@@ -1,27 +1,51 @@
|
||||
{
|
||||
"name": "ansi-styles",
|
||||
"version": "2.2.1",
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/ansi-styles",
|
||||
"_args": [
|
||||
[
|
||||
"ansi-styles@2.2.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "ansi-styles@2.2.1",
|
||||
"_id": "ansi-styles@2.2.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
|
||||
"_location": "/css-loader/ansi-styles",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "ansi-styles@2.2.1",
|
||||
"name": "ansi-styles",
|
||||
"escapedName": "ansi-styles",
|
||||
"rawSpec": "2.2.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.2.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/chalk"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
|
||||
"_spec": "2.2.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/ansi-styles/issues"
|
||||
},
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
@@ -44,7 +68,26 @@
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
}
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
}
|
||||
],
|
||||
"name": "ansi-styles",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "2.2.1"
|
||||
}
|
||||
|
79
goTorrentWebUI/node_modules/css-loader/node_modules/argparse/package.json
generated
vendored
79
goTorrentWebUI/node_modules/css-loader/node_modules/argparse/package.json
generated
vendored
@@ -1,7 +1,58 @@
|
||||
{
|
||||
"name": "argparse",
|
||||
"_args": [
|
||||
[
|
||||
"argparse@1.0.9",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "argparse@1.0.9",
|
||||
"_id": "argparse@1.0.9",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
|
||||
"_location": "/css-loader/argparse",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "argparse@1.0.9",
|
||||
"name": "argparse",
|
||||
"escapedName": "argparse",
|
||||
"rawSpec": "1.0.9",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.9"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/js-yaml"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
|
||||
"_spec": "1.0.9",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"bugs": {
|
||||
"url": "https://github.com/nodeca/argparse/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Eugene Shkuropat"
|
||||
},
|
||||
{
|
||||
"name": "Paul Jacobson"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"sprintf-js": "~1.0.2"
|
||||
},
|
||||
"description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library",
|
||||
"version": "1.0.9",
|
||||
"devDependencies": {
|
||||
"eslint": "^2.13.1",
|
||||
"istanbul": "^0.4.5",
|
||||
"mocha": "^3.1.0",
|
||||
"ndoc": "^5.0.1"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"lib/"
|
||||
],
|
||||
"homepage": "https://github.com/nodeca/argparse#readme",
|
||||
"keywords": [
|
||||
"cli",
|
||||
"parser",
|
||||
@@ -9,26 +60,14 @@
|
||||
"option",
|
||||
"args"
|
||||
],
|
||||
"contributors": [
|
||||
"Eugene Shkuropat",
|
||||
"Paul Jacobson"
|
||||
],
|
||||
"files": [
|
||||
"index.js",
|
||||
"lib/"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": "nodeca/argparse",
|
||||
"name": "argparse",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/nodeca/argparse.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
},
|
||||
"dependencies": {
|
||||
"sprintf-js": "~1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^2.13.1",
|
||||
"istanbul": "^0.4.5",
|
||||
"mocha": "^3.1.0",
|
||||
"ndoc": "^5.0.1"
|
||||
}
|
||||
"version": "1.0.9"
|
||||
}
|
||||
|
528
goTorrentWebUI/node_modules/css-loader/node_modules/autoprefixer/package.json
generated
vendored
528
goTorrentWebUI/node_modules/css-loader/node_modules/autoprefixer/package.json
generated
vendored
@@ -1,17 +1,491 @@
|
||||
{
|
||||
"name": "autoprefixer",
|
||||
"version": "6.7.7",
|
||||
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
|
||||
"keywords": [
|
||||
"autoprefixer",
|
||||
"css",
|
||||
"prefix",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_args": [
|
||||
[
|
||||
"autoprefixer@6.7.7",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "autoprefixer@6.7.7",
|
||||
"_id": "autoprefixer@6.7.7",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=",
|
||||
"_location": "/css-loader/autoprefixer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "autoprefixer@6.7.7",
|
||||
"name": "autoprefixer",
|
||||
"escapedName": "autoprefixer",
|
||||
"rawSpec": "6.7.7",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "6.7.7"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz",
|
||||
"_spec": "6.7.7",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Andrey Sitnik",
|
||||
"email": "andrey@sitnik.ru"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/postcss/autoprefixer/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Aaron",
|
||||
"email": "me@aaron.md"
|
||||
},
|
||||
{
|
||||
"name": "Adam Lynch",
|
||||
"email": "contact@adamlynch.ie"
|
||||
},
|
||||
{
|
||||
"name": "Adonis K",
|
||||
"email": "aklp08@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Adriaan",
|
||||
"email": "https://github.com/harianus"
|
||||
},
|
||||
{
|
||||
"name": "Aleksei Androsov",
|
||||
"email": "aandrosov@yandex-team.ru"
|
||||
},
|
||||
{
|
||||
"name": "Aleksey Shvayka",
|
||||
"email": "shvaikalesh@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Aleks Hudochenkov",
|
||||
"email": "aleks@hudochenkov.com"
|
||||
},
|
||||
{
|
||||
"name": "Alexey Plutalov",
|
||||
"email": "demiazz.py@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Anders Olsen Sandvik",
|
||||
"email": "https://github.com/Andersos"
|
||||
},
|
||||
{
|
||||
"name": "Andreas Lind",
|
||||
"email": "andreas@one.com"
|
||||
},
|
||||
{
|
||||
"name": "Andrew Rhoads"
|
||||
},
|
||||
{
|
||||
"name": "Andrey Deryabin",
|
||||
"email": "deriabin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Andrey Sitnik",
|
||||
"email": "andrey@sitnik.ru"
|
||||
},
|
||||
{
|
||||
"name": "Andrey Taritsyn",
|
||||
"email": "taritsyn@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Andy Trevorah",
|
||||
"email": "a.trevorah@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Anton Khlynovskiy",
|
||||
"email": "subzey@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "aruseni",
|
||||
"email": "aruseni.magiku@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "bernig",
|
||||
"email": "https://github.com/bernig"
|
||||
},
|
||||
{
|
||||
"name": "Bogdan Chadkin",
|
||||
"email": "trysound@yandex.ru"
|
||||
},
|
||||
{
|
||||
"name": "brainopia",
|
||||
"email": "brainopia@evilmartians.com"
|
||||
},
|
||||
{
|
||||
"name": "Brandon Mathis",
|
||||
"email": "brandon@imathis.com"
|
||||
},
|
||||
{
|
||||
"name": "Chad von Nau",
|
||||
"email": "chad@vonnau.com"
|
||||
},
|
||||
{
|
||||
"name": "Chi Vinh Le",
|
||||
"email": "vinh@wikiwi.io"
|
||||
},
|
||||
{
|
||||
"name": "Cory House",
|
||||
"email": "housecor@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Cory Simmons",
|
||||
"email": "cory@mojotech.com"
|
||||
},
|
||||
{
|
||||
"name": "Craig Martin",
|
||||
"email": "https://github.com/craigmichaelmartin"
|
||||
},
|
||||
{
|
||||
"name": "Damon",
|
||||
"email": "motoxer4533@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Daniel Garcia-Carrillo",
|
||||
"email": "garciacarrillo.daniel@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Daniel Tschinder",
|
||||
"email": "daniel@tschinder.de"
|
||||
},
|
||||
{
|
||||
"name": "David Pike",
|
||||
"email": "david@evolution7.com.au"
|
||||
},
|
||||
{
|
||||
"name": "Denis Sokolov",
|
||||
"email": "denis@sokolov.cc"
|
||||
},
|
||||
{
|
||||
"name": "Dominik Porada",
|
||||
"email": "dominik@porada.co"
|
||||
},
|
||||
{
|
||||
"name": "Dominik Schilling",
|
||||
"email": "dominikschilling+git@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "dotch",
|
||||
"email": "ch.weiss@hotmail.de"
|
||||
},
|
||||
{
|
||||
"name": "Efremov Alexey",
|
||||
"email": "lexich121@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "eitanr",
|
||||
"email": "eitanr@wix.com"
|
||||
},
|
||||
{
|
||||
"name": "Erik Sundahl",
|
||||
"email": "esundahl@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Eugene Datsky",
|
||||
"email": "eugene@datsky.ru"
|
||||
},
|
||||
{
|
||||
"name": "Evilebot Tnawi",
|
||||
"email": "sheo13666q@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Forrest York",
|
||||
"email": "https://github.com/badisa"
|
||||
},
|
||||
{
|
||||
"name": "Google Inc."
|
||||
},
|
||||
{
|
||||
"name": "Gregory Eremin",
|
||||
"email": "magnolia_fan@me.com"
|
||||
},
|
||||
{
|
||||
"name": "GU Yiling",
|
||||
"email": "justice360@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Hallvord R. M. Steen",
|
||||
"email": "hallvord@hallvord.com"
|
||||
},
|
||||
{
|
||||
"name": "heady",
|
||||
"email": "https://github.com/heady"
|
||||
},
|
||||
{
|
||||
"name": "Iain Beeston",
|
||||
"email": "iain.beeston@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Igor Adamenko",
|
||||
"email": "https://github.com/igoradamenko"
|
||||
},
|
||||
{
|
||||
"name": "Jack Moore",
|
||||
"email": "hello@jacklmoore.com"
|
||||
},
|
||||
{
|
||||
"name": "Jason Kuhrt",
|
||||
"email": "jasonkuhrt@me.com"
|
||||
},
|
||||
{
|
||||
"name": "Jeff Escalante",
|
||||
"email": "hello@jenius.me"
|
||||
},
|
||||
{
|
||||
"name": "Johannes J. Schmidt",
|
||||
"email": "schmidt@netzmerk.com"
|
||||
},
|
||||
{
|
||||
"name": "John Kreitlow",
|
||||
"email": "jkreitlow@deepfocus.net"
|
||||
},
|
||||
{
|
||||
"name": "Jonathan Ong",
|
||||
"email": "jonathanrichardong@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Josh Gillies",
|
||||
"email": "github@joshgilli.es"
|
||||
},
|
||||
{
|
||||
"name": "jvdanilo",
|
||||
"email": "jvdanilo@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Kieran",
|
||||
"email": "Kieranju@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Kir Shatrov",
|
||||
"email": "shatrov@me.com"
|
||||
},
|
||||
{
|
||||
"name": "kizu",
|
||||
"email": "kizmarh@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Leonya Khachaturov",
|
||||
"email": "leonidkhachaturov@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Lovchikov Anton",
|
||||
"email": "besyanya@yandex.ru"
|
||||
},
|
||||
{
|
||||
"name": "L.T",
|
||||
"email": "ec.huyinghuan@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Luciano Battagliero",
|
||||
"email": "lucianobattagliero+git@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Luke Page",
|
||||
"email": "luke.a.page@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "martco",
|
||||
"email": "martco@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Matt Smith",
|
||||
"email": "runner_28@hotmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Maxime Thirouin",
|
||||
"email": "m@moox.io"
|
||||
},
|
||||
{
|
||||
"name": "Max Mechanic",
|
||||
"email": "max@philo.com"
|
||||
},
|
||||
{
|
||||
"name": "Michael Beil",
|
||||
"email": "michaelbeil@me.com"
|
||||
},
|
||||
{
|
||||
"name": "Michael Scott Hertzberg",
|
||||
"email": "mshertzberg@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Michał Gołębiowski",
|
||||
"email": "m.goleb@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Mikael Jorhult",
|
||||
"email": "mikael@jorhult.se"
|
||||
},
|
||||
{
|
||||
"name": "Morton Fox",
|
||||
"email": "github@qslw.com"
|
||||
},
|
||||
{
|
||||
"name": "mvasilkov",
|
||||
"email": "mvasilkov@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Nick Howes",
|
||||
"email": "nick@nickhowes.co.uk"
|
||||
},
|
||||
{
|
||||
"name": "Nick Schonning",
|
||||
"email": "nschonni@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "nickspielgist",
|
||||
"email": "dev@nickspiel.me"
|
||||
},
|
||||
{
|
||||
"name": "Niels Dequeker",
|
||||
"email": "niels.dequeker@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Nikolay Burlov",
|
||||
"email": "kohgpat@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Paul Statezny",
|
||||
"email": "Paulstatezny@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Peter Zotov",
|
||||
"email": "whitequark@whitequark.org"
|
||||
},
|
||||
{
|
||||
"name": "Rafael Silva",
|
||||
"email": "rafael@rafaelsilva.net"
|
||||
},
|
||||
{
|
||||
"name": "Ray Lehnhoff",
|
||||
"email": "raymond.lehnhoff@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "ReadmeCritic",
|
||||
"email": "frankensteinbot@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Reinaldo Schiehll",
|
||||
"email": "rn.schiehll@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "René Stalder",
|
||||
"email": "rene@whatwedo.ch"
|
||||
},
|
||||
{
|
||||
"name": "Richard Wang",
|
||||
"email": "richardwa@google.com"
|
||||
},
|
||||
{
|
||||
"name": "Rob Howell",
|
||||
"email": "rob@robhowell.com"
|
||||
},
|
||||
{
|
||||
"name": "Roland Warmerdam",
|
||||
"email": "rowno@webspirited.com"
|
||||
},
|
||||
{
|
||||
"name": "Sasha Koss",
|
||||
"email": "koss@nocorp.me"
|
||||
},
|
||||
{
|
||||
"name": "Sean Anderson",
|
||||
"email": "Sean.Palmer.Anderson@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Sergey Belov",
|
||||
"email": "peimei@ya.ru"
|
||||
},
|
||||
{
|
||||
"name": "Sergey Leschina",
|
||||
"email": "mail@putnik.ws"
|
||||
},
|
||||
{
|
||||
"name": "sethjgore",
|
||||
"email": "sethjgore@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Šime Vidas",
|
||||
"email": "sime.vidas@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Simon Lydell",
|
||||
"email": "simon.lydell@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Stephen Edgar",
|
||||
"email": "stephen@netweb.com.au"
|
||||
},
|
||||
{
|
||||
"name": "Steve Mao",
|
||||
"email": "https://github.com/stevemao"
|
||||
},
|
||||
{
|
||||
"name": "Stig Otnes Kolstad",
|
||||
"email": "stig@stigok.net"
|
||||
},
|
||||
{
|
||||
"name": "Subash Pathak",
|
||||
"email": "sbspk@msn.com"
|
||||
},
|
||||
{
|
||||
"name": "sunhao",
|
||||
"email": "sunhao_1988@msn.cn"
|
||||
},
|
||||
{
|
||||
"name": "tomdavenport",
|
||||
"email": "playmusic@me.com"
|
||||
},
|
||||
{
|
||||
"name": "Tony Ganch",
|
||||
"email": "tonyganch@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Vegard Andreas Larsen",
|
||||
"email": "vegard@xaltra.net"
|
||||
},
|
||||
{
|
||||
"name": "Vera Surkova",
|
||||
"email": "vera@surkova.se"
|
||||
},
|
||||
{
|
||||
"name": "Vincent De Oliveira",
|
||||
"email": "vincent@iamvdo.me"
|
||||
},
|
||||
{
|
||||
"name": "Vishnu Ravi",
|
||||
"email": "vishnu@vishnu.io"
|
||||
},
|
||||
{
|
||||
"name": "Vladimir Pouzanov",
|
||||
"email": "farcaller@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "vladkens",
|
||||
"email": "vladkens@yandex.ru"
|
||||
},
|
||||
{
|
||||
"name": "Даниил Пронин",
|
||||
"email": "mail@grawl.ru"
|
||||
},
|
||||
{
|
||||
"name": "一丝",
|
||||
"email": "jie.lijie@alibaba-inc.com"
|
||||
},
|
||||
{
|
||||
"name": "刘祺",
|
||||
"email": "gucong@gmail.com"
|
||||
}
|
||||
],
|
||||
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
||||
"license": "MIT",
|
||||
"repository": "postcss/autoprefixer",
|
||||
"dependencies": {
|
||||
"browserslist": "^1.7.6",
|
||||
"caniuse-db": "^1.0.30000634",
|
||||
@@ -20,8 +494,10 @@
|
||||
"postcss": "^5.2.16",
|
||||
"postcss-value-parser": "^3.2.3"
|
||||
},
|
||||
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
|
||||
"devDependencies": {
|
||||
"browserify": "^14.1.0",
|
||||
"coffee-script": "^1.12.4",
|
||||
"eslint-config-postcss": "^2.0.2",
|
||||
"fs-extra": "^2.0.0",
|
||||
"gulp": "^3.9.1",
|
||||
@@ -32,14 +508,28 @@
|
||||
"gulp-replace": "^0.5.4",
|
||||
"mocha": "^3.2.0",
|
||||
"should": "^11.2.1",
|
||||
"vinyl-source-stream": "^1.1.0",
|
||||
"coffee-script": "^1.12.4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "gulp"
|
||||
"vinyl-source-stream": "^1.1.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "eslint-config-postcss/es5"
|
||||
},
|
||||
"main": "lib/autoprefixer"
|
||||
}
|
||||
"homepage": "https://github.com/postcss/autoprefixer#readme",
|
||||
"keywords": [
|
||||
"autoprefixer",
|
||||
"css",
|
||||
"prefix",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/autoprefixer",
|
||||
"name": "autoprefixer",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/postcss/autoprefixer.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "gulp"
|
||||
},
|
||||
"version": "6.7.7"
|
||||
}
|
||||
|
52
goTorrentWebUI/node_modules/css-loader/node_modules/babel-code-frame/package.json
generated
vendored
52
goTorrentWebUI/node_modules/css-loader/node_modules/babel-code-frame/package.json
generated
vendored
@@ -1,15 +1,49 @@
|
||||
{
|
||||
"name": "babel-code-frame",
|
||||
"version": "6.26.0",
|
||||
"description": "Generate errors that contain a code frame that point to source locations.",
|
||||
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
||||
"homepage": "https://babeljs.io/",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame",
|
||||
"main": "lib/index.js",
|
||||
"_args": [
|
||||
[
|
||||
"babel-code-frame@6.26.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "babel-code-frame@6.26.0",
|
||||
"_id": "babel-code-frame@6.26.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
|
||||
"_location": "/css-loader/babel-code-frame",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "babel-code-frame@6.26.0",
|
||||
"name": "babel-code-frame",
|
||||
"escapedName": "babel-code-frame",
|
||||
"rawSpec": "6.26.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "6.26.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
|
||||
"_spec": "6.26.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sebastian McKenzie",
|
||||
"email": "sebmck@gmail.com"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^1.1.3",
|
||||
"esutils": "^2.0.2",
|
||||
"js-tokens": "^3.0.2"
|
||||
}
|
||||
},
|
||||
"description": "Generate errors that contain a code frame that point to source locations.",
|
||||
"homepage": "https://babeljs.io/",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "babel-code-frame",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame"
|
||||
},
|
||||
"version": "6.26.0"
|
||||
}
|
||||
|
64
goTorrentWebUI/node_modules/css-loader/node_modules/balanced-match/package.json
generated
vendored
64
goTorrentWebUI/node_modules/css-loader/node_modules/balanced-match/package.json
generated
vendored
@@ -1,20 +1,47 @@
|
||||
{
|
||||
"name": "balanced-match",
|
||||
"description": "Match balanced character pairs, like \"{\" and \"}\"",
|
||||
"version": "0.4.2",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/juliangruber/balanced-match.git"
|
||||
"_args": [
|
||||
[
|
||||
"balanced-match@0.4.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "balanced-match@0.4.2",
|
||||
"_id": "balanced-match@0.4.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
|
||||
"_location": "/css-loader/balanced-match",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "balanced-match@0.4.2",
|
||||
"name": "balanced-match",
|
||||
"escapedName": "balanced-match",
|
||||
"rawSpec": "0.4.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.4.2"
|
||||
},
|
||||
"homepage": "https://github.com/juliangruber/balanced-match",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
"_requiredBy": [
|
||||
"/css-loader/reduce-css-calc",
|
||||
"/css-loader/reduce-function-call"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
|
||||
"_spec": "0.4.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Julian Gruber",
|
||||
"email": "mail@juliangruber.com",
|
||||
"url": "http://juliangruber.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/juliangruber/balanced-match/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Match balanced character pairs, like \"{\" and \"}\"",
|
||||
"devDependencies": {
|
||||
"tape": "^4.6.0"
|
||||
},
|
||||
"homepage": "https://github.com/juliangruber/balanced-match",
|
||||
"keywords": [
|
||||
"match",
|
||||
"regexp",
|
||||
@@ -22,12 +49,16 @@
|
||||
"balanced",
|
||||
"parse"
|
||||
],
|
||||
"author": {
|
||||
"name": "Julian Gruber",
|
||||
"email": "mail@juliangruber.com",
|
||||
"url": "http://juliangruber.com"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "balanced-match",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/juliangruber/balanced-match.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
},
|
||||
"testling": {
|
||||
"files": "test/*.js",
|
||||
"browsers": [
|
||||
@@ -43,5 +74,6 @@
|
||||
"iphone/6.0..latest",
|
||||
"android-browser/4.2..latest"
|
||||
]
|
||||
}
|
||||
},
|
||||
"version": "0.4.2"
|
||||
}
|
||||
|
77
goTorrentWebUI/node_modules/css-loader/node_modules/big.js/package.json
generated
vendored
77
goTorrentWebUI/node_modules/css-loader/node_modules/big.js/package.json
generated
vendored
@@ -1,7 +1,48 @@
|
||||
{
|
||||
"name": "big.js",
|
||||
"_args": [
|
||||
[
|
||||
"big.js@3.2.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "big.js@3.2.0",
|
||||
"_id": "big.js@3.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
|
||||
"_location": "/css-loader/big.js",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "big.js@3.2.0",
|
||||
"name": "big.js",
|
||||
"escapedName": "big.js",
|
||||
"rawSpec": "3.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.2.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/loader-utils"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
|
||||
"_spec": "3.2.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Michael Mclaughlin",
|
||||
"email": "M8ch88l@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/MikeMcl/big.js/issues"
|
||||
},
|
||||
"description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic",
|
||||
"version": "3.2.0",
|
||||
"engines": {
|
||||
"node": "*"
|
||||
},
|
||||
"files": [
|
||||
"big.js",
|
||||
"big.min.js"
|
||||
],
|
||||
"homepage": "https://github.com/MikeMcl/big.js#readme",
|
||||
"keywords": [
|
||||
"arbitrary",
|
||||
"precision",
|
||||
@@ -16,28 +57,16 @@
|
||||
"bigint",
|
||||
"bignum"
|
||||
],
|
||||
"repository" : {
|
||||
"type": "git",
|
||||
"url": "https://github.com/MikeMcl/big.js.git"
|
||||
},
|
||||
"main": "big.js",
|
||||
"author": {
|
||||
"name": "Michael Mclaughlin",
|
||||
"email": "M8ch88l@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/MikeMcl/big.js/issues"
|
||||
},
|
||||
"engines": {
|
||||
"node": "*"
|
||||
},
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "node ./test/every-test.js",
|
||||
"build": "uglifyjs big.js --source-map doc/big.js.map -c -m -o big.min.js --preamble \"/* big.js v3.2.0 https://github.com/MikeMcl/big.js/LICENCE */\""
|
||||
"main": "big.js",
|
||||
"name": "big.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/MikeMcl/big.js.git"
|
||||
},
|
||||
"files": [
|
||||
"big.js",
|
||||
"big.min.js"
|
||||
]
|
||||
"scripts": {
|
||||
"build": "uglifyjs big.js --source-map doc/big.js.map -c -m -o big.min.js --preamble \"/* big.js v3.2.0 https://github.com/MikeMcl/big.js/LICENCE */\"",
|
||||
"test": "node ./test/every-test.js"
|
||||
},
|
||||
"version": "3.2.0"
|
||||
}
|
||||
|
72
goTorrentWebUI/node_modules/css-loader/node_modules/browserslist/package.json
generated
vendored
72
goTorrentWebUI/node_modules/css-loader/node_modules/browserslist/package.json
generated
vendored
@@ -1,19 +1,49 @@
|
||||
{
|
||||
"name": "browserslist",
|
||||
"version": "1.7.7",
|
||||
"description": "Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
|
||||
"keywords": [
|
||||
"caniuse",
|
||||
"browsers"
|
||||
"_args": [
|
||||
[
|
||||
"browserslist@1.7.7",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
||||
"license": "MIT",
|
||||
"repository": "ai/browserslist",
|
||||
"_from": "browserslist@1.7.7",
|
||||
"_id": "browserslist@1.7.7",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
|
||||
"_location": "/css-loader/browserslist",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "browserslist@1.7.7",
|
||||
"name": "browserslist",
|
||||
"escapedName": "browserslist",
|
||||
"rawSpec": "1.7.7",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.7.7"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/autoprefixer",
|
||||
"/css-loader/caniuse-api",
|
||||
"/css-loader/postcss-merge-rules"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
|
||||
"_spec": "1.7.7",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Andrey Sitnik",
|
||||
"email": "andrey@sitnik.ru"
|
||||
},
|
||||
"bin": {
|
||||
"browserslist": "./cli.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ai/browserslist/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"caniuse-db": "^1.0.30000639",
|
||||
"electron-to-chromium": "^1.2.7"
|
||||
},
|
||||
"bin": "./cli.js",
|
||||
"description": "Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
|
||||
"devDependencies": {
|
||||
"eslint": "^3.18.0",
|
||||
"eslint-config-postcss": "^2.0.2",
|
||||
@@ -33,6 +63,7 @@
|
||||
"valid-jsdoc": "error"
|
||||
}
|
||||
},
|
||||
"homepage": "https://github.com/ai/browserslist#readme",
|
||||
"jest": {
|
||||
"coverageThreshold": {
|
||||
"global": {
|
||||
@@ -40,15 +71,26 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"lint-staged": "lint-staged",
|
||||
"test": "jest --coverage && eslint *.js test/*.js && yaspeller-ci *.md"
|
||||
},
|
||||
"keywords": [
|
||||
"caniuse",
|
||||
"browsers"
|
||||
],
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"*.md": "yaspeller-ci",
|
||||
"*.js": "eslint"
|
||||
},
|
||||
"name": "browserslist",
|
||||
"pre-commit": [
|
||||
"lint-staged"
|
||||
]
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ai/browserslist.git"
|
||||
},
|
||||
"scripts": {
|
||||
"lint-staged": "lint-staged",
|
||||
"test": "jest --coverage && eslint *.js test/*.js && yaspeller-ci *.md"
|
||||
},
|
||||
"version": "1.7.7"
|
||||
}
|
||||
|
73
goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-api/package.json
generated
vendored
73
goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-api/package.json
generated
vendored
@@ -1,27 +1,51 @@
|
||||
{
|
||||
"name": "caniuse-api",
|
||||
"version": "1.6.1",
|
||||
"description": "request the caniuse data to check browsers compatibilities",
|
||||
"repository": "https://github.com/nyalab/caniuse-api.git",
|
||||
"keywords": [
|
||||
"caniuse",
|
||||
"browserslist"
|
||||
"_args": [
|
||||
[
|
||||
"caniuse-api@1.6.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "caniuse-api@1.6.1",
|
||||
"_id": "caniuse-api@1.6.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=",
|
||||
"_location": "/css-loader/caniuse-api",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "caniuse-api@1.6.1",
|
||||
"name": "caniuse-api",
|
||||
"escapedName": "caniuse-api",
|
||||
"rawSpec": "1.6.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.6.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-merge-rules"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz",
|
||||
"_spec": "1.6.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"authors": [
|
||||
"nyalab",
|
||||
"MoOx"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"babel": {
|
||||
"presets": [
|
||||
"babel-preset-latest"
|
||||
]
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/nyalab/caniuse-api/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"browserslist": "^1.3.6",
|
||||
"caniuse-db": "^1.0.30000529",
|
||||
"lodash.memoize": "^4.1.2",
|
||||
"lodash.uniq": "^4.5.0"
|
||||
},
|
||||
"description": "request the caniuse data to check browsers compatibilities",
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.22.2",
|
||||
"babel-eslint": "^5.0.0",
|
||||
@@ -32,16 +56,27 @@
|
||||
"tap-spec": "^4.1.1",
|
||||
"tape": "^4.6.0"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/nyalab/caniuse-api#readme",
|
||||
"keywords": [
|
||||
"caniuse",
|
||||
"browserslist"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "caniuse-api",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/nyalab/caniuse-api.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "babel src --out-dir dist",
|
||||
"lint": "jshint src",
|
||||
"prepublish": "npm run build",
|
||||
"test": "npm run lint && babel-tape-runner test/*.js | tap-spec",
|
||||
"release": "npmpub"
|
||||
"release": "npmpub",
|
||||
"test": "npm run lint && babel-tape-runner test/*.js | tap-spec"
|
||||
},
|
||||
"babel": {
|
||||
"presets":[
|
||||
"babel-preset-latest"
|
||||
]
|
||||
}
|
||||
"version": "1.6.1"
|
||||
}
|
||||
|
47
goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-db/package.json
generated
vendored
47
goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-db/package.json
generated
vendored
@@ -1,7 +1,43 @@
|
||||
{
|
||||
"name": "caniuse-db",
|
||||
"version": "1.0.30000760",
|
||||
"_args": [
|
||||
[
|
||||
"caniuse-db@1.0.30000760",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "caniuse-db@1.0.30000760",
|
||||
"_id": "caniuse-db@1.0.30000760",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-PqKUc+t4psywny63Osnh3r/sUo0=",
|
||||
"_location": "/css-loader/caniuse-db",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "caniuse-db@1.0.30000760",
|
||||
"name": "caniuse-db",
|
||||
"escapedName": "caniuse-db",
|
||||
"rawSpec": "1.0.30000760",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.30000760"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/autoprefixer",
|
||||
"/css-loader/browserslist",
|
||||
"/css-loader/caniuse-api"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000760.tgz",
|
||||
"_spec": "1.0.30000760",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Alexis Deveria",
|
||||
"email": "adeveria@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Fyrd/caniuse/issues"
|
||||
},
|
||||
"description": "Raw browser/feature support data from caniuse.com",
|
||||
"homepage": "https://github.com/Fyrd/caniuse#readme",
|
||||
"keywords": [
|
||||
"support",
|
||||
"css",
|
||||
@@ -9,10 +45,11 @@
|
||||
"html5",
|
||||
"svg"
|
||||
],
|
||||
"author": "Alexis Deveria <adeveria@gmail.com>",
|
||||
"license": "CC-BY-4.0",
|
||||
"name": "caniuse-db",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Fyrd/caniuse.git"
|
||||
}
|
||||
"url": "git+https://github.com/Fyrd/caniuse.git"
|
||||
},
|
||||
"version": "1.0.30000760"
|
||||
}
|
||||
|
109
goTorrentWebUI/node_modules/css-loader/node_modules/chalk/package.json
generated
vendored
109
goTorrentWebUI/node_modules/css-loader/node_modules/chalk/package.json
generated
vendored
@@ -1,26 +1,62 @@
|
||||
{
|
||||
"name": "chalk",
|
||||
"version": "1.1.3",
|
||||
"description": "Terminal string styling done right. Much color.",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/chalk",
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
|
||||
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
|
||||
"_args": [
|
||||
[
|
||||
"chalk@1.1.3",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "chalk@1.1.3",
|
||||
"_id": "chalk@1.1.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
|
||||
"_location": "/css-loader/chalk",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "chalk@1.1.3",
|
||||
"name": "chalk",
|
||||
"escapedName": "chalk",
|
||||
"rawSpec": "1.1.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/babel-code-frame",
|
||||
"/css-loader/clap",
|
||||
"/css-loader/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
|
||||
"_spec": "1.1.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/chalk/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-styles": "^2.2.1",
|
||||
"escape-string-regexp": "^1.0.2",
|
||||
"has-ansi": "^2.0.0",
|
||||
"strip-ansi": "^3.0.0",
|
||||
"supports-color": "^2.0.0"
|
||||
},
|
||||
"description": "Terminal string styling done right. Much color.",
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.11.2",
|
||||
"matcha": "^0.6.0",
|
||||
"mocha": "*",
|
||||
"nyc": "^3.0.0",
|
||||
"require-uncached": "^1.0.2",
|
||||
"resolve-from": "^1.0.0",
|
||||
"semver": "^4.3.3",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && mocha",
|
||||
"bench": "matcha benchmark.js",
|
||||
"coverage": "nyc npm test && nyc report",
|
||||
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/chalk#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
@@ -44,23 +80,36 @@
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"dependencies": {
|
||||
"ansi-styles": "^2.2.1",
|
||||
"escape-string-regexp": "^1.0.2",
|
||||
"has-ansi": "^2.0.0",
|
||||
"strip-ansi": "^3.0.0",
|
||||
"supports-color": "^2.0.0"
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
},
|
||||
{
|
||||
"name": "JD Ballard",
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"url": "github.com/qix-"
|
||||
}
|
||||
],
|
||||
"name": "chalk",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/chalk.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.11.2",
|
||||
"matcha": "^0.6.0",
|
||||
"mocha": "*",
|
||||
"nyc": "^3.0.0",
|
||||
"require-uncached": "^1.0.2",
|
||||
"resolve-from": "^1.0.0",
|
||||
"semver": "^4.3.3",
|
||||
"xo": "*"
|
||||
"scripts": {
|
||||
"bench": "matcha benchmark.js",
|
||||
"coverage": "nyc npm test && nyc report",
|
||||
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
|
||||
"test": "xo && mocha"
|
||||
},
|
||||
"version": "1.1.3",
|
||||
"xo": {
|
||||
"envs": [
|
||||
"node",
|
||||
|
81
goTorrentWebUI/node_modules/css-loader/node_modules/clap/package.json
generated
vendored
81
goTorrentWebUI/node_modules/css-loader/node_modules/clap/package.json
generated
vendored
@@ -1,10 +1,56 @@
|
||||
{
|
||||
"name": "clap",
|
||||
"title": "Command line argument parser",
|
||||
"_args": [
|
||||
[
|
||||
"clap@1.2.3",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "clap@1.2.3",
|
||||
"_id": "clap@1.2.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==",
|
||||
"_location": "/css-loader/clap",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "clap@1.2.3",
|
||||
"name": "clap",
|
||||
"escapedName": "clap",
|
||||
"rawSpec": "1.2.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.2.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/csso"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz",
|
||||
"_spec": "1.2.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Roman Dvornov",
|
||||
"email": "rdvornov@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/lahmatiy/clap/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^1.1.3"
|
||||
},
|
||||
"description": "Command line argument parser",
|
||||
"author": "Roman Dvornov <rdvornov@gmail.com>",
|
||||
"license": "MIT",
|
||||
"version": "1.2.3",
|
||||
"devDependencies": {
|
||||
"mocha": "^2.4.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"HISTORY.md",
|
||||
"LICENSE",
|
||||
"README.md"
|
||||
],
|
||||
"homepage": "https://github.com/lahmatiy/clap",
|
||||
"keywords": [
|
||||
"cli",
|
||||
"command",
|
||||
@@ -12,25 +58,16 @@
|
||||
"argument",
|
||||
"completion"
|
||||
],
|
||||
"homepage": "https://github.com/lahmatiy/clap",
|
||||
"repository": "lahmatiy/clap",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"index.js",
|
||||
"HISTORY.md",
|
||||
"LICENSE",
|
||||
"README.md"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^1.1.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^2.4.5"
|
||||
"name": "clap",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lahmatiy/clap.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha test -R spec"
|
||||
}
|
||||
},
|
||||
"title": "Command line argument parser",
|
||||
"version": "1.2.3"
|
||||
}
|
||||
|
171
goTorrentWebUI/node_modules/css-loader/node_modules/clone/package.json
generated
vendored
171
goTorrentWebUI/node_modules/css-loader/node_modules/clone/package.json
generated
vendored
@@ -1,6 +1,134 @@
|
||||
{
|
||||
"name": "clone",
|
||||
"_args": [
|
||||
[
|
||||
"clone@1.0.3",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "clone@1.0.3",
|
||||
"_id": "clone@1.0.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-KY1+IjFmD0DAA8LtMUDezz9TCF8=",
|
||||
"_location": "/css-loader/clone",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "clone@1.0.3",
|
||||
"name": "clone",
|
||||
"escapedName": "clone",
|
||||
"rawSpec": "1.0.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/color"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz",
|
||||
"_spec": "1.0.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Paul Vorbach",
|
||||
"email": "paul@vorba.ch",
|
||||
"url": "http://paul.vorba.ch/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/pvorb/node-clone/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Blake Miner",
|
||||
"email": "miner.blake@gmail.com",
|
||||
"url": "http://www.blakeminer.com/"
|
||||
},
|
||||
{
|
||||
"name": "Tian You",
|
||||
"email": "axqd001@gmail.com",
|
||||
"url": "http://blog.axqd.net/"
|
||||
},
|
||||
{
|
||||
"name": "George Stagas",
|
||||
"email": "gstagas@gmail.com",
|
||||
"url": "http://stagas.com/"
|
||||
},
|
||||
{
|
||||
"name": "Tobiasz Cudnik",
|
||||
"email": "tobiasz.cudnik@gmail.com",
|
||||
"url": "https://github.com/TobiaszCudnik"
|
||||
},
|
||||
{
|
||||
"name": "Pavel Lang",
|
||||
"email": "langpavel@phpskelet.org",
|
||||
"url": "https://github.com/langpavel"
|
||||
},
|
||||
{
|
||||
"name": "Dan MacTough",
|
||||
"url": "http://yabfog.com/"
|
||||
},
|
||||
{
|
||||
"name": "w1nk",
|
||||
"url": "https://github.com/w1nk"
|
||||
},
|
||||
{
|
||||
"name": "Hugh Kennedy",
|
||||
"url": "http://twitter.com/hughskennedy"
|
||||
},
|
||||
{
|
||||
"name": "Dustin Diaz",
|
||||
"url": "http://dustindiaz.com"
|
||||
},
|
||||
{
|
||||
"name": "Ilya Shaisultanov",
|
||||
"url": "https://github.com/diversario"
|
||||
},
|
||||
{
|
||||
"name": "Nathan MacInnes",
|
||||
"email": "nathan@macinn.es",
|
||||
"url": "http://macinn.es/"
|
||||
},
|
||||
{
|
||||
"name": "Benjamin E. Coe",
|
||||
"email": "ben@npmjs.com",
|
||||
"url": "https://twitter.com/benjamincoe"
|
||||
},
|
||||
{
|
||||
"name": "Nathan Zadoks",
|
||||
"url": "https://github.com/nathan7"
|
||||
},
|
||||
{
|
||||
"name": "Róbert Oroszi",
|
||||
"email": "robert+gh@oroszi.net",
|
||||
"url": "https://github.com/oroce"
|
||||
},
|
||||
{
|
||||
"name": "Aurélio A. Heckert",
|
||||
"url": "http://softwarelivre.org/aurium"
|
||||
},
|
||||
{
|
||||
"name": "Guy Ellis",
|
||||
"url": "http://www.guyellisrocks.com/"
|
||||
}
|
||||
],
|
||||
"dependencies": {},
|
||||
"description": "deep cloning of objects and arrays",
|
||||
"devDependencies": {
|
||||
"nodeunit": "~0.9.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8"
|
||||
},
|
||||
"homepage": "https://github.com/pvorb/node-clone#readme",
|
||||
"license": "MIT",
|
||||
"main": "clone.js",
|
||||
"name": "clone",
|
||||
"optionalDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/pvorb/node-clone.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "nodeunit test.js"
|
||||
},
|
||||
"tags": [
|
||||
"clone",
|
||||
"object",
|
||||
@@ -8,44 +136,5 @@
|
||||
"function",
|
||||
"date"
|
||||
],
|
||||
"version": "1.0.3",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/pvorb/node-clone.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/pvorb/node-clone/issues"
|
||||
},
|
||||
"main": "clone.js",
|
||||
"author": "Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch/)",
|
||||
"contributors": [
|
||||
"Blake Miner <miner.blake@gmail.com> (http://www.blakeminer.com/)",
|
||||
"Tian You <axqd001@gmail.com> (http://blog.axqd.net/)",
|
||||
"George Stagas <gstagas@gmail.com> (http://stagas.com/)",
|
||||
"Tobiasz Cudnik <tobiasz.cudnik@gmail.com> (https://github.com/TobiaszCudnik)",
|
||||
"Pavel Lang <langpavel@phpskelet.org> (https://github.com/langpavel)",
|
||||
"Dan MacTough (http://yabfog.com/)",
|
||||
"w1nk (https://github.com/w1nk)",
|
||||
"Hugh Kennedy (http://twitter.com/hughskennedy)",
|
||||
"Dustin Diaz (http://dustindiaz.com)",
|
||||
"Ilya Shaisultanov (https://github.com/diversario)",
|
||||
"Nathan MacInnes <nathan@macinn.es> (http://macinn.es/)",
|
||||
"Benjamin E. Coe <ben@npmjs.com> (https://twitter.com/benjamincoe)",
|
||||
"Nathan Zadoks (https://github.com/nathan7)",
|
||||
"Róbert Oroszi <robert+gh@oroszi.net> (https://github.com/oroce)",
|
||||
"Aurélio A. Heckert (http://softwarelivre.org/aurium)",
|
||||
"Guy Ellis (http://www.guyellisrocks.com/)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=0.8"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"nodeunit": "~0.9.0"
|
||||
},
|
||||
"optionalDependencies": {},
|
||||
"scripts": {
|
||||
"test": "nodeunit test.js"
|
||||
}
|
||||
"version": "1.0.3"
|
||||
}
|
||||
|
101
goTorrentWebUI/node_modules/css-loader/node_modules/coa/package.json
generated
vendored
101
goTorrentWebUI/node_modules/css-loader/node_modules/coa/package.json
generated
vendored
@@ -1,44 +1,91 @@
|
||||
{
|
||||
"name": "coa",
|
||||
"description": "Command-Option-Argument: Yet another parser for command line options.",
|
||||
"version": "1.0.4",
|
||||
"homepage": "http://github.com/veged/coa",
|
||||
"author": "Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",
|
||||
"maintainers": [
|
||||
"Sergey Berezhnoy <veged@ya.ru> (http://github.com/veged)",
|
||||
"Sergey Belov <peimei@ya.ru> (http://github.com/arikon)"
|
||||
"_args": [
|
||||
[
|
||||
"coa@1.0.4",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "coa@1.0.4",
|
||||
"_id": "coa@1.0.4",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=",
|
||||
"_location": "/css-loader/coa",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "coa@1.0.4",
|
||||
"name": "coa",
|
||||
"escapedName": "coa",
|
||||
"rawSpec": "1.0.4",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.4"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/svgo"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz",
|
||||
"_spec": "1.0.4",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sergey Berezhnoy",
|
||||
"email": "veged@ya.ru",
|
||||
"url": "http://github.com/veged"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/veged/coa/issues"
|
||||
},
|
||||
"contributors": [
|
||||
"Sergey Belov <peimei@ya.ru> (http://github.com/arikon)"
|
||||
{
|
||||
"name": "Sergey Belov",
|
||||
"email": "peimei@ya.ru",
|
||||
"url": "http://github.com/arikon"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/veged/coa.git"
|
||||
"dependencies": {
|
||||
"q": "^1.1.2"
|
||||
},
|
||||
"description": "Command-Option-Argument: Yet another parser for command line options.",
|
||||
"devDependencies": {
|
||||
"chai": "~1.7.2",
|
||||
"coffee-script": "~1.6.3",
|
||||
"istanbul": "~0.1.40",
|
||||
"mocha": "~1.21.4",
|
||||
"mocha-istanbul": "*"
|
||||
},
|
||||
"directories": {
|
||||
"lib": "./lib"
|
||||
},
|
||||
"dependencies": {
|
||||
"q": "^1.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"coffee-script": "~1.6.3",
|
||||
"istanbul": "~0.1.40",
|
||||
"mocha-istanbul": "*",
|
||||
"mocha": "~1.21.4",
|
||||
"chai": "~1.7.2"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test",
|
||||
"coverage": "make coverage"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.8.0"
|
||||
},
|
||||
"homepage": "http://github.com/veged/coa",
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT"
|
||||
}
|
||||
],
|
||||
"optionalDependencies": {}
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sergey Berezhnoy",
|
||||
"email": "veged@ya.ru",
|
||||
"url": "http://github.com/veged"
|
||||
},
|
||||
{
|
||||
"name": "Sergey Belov",
|
||||
"email": "peimei@ya.ru",
|
||||
"url": "http://github.com/arikon"
|
||||
}
|
||||
],
|
||||
"name": "coa",
|
||||
"optionalDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/veged/coa.git"
|
||||
},
|
||||
"scripts": {
|
||||
"coverage": "make coverage",
|
||||
"test": "make test"
|
||||
},
|
||||
"version": "1.0.4"
|
||||
}
|
||||
|
87
goTorrentWebUI/node_modules/css-loader/node_modules/color-convert/package.json
generated
vendored
87
goTorrentWebUI/node_modules/css-loader/node_modules/color-convert/package.json
generated
vendored
@@ -1,14 +1,59 @@
|
||||
{
|
||||
"name": "color-convert",
|
||||
"description": "Plain color conversion functions",
|
||||
"version": "1.9.1",
|
||||
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||
"license": "MIT",
|
||||
"repository": "Qix-/color-convert",
|
||||
"scripts": {
|
||||
"pretest": "xo",
|
||||
"test": "node test/basic.js"
|
||||
"_args": [
|
||||
[
|
||||
"color-convert@1.9.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "color-convert@1.9.1",
|
||||
"_id": "color-convert@1.9.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
|
||||
"_location": "/css-loader/color-convert",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "color-convert@1.9.1",
|
||||
"name": "color-convert",
|
||||
"escapedName": "color-convert",
|
||||
"rawSpec": "1.9.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.9.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/color",
|
||||
"/css-loader/icss-utils/ansi-styles",
|
||||
"/css-loader/postcss-modules-extract-imports/ansi-styles",
|
||||
"/css-loader/postcss-modules-local-by-default/ansi-styles",
|
||||
"/css-loader/postcss-modules-scope/ansi-styles",
|
||||
"/css-loader/postcss-modules-values/ansi-styles"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
|
||||
"_spec": "1.9.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Heather Arthur",
|
||||
"email": "fayearthur@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Qix-/color-convert/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"color-name": "^1.1.1"
|
||||
},
|
||||
"description": "Plain color conversion functions",
|
||||
"devDependencies": {
|
||||
"chalk": "^1.1.1",
|
||||
"xo": "^0.11.2"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"conversions.js",
|
||||
"css-keywords.js",
|
||||
"route.js"
|
||||
],
|
||||
"homepage": "https://github.com/Qix-/color-convert#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
@@ -23,24 +68,22 @@
|
||||
"ansi",
|
||||
"ansi16"
|
||||
],
|
||||
"files": [
|
||||
"index.js",
|
||||
"conversions.js",
|
||||
"css-keywords.js",
|
||||
"route.js"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "color-convert",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Qix-/color-convert.git"
|
||||
},
|
||||
"scripts": {
|
||||
"pretest": "xo",
|
||||
"test": "node test/basic.js"
|
||||
},
|
||||
"version": "1.9.1",
|
||||
"xo": {
|
||||
"rules": {
|
||||
"default-case": 0,
|
||||
"no-inline-comments": 0,
|
||||
"operator-linebreak": 0
|
||||
}
|
||||
},
|
||||
"devDependencies": {
|
||||
"chalk": "^1.1.1",
|
||||
"xo": "^0.11.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"color-name": "^1.1.1"
|
||||
}
|
||||
}
|
||||
|
60
goTorrentWebUI/node_modules/css-loader/node_modules/color-name/package.json
generated
vendored
60
goTorrentWebUI/node_modules/css-loader/node_modules/color-name/package.json
generated
vendored
@@ -1,25 +1,57 @@
|
||||
{
|
||||
"name": "color-name",
|
||||
"version": "1.1.3",
|
||||
"_args": [
|
||||
[
|
||||
"color-name@1.1.3",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "color-name@1.1.3",
|
||||
"_id": "color-name@1.1.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
|
||||
"_location": "/css-loader/color-name",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "color-name@1.1.3",
|
||||
"name": "color-name",
|
||||
"escapedName": "color-name",
|
||||
"rawSpec": "1.1.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/color-convert",
|
||||
"/css-loader/color-string"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
||||
"_spec": "1.1.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "DY",
|
||||
"email": "dfcreative@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/dfcreative/color-name/issues"
|
||||
},
|
||||
"description": "A list of color names and its values",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github.com:dfcreative/color-name.git"
|
||||
},
|
||||
"homepage": "https://github.com/dfcreative/color-name",
|
||||
"keywords": [
|
||||
"color-name",
|
||||
"color",
|
||||
"color-keyword",
|
||||
"keyword"
|
||||
],
|
||||
"author": "DY <dfcreative@gmail.com>",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/dfcreative/color-name/issues"
|
||||
"main": "index.js",
|
||||
"name": "color-name",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/dfcreative/color-name.git"
|
||||
},
|
||||
"homepage": "https://github.com/dfcreative/color-name"
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "1.1.3"
|
||||
}
|
||||
|
73
goTorrentWebUI/node_modules/css-loader/node_modules/color-string/package.json
generated
vendored
73
goTorrentWebUI/node_modules/css-loader/node_modules/color-string/package.json
generated
vendored
@@ -1,30 +1,69 @@
|
||||
{
|
||||
"name": "color-string",
|
||||
"description": "Parser and generator for CSS color strings",
|
||||
"version": "0.3.0",
|
||||
"author": "Heather Arthur <fayearthur@gmail.com>",
|
||||
"contributors": [
|
||||
"Maxime Thirouin",
|
||||
"Dyma Ywanov <dfcreative@gmail.com>"
|
||||
"_args": [
|
||||
[
|
||||
"color-string@0.3.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/harthur/color-string.git"
|
||||
"_from": "color-string@0.3.0",
|
||||
"_id": "color-string@0.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=",
|
||||
"_location": "/css-loader/color-string",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "color-string@0.3.0",
|
||||
"name": "color-string",
|
||||
"escapedName": "color-string",
|
||||
"rawSpec": "0.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.3.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test/basic.js"
|
||||
"_requiredBy": [
|
||||
"/css-loader/color"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz",
|
||||
"_spec": "0.3.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Heather Arthur",
|
||||
"email": "fayearthur@gmail.com"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "./color-string",
|
||||
"bugs": {
|
||||
"url": "https://github.com/harthur/color-string/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Maxime Thirouin"
|
||||
},
|
||||
{
|
||||
"name": "Dyma Ywanov",
|
||||
"email": "dfcreative@gmail.com"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"color-name": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
},
|
||||
"description": "Parser and generator for CSS color strings",
|
||||
"devDependencies": {},
|
||||
"homepage": "https://github.com/harthur/color-string#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"rgb",
|
||||
"css"
|
||||
]
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./color-string",
|
||||
"name": "color-string",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/harthur/color-string.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test/basic.js"
|
||||
},
|
||||
"version": "0.3.0"
|
||||
}
|
||||
|
81
goTorrentWebUI/node_modules/css-loader/node_modules/color/package.json
generated
vendored
81
goTorrentWebUI/node_modules/css-loader/node_modules/color/package.json
generated
vendored
@@ -1,41 +1,76 @@
|
||||
{
|
||||
"name": "color",
|
||||
"version": "0.11.4",
|
||||
"description": "Color conversion and manipulation with CSS string support",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"css"
|
||||
"_args": [
|
||||
[
|
||||
"color@0.11.4",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "color@0.11.4",
|
||||
"_id": "color@0.11.4",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=",
|
||||
"_location": "/css-loader/color",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "color@0.11.4",
|
||||
"name": "color",
|
||||
"escapedName": "color",
|
||||
"rawSpec": "0.11.4",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.11.4"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/colormin"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz",
|
||||
"_spec": "0.11.4",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"authors": [
|
||||
"Heather Arthur <fayearthur@gmail.com>",
|
||||
"Maxime Thirouin",
|
||||
"Josh Junon"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": "Qix-/color",
|
||||
"xo": {
|
||||
"rules": {
|
||||
"no-cond-assign": 0,
|
||||
"new-cap": 0
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "xo",
|
||||
"test": "mocha"
|
||||
"bugs": {
|
||||
"url": "https://github.com/Qix-/color/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"clone": "^1.0.2",
|
||||
"color-convert": "^1.3.0",
|
||||
"color-string": "^0.3.0"
|
||||
},
|
||||
"description": "Color conversion and manipulation with CSS string support",
|
||||
"devDependencies": {
|
||||
"mocha": "^2.2.5",
|
||||
"xo": "^0.12.1"
|
||||
},
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/Qix-/color#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"css"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "color",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Qix-/color.git"
|
||||
},
|
||||
"scripts": {
|
||||
"pretest": "xo",
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "0.11.4",
|
||||
"xo": {
|
||||
"rules": {
|
||||
"no-cond-assign": 0,
|
||||
"new-cap": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
82
goTorrentWebUI/node_modules/css-loader/node_modules/colormin/package.json
generated
vendored
82
goTorrentWebUI/node_modules/css-loader/node_modules/colormin/package.json
generated
vendored
@@ -1,37 +1,49 @@
|
||||
{
|
||||
"name": "colormin",
|
||||
"version": "1.1.2",
|
||||
"description": "Turn a CSS color into its smallest representation.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
"_args": [
|
||||
[
|
||||
"colormin@1.1.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
"_from": "colormin@1.1.2",
|
||||
"_id": "colormin@1.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=",
|
||||
"_location": "/css-loader/colormin",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "colormin@1.1.2",
|
||||
"name": "colormin",
|
||||
"escapedName": "colormin",
|
||||
"rawSpec": "1.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.2"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/colormin",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colors",
|
||||
"compression",
|
||||
"css",
|
||||
"minify"
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-colormin"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz",
|
||||
"_spec": "1.1.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"license": "MIT",
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/colormin/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"color": "^0.11.0",
|
||||
"css-color-names": "0.0.4",
|
||||
"has": "^1.0.1"
|
||||
},
|
||||
"description": "Turn a CSS color into its smallest representation.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.16.0",
|
||||
"babel-cli": "^6.3.17",
|
||||
@@ -47,11 +59,33 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^1.10.2"
|
||||
},
|
||||
"repository": "ben-eb/colormin",
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
}
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/colormin",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colors",
|
||||
"compression",
|
||||
"css",
|
||||
"minify"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "colormin",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/colormin.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
},
|
||||
"version": "1.1.2"
|
||||
}
|
||||
|
86
goTorrentWebUI/node_modules/css-loader/node_modules/colors/package.json
generated
vendored
86
goTorrentWebUI/node_modules/css-loader/node_modules/colors/package.json
generated
vendored
@@ -1,28 +1,64 @@
|
||||
{
|
||||
"name": "colors",
|
||||
"description": "get colors in your node.js console",
|
||||
"version": "1.1.2",
|
||||
"author": "Marak Squires",
|
||||
"homepage": "https://github.com/Marak/colors.js",
|
||||
"bugs": "https://github.com/Marak/colors.js/issues",
|
||||
"keywords": [ "ansi", "terminal", "colors" ],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/Marak/colors.js.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "node tests/basic-test.js && node tests/safe-test.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.1.90"
|
||||
},
|
||||
"main": "lib",
|
||||
"files": [
|
||||
"examples",
|
||||
"lib",
|
||||
"LICENSE",
|
||||
"safe.js",
|
||||
"themes"
|
||||
"_args": [
|
||||
[
|
||||
"colors@1.1.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "colors@1.1.2",
|
||||
"_id": "colors@1.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=",
|
||||
"_location": "/css-loader/colors",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "colors@1.1.2",
|
||||
"name": "colors",
|
||||
"escapedName": "colors",
|
||||
"rawSpec": "1.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/svgo"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
|
||||
"_spec": "1.1.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Marak Squires"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Marak/colors.js/issues"
|
||||
},
|
||||
"description": "get colors in your node.js console",
|
||||
"engines": {
|
||||
"node": ">=0.1.90"
|
||||
},
|
||||
"files": [
|
||||
"examples",
|
||||
"lib",
|
||||
"LICENSE",
|
||||
"safe.js",
|
||||
"themes"
|
||||
],
|
||||
"homepage": "https://github.com/Marak/colors.js",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"terminal",
|
||||
"colors"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib",
|
||||
"name": "colors",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/Marak/colors.js.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node tests/basic-test.js && node tests/safe-test.js"
|
||||
},
|
||||
"version": "1.1.2"
|
||||
}
|
||||
|
72
goTorrentWebUI/node_modules/css-loader/node_modules/css-color-names/package.json
generated
vendored
72
goTorrentWebUI/node_modules/css-loader/node_modules/css-color-names/package.json
generated
vendored
@@ -1,10 +1,60 @@
|
||||
{
|
||||
"name": "css-color-names",
|
||||
"description": "A JSON Object of css color names mapped to their hex value",
|
||||
"version": "0.0.4",
|
||||
"author": "Dave Eddy <dave@daveeddy.com> (http://www.daveeddy.com)",
|
||||
"_args": [
|
||||
[
|
||||
"css-color-names@0.0.4",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "css-color-names@0.0.4",
|
||||
"_id": "css-color-names@0.0.4",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=",
|
||||
"_location": "/css-loader/css-color-names",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "css-color-names@0.0.4",
|
||||
"name": "css-color-names",
|
||||
"escapedName": "css-color-names",
|
||||
"rawSpec": "0.0.4",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.0.4"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/colormin"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
|
||||
"_spec": "0.0.4",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Dave Eddy",
|
||||
"email": "dave@daveeddy.com",
|
||||
"url": "http://www.daveeddy.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/bahamas10/css-color-names/issues"
|
||||
},
|
||||
"contributors": [],
|
||||
"dependencies": {},
|
||||
"description": "A JSON Object of css color names mapped to their hex value",
|
||||
"devDependencies": {},
|
||||
"engines": {
|
||||
"node": "*"
|
||||
},
|
||||
"files": [
|
||||
"css-color-names.json"
|
||||
],
|
||||
"homepage": "https://github.com/bahamas10/css-color-names#readme",
|
||||
"keywords": [
|
||||
"css",
|
||||
"colors",
|
||||
"names"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./css-color-names.json",
|
||||
"name": "css-color-names",
|
||||
"optionalDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/bahamas10/css-color-names.git"
|
||||
@@ -12,17 +62,5 @@
|
||||
"scripts": {
|
||||
"test": "for f in tests/*.js; do echo \"$f\"; node \"$f\" || exit 1; done; echo 'Passed!'"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"optionalDependencies": {},
|
||||
"engines": {
|
||||
"node": "*"
|
||||
},
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"css", "colors", "names"
|
||||
],
|
||||
"files": [
|
||||
"css-color-names.json"
|
||||
]
|
||||
"version": "0.0.4"
|
||||
}
|
||||
|
86
goTorrentWebUI/node_modules/css-loader/node_modules/css-selector-tokenizer/package.json
generated
vendored
86
goTorrentWebUI/node_modules/css-loader/node_modules/css-selector-tokenizer/package.json
generated
vendored
@@ -1,40 +1,46 @@
|
||||
{
|
||||
"name": "css-selector-tokenizer",
|
||||
"version": "0.7.0",
|
||||
"description": "Parses and stringifies CSS selectors",
|
||||
"main": "lib/index.js",
|
||||
"scripts": {
|
||||
"lint": "eslint lib",
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha",
|
||||
"autotest": "chokidar lib test -c 'npm test'",
|
||||
"precover": "npm run lint",
|
||||
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
|
||||
"travis": "npm run cover -- --report lcovonly",
|
||||
"publish-patch": "npm test && npm version patch && git push && git push --tags && npm publish"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/css-modules/css-selector-tokenizer.git"
|
||||
},
|
||||
"keywords": [
|
||||
"css-modules",
|
||||
"selectors"
|
||||
"_args": [
|
||||
[
|
||||
"css-selector-tokenizer@0.7.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"files": [
|
||||
"lib"
|
||||
"_from": "css-selector-tokenizer@0.7.0",
|
||||
"_id": "css-selector-tokenizer@0.7.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=",
|
||||
"_location": "/css-loader/css-selector-tokenizer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "css-selector-tokenizer@0.7.0",
|
||||
"name": "css-selector-tokenizer",
|
||||
"escapedName": "css-selector-tokenizer",
|
||||
"rawSpec": "0.7.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.7.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader",
|
||||
"/css-loader/postcss-modules-local-by-default",
|
||||
"/css-loader/postcss-modules-scope"
|
||||
],
|
||||
"author": "Tobias Koppers @sokra",
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz",
|
||||
"_spec": "0.7.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Tobias Koppers @sokra"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/css-modules/css-selector-tokenizer/issues"
|
||||
},
|
||||
"homepage": "https://github.com/css-modules/css-selector-tokenizer",
|
||||
"dependencies": {
|
||||
"cssesc": "^0.1.0",
|
||||
"fastparse": "^1.1.1",
|
||||
"regexpu-core": "^1.0.0"
|
||||
},
|
||||
"description": "Parses and stringifies CSS selectors",
|
||||
"devDependencies": {
|
||||
"chokidar-cli": "^0.2.1",
|
||||
"codecov.io": "^0.1.2",
|
||||
@@ -45,5 +51,31 @@
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://github.com/css-modules/css-selector-tokenizer",
|
||||
"keywords": [
|
||||
"css-modules",
|
||||
"selectors"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "css-selector-tokenizer",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css-modules/css-selector-tokenizer.git"
|
||||
},
|
||||
"scripts": {
|
||||
"autotest": "chokidar lib test -c 'npm test'",
|
||||
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
|
||||
"lint": "eslint lib",
|
||||
"precover": "npm run lint",
|
||||
"pretest": "npm run lint",
|
||||
"publish-patch": "npm test && npm version patch && git push && git push --tags && npm publish",
|
||||
"test": "mocha",
|
||||
"travis": "npm run cover -- --report lcovonly"
|
||||
},
|
||||
"version": "0.7.0"
|
||||
}
|
||||
|
140
goTorrentWebUI/node_modules/css-loader/node_modules/cssesc/package.json
generated
vendored
140
goTorrentWebUI/node_modules/css-loader/node_modules/cssesc/package.json
generated
vendored
@@ -1,56 +1,88 @@
|
||||
{
|
||||
"name": "cssesc",
|
||||
"version": "0.1.0",
|
||||
"description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.",
|
||||
"homepage": "http://mths.be/cssesc",
|
||||
"main": "cssesc.js",
|
||||
"bin": "bin/cssesc",
|
||||
"man": "man/cssesc.1",
|
||||
"keywords": [
|
||||
"css",
|
||||
"escape",
|
||||
"identifier",
|
||||
"string",
|
||||
"tool"
|
||||
],
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://mths.be/mit"
|
||||
}
|
||||
],
|
||||
"author": {
|
||||
"name": "Mathias Bynens",
|
||||
"url": "http://mathiasbynens.be/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mathiasbynens/cssesc.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mathiasbynens/cssesc/issues"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT.txt",
|
||||
"cssesc.js",
|
||||
"bin/",
|
||||
"man/"
|
||||
],
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node tests/tests.js"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"grunt-shell": "~0.3.1",
|
||||
"grunt-template": "~0.2.0",
|
||||
"istanbul": "~0.1.42",
|
||||
"qunit-clib": "~1.3.0",
|
||||
"qunitjs": "~1.11.0",
|
||||
"regenerate": "~0.5.2",
|
||||
"requirejs": "~2.1.8"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"cssesc@0.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "cssesc@0.1.0",
|
||||
"_id": "cssesc@0.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=",
|
||||
"_location": "/css-loader/cssesc",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "cssesc@0.1.0",
|
||||
"name": "cssesc",
|
||||
"escapedName": "cssesc",
|
||||
"rawSpec": "0.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/css-selector-tokenizer"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz",
|
||||
"_spec": "0.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Mathias Bynens",
|
||||
"url": "http://mathiasbynens.be/"
|
||||
},
|
||||
"bin": {
|
||||
"cssesc": "bin/cssesc"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mathiasbynens/cssesc/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.",
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"grunt-shell": "~0.3.1",
|
||||
"grunt-template": "~0.2.0",
|
||||
"istanbul": "~0.1.42",
|
||||
"qunit-clib": "~1.3.0",
|
||||
"qunitjs": "~1.11.0",
|
||||
"regenerate": "~0.5.2",
|
||||
"requirejs": "~2.1.8"
|
||||
},
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT.txt",
|
||||
"cssesc.js",
|
||||
"bin/",
|
||||
"man/"
|
||||
],
|
||||
"homepage": "http://mths.be/cssesc",
|
||||
"keywords": [
|
||||
"css",
|
||||
"escape",
|
||||
"identifier",
|
||||
"string",
|
||||
"tool"
|
||||
],
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://mths.be/mit"
|
||||
}
|
||||
],
|
||||
"main": "cssesc.js",
|
||||
"man": [
|
||||
"man/cssesc.1"
|
||||
],
|
||||
"name": "cssesc",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/mathiasbynens/cssesc.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node tests/tests.js"
|
||||
},
|
||||
"version": "0.1.0"
|
||||
}
|
||||
|
100
goTorrentWebUI/node_modules/css-loader/node_modules/cssnano/package.json
generated
vendored
100
goTorrentWebUI/node_modules/css-loader/node_modules/cssnano/package.json
generated
vendored
@@ -1,27 +1,43 @@
|
||||
{
|
||||
"name": "cssnano",
|
||||
"version": "3.10.0",
|
||||
"description": "A modular minifier, built on top of the PostCSS ecosystem.",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"bundle-size": "webpack --json --config src/__tests__/_webpack.config.js | webpack-bundle-size-analyzer",
|
||||
"docs": "cd docs && npm run build && cd .. && gh-pages -d docs/dist",
|
||||
"pretest": "eslint --ignore-path .gitignore src",
|
||||
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "nyc ava src/__tests__/*.js",
|
||||
"test-012": "nyc ava src/__tests__/*.js"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"compress",
|
||||
"minify",
|
||||
"optimise",
|
||||
"optimisation",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_args": [
|
||||
[
|
||||
"cssnano@3.10.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"license": "MIT",
|
||||
"_from": "cssnano@3.10.0",
|
||||
"_id": "cssnano@3.10.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=",
|
||||
"_location": "/css-loader/cssnano",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "cssnano@3.10.0",
|
||||
"name": "cssnano",
|
||||
"escapedName": "cssnano",
|
||||
"rawSpec": "3.10.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.10.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz",
|
||||
"_spec": "3.10.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-core/register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/cssnano/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"autoprefixer": "^6.3.1",
|
||||
"decamelize": "^1.1.2",
|
||||
@@ -56,6 +72,7 @@
|
||||
"postcss-value-parser": "^3.2.3",
|
||||
"postcss-zindex": "^2.0.1"
|
||||
},
|
||||
"description": "A modular minifier, built on top of the PostCSS ecosystem.",
|
||||
"devDependencies": {
|
||||
"array-to-sentence": "^1.1.0",
|
||||
"ava": "^0.17.0",
|
||||
@@ -83,29 +100,46 @@
|
||||
"webpack": "^1.12.13",
|
||||
"webpack-bundle-size-analyzer": "^2.0.2"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/cssnano",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"repository": "ben-eb/cssnano",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT",
|
||||
"quickstart.js"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/cssnano",
|
||||
"keywords": [
|
||||
"css",
|
||||
"compress",
|
||||
"minify",
|
||||
"optimise",
|
||||
"optimisation",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "cssnano",
|
||||
"nyc": {
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"**/__tests__"
|
||||
]
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-core/register"
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/cssnano.git"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
"scripts": {
|
||||
"bundle-size": "webpack --json --config src/__tests__/_webpack.config.js | webpack-bundle-size-analyzer",
|
||||
"docs": "cd docs && npm run build && cd .. && gh-pages -d docs/dist",
|
||||
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint --ignore-path .gitignore src",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "nyc ava src/__tests__/*.js",
|
||||
"test-012": "nyc ava src/__tests__/*.js"
|
||||
},
|
||||
"tonicExampleFilename": "quickstart.js"
|
||||
"tonicExampleFilename": "quickstart.js",
|
||||
"version": "3.10.0"
|
||||
}
|
||||
|
132
goTorrentWebUI/node_modules/css-loader/node_modules/csso/package.json
generated
vendored
132
goTorrentWebUI/node_modules/css-loader/node_modules/csso/package.json
generated
vendored
@@ -1,60 +1,48 @@
|
||||
{
|
||||
"name": "csso",
|
||||
"version": "2.3.2",
|
||||
"description": "CSSO (CSS Optimizer) is a CSS minifier with structural optimisations",
|
||||
"keywords": [
|
||||
"css",
|
||||
"minifier",
|
||||
"minify",
|
||||
"compress",
|
||||
"optimisation"
|
||||
"_args": [
|
||||
[
|
||||
"csso@2.3.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"homepage": "https://github.com/css/csso",
|
||||
"author": "Sergey Kryzhanovsky <skryzhanovsky@ya.ru> (https://github.com/afelix)",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Roman Dvornov",
|
||||
"email": "rdvornov@gmail.com",
|
||||
"github-username": "lahmatiy"
|
||||
}
|
||||
"_from": "csso@2.3.2",
|
||||
"_id": "csso@2.3.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=",
|
||||
"_location": "/css-loader/csso",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "csso@2.3.2",
|
||||
"name": "csso",
|
||||
"escapedName": "csso",
|
||||
"rawSpec": "2.3.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.3.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/svgo"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": "css/csso",
|
||||
"bugs": {
|
||||
"url": "https://github.com/css/csso/issues"
|
||||
"_resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz",
|
||||
"_spec": "2.3.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sergey Kryzhanovsky",
|
||||
"email": "skryzhanovsky@ya.ru",
|
||||
"url": "https://github.com/afelix"
|
||||
},
|
||||
"bin": {
|
||||
"csso": "./bin/csso"
|
||||
},
|
||||
"main": "./lib/index",
|
||||
"eslintConfig": {
|
||||
"env": {
|
||||
"node": true,
|
||||
"mocha": true,
|
||||
"es6": true
|
||||
},
|
||||
"rules": {
|
||||
"no-duplicate-case": 2,
|
||||
"no-undef": 2,
|
||||
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha --reporter dot",
|
||||
"codestyle": "jscs lib && eslint lib test",
|
||||
"codestyle-and-test": "npm run codestyle && npm test",
|
||||
"hydrogen": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --trace_hydrogen_file=code.cfg --print-opt-code bin/csso --stat -o /dev/null",
|
||||
"coverage": "istanbul cover _mocha -- -R dot",
|
||||
"coveralls": "istanbul cover _mocha --report lcovonly -- -R dot && cat ./coverage/lcov.info | coveralls",
|
||||
"travis": "npm run codestyle-and-test && npm run coveralls",
|
||||
"browserify": "browserify --standalone csso lib/index.js | uglifyjs --compress --mangle -o dist/csso-browser.js",
|
||||
"gh-pages": "git clone -b gh-pages https://github.com/css/csso.git .gh-pages && npm run browserify && cp dist/csso-browser.js .gh-pages/ && cd .gh-pages && git commit -am \"update\" && git push && cd .. && rm -rf .gh-pages",
|
||||
"prepublish": "npm run browserify"
|
||||
"bugs": {
|
||||
"url": "https://github.com/css/csso/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"clap": "^1.0.9",
|
||||
"source-map": "^0.5.3"
|
||||
},
|
||||
"description": "CSSO (CSS Optimizer) is a CSS minifier with structural optimisations",
|
||||
"devDependencies": {
|
||||
"browserify": "^13.0.0",
|
||||
"coveralls": "^2.11.6",
|
||||
@@ -67,6 +55,24 @@
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"env": {
|
||||
"node": true,
|
||||
"mocha": true,
|
||||
"es6": true
|
||||
},
|
||||
"rules": {
|
||||
"no-duplicate-case": 2,
|
||||
"no-undef": 2,
|
||||
"no-unused-vars": [
|
||||
2,
|
||||
{
|
||||
"vars": "all",
|
||||
"args": "after-used"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"dist/csso-browser.js",
|
||||
@@ -74,5 +80,39 @@
|
||||
"HISTORY.md",
|
||||
"LICENSE",
|
||||
"README.md"
|
||||
]
|
||||
],
|
||||
"homepage": "https://github.com/css/csso",
|
||||
"keywords": [
|
||||
"css",
|
||||
"minifier",
|
||||
"minify",
|
||||
"compress",
|
||||
"optimisation"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./lib/index",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Roman Dvornov",
|
||||
"email": "rdvornov@gmail.com"
|
||||
}
|
||||
],
|
||||
"name": "csso",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css/csso.git"
|
||||
},
|
||||
"scripts": {
|
||||
"browserify": "browserify --standalone csso lib/index.js | uglifyjs --compress --mangle -o dist/csso-browser.js",
|
||||
"codestyle": "jscs lib && eslint lib test",
|
||||
"codestyle-and-test": "npm run codestyle && npm test",
|
||||
"coverage": "istanbul cover _mocha -- -R dot",
|
||||
"coveralls": "istanbul cover _mocha --report lcovonly -- -R dot && cat ./coverage/lcov.info | coveralls",
|
||||
"gh-pages": "git clone -b gh-pages https://github.com/css/csso.git .gh-pages && npm run browserify && cp dist/csso-browser.js .gh-pages/ && cd .gh-pages && git commit -am \"update\" && git push && cd .. && rm -rf .gh-pages",
|
||||
"hydrogen": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --trace_hydrogen_file=code.cfg --print-opt-code bin/csso --stat -o /dev/null",
|
||||
"prepublish": "npm run browserify",
|
||||
"test": "mocha --reporter dot",
|
||||
"travis": "npm run codestyle-and-test && npm run coveralls"
|
||||
},
|
||||
"version": "2.3.2"
|
||||
}
|
||||
|
59
goTorrentWebUI/node_modules/css-loader/node_modules/decamelize/package.json
generated
vendored
59
goTorrentWebUI/node_modules/css-loader/node_modules/decamelize/package.json
generated
vendored
@@ -1,23 +1,52 @@
|
||||
{
|
||||
"name": "decamelize",
|
||||
"version": "1.2.0",
|
||||
"description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/decamelize",
|
||||
"_args": [
|
||||
[
|
||||
"decamelize@1.2.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "decamelize@1.2.0",
|
||||
"_id": "decamelize@1.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
|
||||
"_location": "/css-loader/decamelize",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "decamelize@1.2.0",
|
||||
"name": "decamelize",
|
||||
"escapedName": "decamelize",
|
||||
"rawSpec": "1.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.2.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
|
||||
"_spec": "1.2.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/decamelize/issues"
|
||||
},
|
||||
"description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/decamelize#readme",
|
||||
"keywords": [
|
||||
"decamelize",
|
||||
"decamelcase",
|
||||
@@ -31,8 +60,14 @@
|
||||
"text",
|
||||
"convert"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
}
|
||||
"license": "MIT",
|
||||
"name": "decamelize",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/decamelize.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "1.2.0"
|
||||
}
|
||||
|
135
goTorrentWebUI/node_modules/css-loader/node_modules/defined/package.json
generated
vendored
135
goTorrentWebUI/node_modules/css-loader/node_modules/defined/package.json
generated
vendored
@@ -1,46 +1,93 @@
|
||||
{
|
||||
"name" : "defined",
|
||||
"version" : "1.0.0",
|
||||
"description" : "return the first argument that is `!== undefined`",
|
||||
"main" : "index.js",
|
||||
"directories" : {
|
||||
"example" : "example",
|
||||
"test" : "test"
|
||||
},
|
||||
"dependencies" : {},
|
||||
"devDependencies" : {
|
||||
"tape" : "~3.5.0"
|
||||
},
|
||||
"scripts" : {
|
||||
"test" : "tape test/*.js"
|
||||
},
|
||||
"testling" : {
|
||||
"files" : "test/*.js",
|
||||
"browsers" : {
|
||||
"ie" : [ 6, 7, 8, 9 ],
|
||||
"ff" : [ 3.5, 10, 15.0 ],
|
||||
"chrome" : [ 10, 22 ],
|
||||
"safari" : [ 5.1 ],
|
||||
"opera" : [ 12 ]
|
||||
}
|
||||
},
|
||||
"repository" : {
|
||||
"type" : "git",
|
||||
"url" : "git://github.com/substack/defined.git"
|
||||
},
|
||||
"homepage" : "https://github.com/substack/defined",
|
||||
"keywords" : [
|
||||
"undefined",
|
||||
"short-circuit",
|
||||
"||",
|
||||
"or",
|
||||
"//",
|
||||
"defined-or"
|
||||
],
|
||||
"author" : {
|
||||
"name" : "James Halliday",
|
||||
"email" : "mail@substack.net",
|
||||
"url" : "http://substack.net"
|
||||
},
|
||||
"license" : "MIT"
|
||||
"_args": [
|
||||
[
|
||||
"defined@1.0.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "defined@1.0.0",
|
||||
"_id": "defined@1.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=",
|
||||
"_location": "/css-loader/defined",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "defined@1.0.0",
|
||||
"name": "defined",
|
||||
"escapedName": "defined",
|
||||
"rawSpec": "1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz",
|
||||
"_spec": "1.0.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "James Halliday",
|
||||
"email": "mail@substack.net",
|
||||
"url": "http://substack.net"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/substack/defined/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "return the first argument that is `!== undefined`",
|
||||
"devDependencies": {
|
||||
"tape": "~3.5.0"
|
||||
},
|
||||
"directories": {
|
||||
"example": "example",
|
||||
"test": "test"
|
||||
},
|
||||
"homepage": "https://github.com/substack/defined",
|
||||
"keywords": [
|
||||
"undefined",
|
||||
"short-circuit",
|
||||
"||",
|
||||
"or",
|
||||
"//",
|
||||
"defined-or"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "defined",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/substack/defined.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tape test/*.js"
|
||||
},
|
||||
"testling": {
|
||||
"files": "test/*.js",
|
||||
"browsers": {
|
||||
"ie": [
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9
|
||||
],
|
||||
"ff": [
|
||||
3.5,
|
||||
10,
|
||||
15
|
||||
],
|
||||
"chrome": [
|
||||
10,
|
||||
22
|
||||
],
|
||||
"safari": [
|
||||
5.1
|
||||
],
|
||||
"opera": [
|
||||
12
|
||||
]
|
||||
}
|
||||
},
|
||||
"version": "1.0.0"
|
||||
}
|
||||
|
88
goTorrentWebUI/node_modules/css-loader/node_modules/electron-to-chromium/package.json
generated
vendored
88
goTorrentWebUI/node_modules/css-loader/node_modules/electron-to-chromium/package.json
generated
vendored
@@ -1,36 +1,70 @@
|
||||
{
|
||||
"name": "electron-to-chromium",
|
||||
"version": "1.3.27",
|
||||
"_args": [
|
||||
[
|
||||
"electron-to-chromium@1.3.27",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "electron-to-chromium@1.3.27",
|
||||
"_id": "electron-to-chromium@1.3.27",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-eOy4o5kGYYe7N07t412ccFZagD0=",
|
||||
"_location": "/css-loader/electron-to-chromium",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "electron-to-chromium@1.3.27",
|
||||
"name": "electron-to-chromium",
|
||||
"escapedName": "electron-to-chromium",
|
||||
"rawSpec": "1.3.27",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.3.27"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/browserslist"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz",
|
||||
"_spec": "1.3.27",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Kilian Valkhof"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/kilian/electron-to-chromium/issues"
|
||||
},
|
||||
"description": "Provides a list of electron-to-chromium version mappings",
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"versions.js",
|
||||
"full-versions.js",
|
||||
"chromium-versions.js",
|
||||
"full-chromium-versions.js"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "node build.js",
|
||||
"update": "node automated-update.js",
|
||||
"test": "nyc ava --verbose",
|
||||
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/kilian/electron-to-chromium/"
|
||||
},
|
||||
"keywords": [
|
||||
"electron",
|
||||
"chrome",
|
||||
"browserlist"
|
||||
],
|
||||
"author": "Kilian Valkhof",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"ava": "^0.18.2",
|
||||
"codecov": "^2.1.0",
|
||||
"nyc": "^10.2.0",
|
||||
"request": "^2.79.0",
|
||||
"shelljs": "^0.7.6"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"versions.js",
|
||||
"full-versions.js",
|
||||
"chromium-versions.js",
|
||||
"full-chromium-versions.js"
|
||||
],
|
||||
"homepage": "https://github.com/kilian/electron-to-chromium#readme",
|
||||
"keywords": [
|
||||
"electron",
|
||||
"chrome",
|
||||
"browserlist"
|
||||
],
|
||||
"license": "ISC",
|
||||
"main": "index.js",
|
||||
"name": "electron-to-chromium",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kilian/electron-to-chromium.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node build.js",
|
||||
"report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
||||
"test": "nyc ava --verbose",
|
||||
"update": "node automated-update.js"
|
||||
},
|
||||
"version": "1.3.27"
|
||||
}
|
||||
|
68
goTorrentWebUI/node_modules/css-loader/node_modules/emojis-list/package.json
generated
vendored
68
goTorrentWebUI/node_modules/css-loader/node_modules/emojis-list/package.json
generated
vendored
@@ -1,28 +1,41 @@
|
||||
{
|
||||
"name": "emojis-list",
|
||||
"description": "Complete list of standard emojis.",
|
||||
"homepage": "https://github.com/Kikobeats/emojis-list",
|
||||
"version": "2.1.0",
|
||||
"main": "./index.js",
|
||||
"author": {
|
||||
"email": "josefrancisco.verdu@gmail.com",
|
||||
"name": "Kiko Beats",
|
||||
"url": "https://github.com/Kikobeats"
|
||||
"_args": [
|
||||
[
|
||||
"emojis-list@2.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "emojis-list@2.1.0",
|
||||
"_id": "emojis-list@2.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
|
||||
"_location": "/css-loader/emojis-list",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "emojis-list@2.1.0",
|
||||
"name": "emojis-list",
|
||||
"escapedName": "emojis-list",
|
||||
"rawSpec": "2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kikobeats/emojis-list.git"
|
||||
"_requiredBy": [
|
||||
"/css-loader/loader-utils"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Kiko Beats",
|
||||
"email": "josefrancisco.verdu@gmail.com",
|
||||
"url": "https://github.com/Kikobeats"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Kikobeats/emojis-list/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"archive",
|
||||
"complete",
|
||||
"emoji",
|
||||
"list",
|
||||
"standard"
|
||||
],
|
||||
"description": "Complete list of standard emojis.",
|
||||
"devDependencies": {
|
||||
"acho": "latest",
|
||||
"browserify": "latest",
|
||||
@@ -42,10 +55,25 @@
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/Kikobeats/emojis-list",
|
||||
"keywords": [
|
||||
"archive",
|
||||
"complete",
|
||||
"emoji",
|
||||
"list",
|
||||
"standard"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "./index.js",
|
||||
"name": "emojis-list",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kikobeats/emojis-list.git"
|
||||
},
|
||||
"scripts": {
|
||||
"pretest": "standard update.js",
|
||||
"test": "echo 'YOLO'",
|
||||
"update": "node update"
|
||||
},
|
||||
"license": "MIT"
|
||||
"version": "2.1.0"
|
||||
}
|
||||
|
80
goTorrentWebUI/node_modules/css-loader/node_modules/escape-string-regexp/package.json
generated
vendored
80
goTorrentWebUI/node_modules/css-loader/node_modules/escape-string-regexp/package.json
generated
vendored
@@ -1,27 +1,57 @@
|
||||
{
|
||||
"name": "escape-string-regexp",
|
||||
"version": "1.0.5",
|
||||
"description": "Escape RegExp special characters",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/escape-string-regexp",
|
||||
"_args": [
|
||||
[
|
||||
"escape-string-regexp@1.0.5",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "escape-string-regexp@1.0.5",
|
||||
"_id": "escape-string-regexp@1.0.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
|
||||
"_location": "/css-loader/escape-string-regexp",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "escape-string-regexp@1.0.5",
|
||||
"name": "escape-string-regexp",
|
||||
"escapedName": "escape-string-regexp",
|
||||
"rawSpec": "1.0.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.5"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/chalk",
|
||||
"/css-loader/icss-utils/chalk",
|
||||
"/css-loader/postcss-modules-extract-imports/chalk",
|
||||
"/css-loader/postcss-modules-local-by-default/chalk",
|
||||
"/css-loader/postcss-modules-scope/chalk",
|
||||
"/css-loader/postcss-modules-values/chalk"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
||||
"_spec": "1.0.5",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/escape-string-regexp/issues"
|
||||
},
|
||||
"description": "Escape RegExp special characters",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/escape-string-regexp#readme",
|
||||
"keywords": [
|
||||
"escape",
|
||||
"regex",
|
||||
@@ -34,8 +64,26 @@
|
||||
"special",
|
||||
"characters"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
}
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Boy Nicolai Appelman",
|
||||
"email": "joshua@jbna.nl",
|
||||
"url": "jbna.nl"
|
||||
}
|
||||
],
|
||||
"name": "escape-string-regexp",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/escape-string-regexp.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "1.0.5"
|
||||
}
|
||||
|
126
goTorrentWebUI/node_modules/css-loader/node_modules/esprima/package.json
generated
vendored
126
goTorrentWebUI/node_modules/css-loader/node_modules/esprima/package.json
generated
vendored
@@ -1,40 +1,44 @@
|
||||
{
|
||||
"name": "esprima",
|
||||
"description": "ECMAScript parsing infrastructure for multipurpose analysis",
|
||||
"homepage": "http://esprima.org",
|
||||
"main": "esprima.js",
|
||||
"bin": {
|
||||
"esparse": "./bin/esparse.js",
|
||||
"esvalidate": "./bin/esvalidate.js"
|
||||
},
|
||||
"version": "2.7.3",
|
||||
"files": [
|
||||
"bin",
|
||||
"unit-tests.js",
|
||||
"esprima.js"
|
||||
"_args": [
|
||||
[
|
||||
"esprima@2.7.3",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
"_from": "esprima@2.7.3",
|
||||
"_id": "esprima@2.7.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=",
|
||||
"_location": "/css-loader/esprima",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "esprima@2.7.3",
|
||||
"name": "esprima",
|
||||
"escapedName": "esprima",
|
||||
"rawSpec": "2.7.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.7.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/js-yaml"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
|
||||
"_spec": "2.7.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ariya Hidayat",
|
||||
"email": "ariya.hidayat@gmail.com"
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Ariya Hidayat",
|
||||
"email": "ariya.hidayat@gmail.com",
|
||||
"web": "http://ariya.ofilabs.com"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jquery/esprima.git"
|
||||
"bin": {
|
||||
"esparse": "./bin/esparse.js",
|
||||
"esvalidate": "./bin/esvalidate.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jquery/esprima/issues"
|
||||
},
|
||||
"license": "BSD-2-Clause",
|
||||
"description": "ECMAScript parsing infrastructure for multipurpose analysis",
|
||||
"devDependencies": {
|
||||
"codecov.io": "~0.1.6",
|
||||
"escomplex-js": "1.2.0",
|
||||
@@ -59,6 +63,15 @@
|
||||
"temp": "~0.8.3",
|
||||
"unicode-7.0.0": "~0.1.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"unit-tests.js",
|
||||
"esprima.js"
|
||||
],
|
||||
"homepage": "http://esprima.org",
|
||||
"keywords": [
|
||||
"ast",
|
||||
"ecmascript",
|
||||
@@ -66,34 +79,49 @@
|
||||
"parser",
|
||||
"syntax"
|
||||
],
|
||||
"license": "BSD-2-Clause",
|
||||
"main": "esprima.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Ariya Hidayat",
|
||||
"email": "ariya.hidayat@gmail.com",
|
||||
"url": "http://ariya.ofilabs.com"
|
||||
}
|
||||
],
|
||||
"name": "esprima",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jquery/esprima.git"
|
||||
},
|
||||
"scripts": {
|
||||
"check-version": "node test/check-version.js",
|
||||
"jscs": "jscs -p crockford esprima.js && jscs -p crockford test/*.js",
|
||||
"eslint": "node node_modules/eslint/bin/eslint.js -c .lintrc esprima.js",
|
||||
"complexity": "node test/check-complexity.js",
|
||||
"static-analysis": "npm run check-version && npm run jscs && npm run eslint && npm run complexity",
|
||||
"unit-tests": "node test/unit-tests.js",
|
||||
"grammar-tests": "node test/grammar-tests.js",
|
||||
"regression-tests": "node test/regression-tests.js",
|
||||
"all-tests": "npm run generate-fixtures && npm run unit-tests && npm run grammar-tests && npm run regression-tests",
|
||||
"generate-fixtures": "node tools/generate-fixtures.js",
|
||||
"browser-tests": "npm run generate-fixtures && cd test && karma start --single-run",
|
||||
"saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js",
|
||||
"saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js",
|
||||
"saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js",
|
||||
"analyze-coverage": "istanbul cover test/unit-tests.js",
|
||||
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100",
|
||||
"dynamic-analysis": "npm run analyze-coverage && npm run check-coverage",
|
||||
"test": "npm run all-tests && npm run static-analysis && npm run dynamic-analysis",
|
||||
"profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor",
|
||||
"appveyor": "npm run all-tests && npm run browser-tests && npm run dynamic-analysis",
|
||||
"benchmark": "node test/benchmarks.js",
|
||||
"benchmark-quick": "node test/benchmarks.js quick",
|
||||
"codecov" : "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml",
|
||||
"downstream": "node test/downstream.js",
|
||||
"travis": "npm test",
|
||||
"browser-tests": "npm run generate-fixtures && cd test && karma start --single-run",
|
||||
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100",
|
||||
"check-version": "node test/check-version.js",
|
||||
"circleci": "npm test && npm run codecov && npm run downstream",
|
||||
"appveyor": "npm run all-tests && npm run browser-tests && npm run dynamic-analysis",
|
||||
"codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml",
|
||||
"complexity": "node test/check-complexity.js",
|
||||
"downstream": "node test/downstream.js",
|
||||
"droneio": "npm test && npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari",
|
||||
"generate-regex": "node tools/generate-identifier-regex.js"
|
||||
}
|
||||
"dynamic-analysis": "npm run analyze-coverage && npm run check-coverage",
|
||||
"eslint": "node node_modules/eslint/bin/eslint.js -c .lintrc esprima.js",
|
||||
"generate-fixtures": "node tools/generate-fixtures.js",
|
||||
"generate-regex": "node tools/generate-identifier-regex.js",
|
||||
"grammar-tests": "node test/grammar-tests.js",
|
||||
"jscs": "jscs -p crockford esprima.js && jscs -p crockford test/*.js",
|
||||
"profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor",
|
||||
"regression-tests": "node test/regression-tests.js",
|
||||
"saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js",
|
||||
"saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js",
|
||||
"saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js",
|
||||
"static-analysis": "npm run check-version && npm run jscs && npm run eslint && npm run complexity",
|
||||
"test": "npm run all-tests && npm run static-analysis && npm run dynamic-analysis",
|
||||
"travis": "npm test",
|
||||
"unit-tests": "node test/unit-tests.js"
|
||||
},
|
||||
"version": "2.7.3"
|
||||
}
|
||||
|
91
goTorrentWebUI/node_modules/css-loader/node_modules/esutils/package.json
generated
vendored
91
goTorrentWebUI/node_modules/css-loader/node_modules/esutils/package.json
generated
vendored
@@ -1,31 +1,36 @@
|
||||
{
|
||||
"name": "esutils",
|
||||
"_args": [
|
||||
[
|
||||
"esutils@2.0.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "esutils@2.0.2",
|
||||
"_id": "esutils@2.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
|
||||
"_location": "/css-loader/esutils",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "esutils@2.0.2",
|
||||
"name": "esutils",
|
||||
"escapedName": "esutils",
|
||||
"rawSpec": "2.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/babel-code-frame"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
|
||||
"_spec": "2.0.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"bugs": {
|
||||
"url": "https://github.com/estools/esutils/issues"
|
||||
},
|
||||
"description": "utility box for ECMAScript language tools",
|
||||
"homepage": "https://github.com/estools/esutils",
|
||||
"main": "lib/utils.js",
|
||||
"version": "2.0.2",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"directories": {
|
||||
"lib": "./lib"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE.BSD",
|
||||
"README.md",
|
||||
"lib"
|
||||
],
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Yusuke Suzuki",
|
||||
"email": "utatane.tea@gmail.com",
|
||||
"web": "http://github.com/Constellation"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/estools/esutils.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "~1.7.2",
|
||||
"coffee-script": "~1.6.3",
|
||||
@@ -34,16 +39,42 @@
|
||||
"regenerate": "~1.2.1",
|
||||
"unicode-7.0.0": "^0.1.5"
|
||||
},
|
||||
"directories": {
|
||||
"lib": "./lib"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE.BSD",
|
||||
"README.md",
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://github.com/estools/esutils",
|
||||
"licenses": [
|
||||
{
|
||||
"type": "BSD",
|
||||
"url": "http://github.com/estools/esutils/raw/master/LICENSE.BSD"
|
||||
}
|
||||
],
|
||||
"main": "lib/utils.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Yusuke Suzuki",
|
||||
"email": "utatane.tea@gmail.com",
|
||||
"url": "http://github.com/Constellation"
|
||||
}
|
||||
],
|
||||
"name": "esutils",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/estools/esutils.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "npm run-script lint && npm run-script unit-test",
|
||||
"generate-regex": "node tools/generate-identifier-regex.js",
|
||||
"lint": "jshint lib/*.js",
|
||||
"unit-test": "mocha --compilers coffee:coffee-script -R spec",
|
||||
"generate-regex": "node tools/generate-identifier-regex.js"
|
||||
}
|
||||
"test": "npm run-script lint && npm run-script unit-test",
|
||||
"unit-test": "mocha --compilers coffee:coffee-script -R spec"
|
||||
},
|
||||
"version": "2.0.2"
|
||||
}
|
||||
|
78
goTorrentWebUI/node_modules/css-loader/node_modules/fastparse/package.json
generated
vendored
78
goTorrentWebUI/node_modules/css-loader/node_modules/fastparse/package.json
generated
vendored
@@ -1,36 +1,66 @@
|
||||
{
|
||||
"name": "fastparse",
|
||||
"version": "1.1.1",
|
||||
"description": "A very simple and stupid parser, based on a statemachine and regular expressions.",
|
||||
"main": "lib/Parser.js",
|
||||
"scripts": {
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha",
|
||||
"travis": "npm run cover -- --report lcovonly",
|
||||
"lint": "eslint lib",
|
||||
"precover": "npm run lint",
|
||||
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
|
||||
"publish-patch": "mocha && npm version patch && git push && git push --tags && npm publish"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/webpack/fastparse.git"
|
||||
},
|
||||
"keywords": [
|
||||
"parser",
|
||||
"regexp"
|
||||
"_args": [
|
||||
[
|
||||
"fastparse@1.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Tobias Koppers @sokra",
|
||||
"license": "MIT",
|
||||
"_from": "fastparse@1.1.1",
|
||||
"_id": "fastparse@1.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=",
|
||||
"_location": "/css-loader/fastparse",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "fastparse@1.1.1",
|
||||
"name": "fastparse",
|
||||
"escapedName": "fastparse",
|
||||
"rawSpec": "1.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/css-selector-tokenizer"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz",
|
||||
"_spec": "1.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Tobias Koppers @sokra"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/webpack/fastparse/issues"
|
||||
},
|
||||
"homepage": "https://github.com/webpack/fastparse",
|
||||
"description": "A very simple and stupid parser, based on a statemachine and regular expressions.",
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.11.2",
|
||||
"eslint": "^0.21.2",
|
||||
"istanbul": "^0.3.14",
|
||||
"mocha": "^2.2.5",
|
||||
"should": "^6.0.3"
|
||||
}
|
||||
},
|
||||
"homepage": "https://github.com/webpack/fastparse",
|
||||
"keywords": [
|
||||
"parser",
|
||||
"regexp"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/Parser.js",
|
||||
"name": "fastparse",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/webpack/fastparse.git"
|
||||
},
|
||||
"scripts": {
|
||||
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
|
||||
"lint": "eslint lib",
|
||||
"precover": "npm run lint",
|
||||
"pretest": "npm run lint",
|
||||
"publish-patch": "mocha && npm version patch && git push && git push --tags && npm publish",
|
||||
"test": "mocha",
|
||||
"travis": "npm run cover -- --report lcovonly"
|
||||
},
|
||||
"version": "1.1.1"
|
||||
}
|
||||
|
58
goTorrentWebUI/node_modules/css-loader/node_modules/flatten/package.json
generated
vendored
58
goTorrentWebUI/node_modules/css-loader/node_modules/flatten/package.json
generated
vendored
@@ -1,21 +1,57 @@
|
||||
{
|
||||
"author": "Joshua Holbrook <josh.holbrook@gmail.com> (http://jesusabdullah.net)",
|
||||
"name": "flatten",
|
||||
"_args": [
|
||||
[
|
||||
"flatten@1.0.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "flatten@1.0.2",
|
||||
"_id": "flatten@1.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=",
|
||||
"_location": "/css-loader/flatten",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "flatten@1.0.2",
|
||||
"name": "flatten",
|
||||
"escapedName": "flatten",
|
||||
"rawSpec": "1.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-selector-parser"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz",
|
||||
"_spec": "1.0.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Joshua Holbrook",
|
||||
"email": "josh.holbrook@gmail.com",
|
||||
"url": "http://jesusabdullah.net"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jesusabdullah/node-flatten/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Flatten arbitrarily nested arrays into a non-nested list of non-array items",
|
||||
"version": "1.0.2",
|
||||
"devDependencies": {},
|
||||
"engines": {
|
||||
"node": "*"
|
||||
},
|
||||
"homepage": "https://github.com/jesusabdullah/node-flatten#readme",
|
||||
"license": "MIT",
|
||||
"main": "./index.js",
|
||||
"name": "flatten",
|
||||
"optionalDependencies": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/jesusabdullah/node-flatten.git"
|
||||
},
|
||||
"main": "./index.js",
|
||||
"scripts": {
|
||||
"test": "node ./test.js"
|
||||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"optionalDependencies": {},
|
||||
"engines": {
|
||||
"node": "*"
|
||||
}
|
||||
"version": "1.0.2"
|
||||
}
|
||||
|
80
goTorrentWebUI/node_modules/css-loader/node_modules/function-bind/package.json
generated
vendored
80
goTorrentWebUI/node_modules/css-loader/node_modules/function-bind/package.json
generated
vendored
@@ -1,17 +1,40 @@
|
||||
{
|
||||
"name": "function-bind",
|
||||
"version": "1.1.1",
|
||||
"description": "Implementation of Function.prototype.bind",
|
||||
"keywords": [
|
||||
"function",
|
||||
"bind",
|
||||
"shim",
|
||||
"es5"
|
||||
"_args": [
|
||||
[
|
||||
"function-bind@1.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Raynos <raynos2@gmail.com>",
|
||||
"repository": "git://github.com/Raynos/function-bind.git",
|
||||
"main": "index",
|
||||
"homepage": "https://github.com/Raynos/function-bind",
|
||||
"_from": "function-bind@1.1.1",
|
||||
"_id": "function-bind@1.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
|
||||
"_location": "/css-loader/function-bind",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "function-bind@1.1.1",
|
||||
"name": "function-bind",
|
||||
"escapedName": "function-bind",
|
||||
"rawSpec": "1.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/has"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
||||
"_spec": "1.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Raynos",
|
||||
"email": "raynos2@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Raynos/function-bind/issues",
|
||||
"email": "raynos2@gmail.com"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Raynos"
|
||||
@@ -21,11 +44,8 @@
|
||||
"url": "https://github.com/ljharb"
|
||||
}
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/Raynos/function-bind/issues",
|
||||
"email": "raynos2@gmail.com"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Implementation of Function.prototype.bind",
|
||||
"devDependencies": {
|
||||
"@ljharb/eslint-config": "^12.2.1",
|
||||
"covert": "^1.1.0",
|
||||
@@ -33,16 +53,29 @@
|
||||
"jscs": "^3.0.7",
|
||||
"tape": "^4.8.0"
|
||||
},
|
||||
"homepage": "https://github.com/Raynos/function-bind",
|
||||
"keywords": [
|
||||
"function",
|
||||
"bind",
|
||||
"shim",
|
||||
"es5"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index",
|
||||
"name": "function-bind",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/Raynos/function-bind.git"
|
||||
},
|
||||
"scripts": {
|
||||
"coverage": "covert test/*.js",
|
||||
"eslint": "eslint *.js */*.js",
|
||||
"jscs": "jscs *.js */*.js",
|
||||
"lint": "npm run jscs && npm run eslint",
|
||||
"posttest": "npm run coverage -- --quiet",
|
||||
"pretest": "npm run lint",
|
||||
"test": "npm run tests-only",
|
||||
"posttest": "npm run coverage -- --quiet",
|
||||
"tests-only": "node test",
|
||||
"coverage": "covert test/*.js",
|
||||
"lint": "npm run jscs && npm run eslint",
|
||||
"jscs": "jscs *.js */*.js",
|
||||
"eslint": "eslint *.js */*.js"
|
||||
"tests-only": "node test"
|
||||
},
|
||||
"testling": {
|
||||
"files": "test/index.js",
|
||||
@@ -59,5 +92,6 @@
|
||||
"iphone/6.0..latest",
|
||||
"android-browser/4.2..latest"
|
||||
]
|
||||
}
|
||||
},
|
||||
"version": "1.1.1"
|
||||
}
|
||||
|
77
goTorrentWebUI/node_modules/css-loader/node_modules/has-ansi/package.json
generated
vendored
77
goTorrentWebUI/node_modules/css-loader/node_modules/has-ansi/package.json
generated
vendored
@@ -1,27 +1,54 @@
|
||||
{
|
||||
"name": "has-ansi",
|
||||
"version": "2.0.0",
|
||||
"description": "Check if a string has ANSI escape codes",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/has-ansi",
|
||||
"_args": [
|
||||
[
|
||||
"has-ansi@2.0.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "has-ansi@2.0.0",
|
||||
"_id": "has-ansi@2.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
|
||||
"_location": "/css-loader/has-ansi",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "has-ansi@2.0.0",
|
||||
"name": "has-ansi",
|
||||
"escapedName": "has-ansi",
|
||||
"rawSpec": "2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/chalk"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
|
||||
"_spec": "2.0.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/has-ansi/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-regex": "^2.0.0"
|
||||
},
|
||||
"description": "Check if a string has ANSI escape codes",
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/has-ansi#readme",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
@@ -46,10 +73,26 @@
|
||||
"pattern",
|
||||
"has"
|
||||
],
|
||||
"dependencies": {
|
||||
"ansi-regex": "^2.0.0"
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
}
|
||||
],
|
||||
"name": "has-ansi",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/has-ansi.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
}
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
79
goTorrentWebUI/node_modules/css-loader/node_modules/has-flag/package.json
generated
vendored
79
goTorrentWebUI/node_modules/css-loader/node_modules/has-flag/package.json
generated
vendored
@@ -1,28 +1,51 @@
|
||||
{
|
||||
"name": "has-flag",
|
||||
"version": "1.0.0",
|
||||
"description": "Check if argv has a specific flag",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/has-flag",
|
||||
"_args": [
|
||||
[
|
||||
"has-flag@1.0.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "has-flag@1.0.0",
|
||||
"_id": "has-flag@1.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
|
||||
"_location": "/css-loader/has-flag",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "has-flag@1.0.0",
|
||||
"name": "has-flag",
|
||||
"escapedName": "has-flag",
|
||||
"rawSpec": "1.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss/supports-color"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
|
||||
"_spec": "1.0.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
|
||||
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/has-flag/issues"
|
||||
},
|
||||
"description": "Check if argv has a specific flag",
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
||||
"keywords": [
|
||||
"has",
|
||||
"check",
|
||||
@@ -42,7 +65,31 @@
|
||||
"minimist",
|
||||
"optimist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
}
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
},
|
||||
{
|
||||
"name": "JD Ballard",
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"url": "github.com/qix-"
|
||||
}
|
||||
],
|
||||
"name": "has-flag",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "1.0.0"
|
||||
}
|
||||
|
65
goTorrentWebUI/node_modules/css-loader/node_modules/has/package.json
generated
vendored
65
goTorrentWebUI/node_modules/css-loader/node_modules/has/package.json
generated
vendored
@@ -1,29 +1,48 @@
|
||||
{
|
||||
"name": "has",
|
||||
"description": "Object.prototype.hasOwnProperty.call shortcut",
|
||||
"version": "1.0.1",
|
||||
"homepage": "https://github.com/tarruda/has",
|
||||
"_args": [
|
||||
[
|
||||
"has@1.0.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "has@1.0.1",
|
||||
"_id": "has@1.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=",
|
||||
"_location": "/css-loader/has",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "has@1.0.1",
|
||||
"name": "has",
|
||||
"escapedName": "has",
|
||||
"rawSpec": "1.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/colormin",
|
||||
"/css-loader/cssnano",
|
||||
"/css-loader/postcss-merge-idents",
|
||||
"/css-loader/postcss-minify-selectors",
|
||||
"/css-loader/postcss-reduce-transforms",
|
||||
"/css-loader/postcss-zindex"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz",
|
||||
"_spec": "1.0.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Thiago de Arruda",
|
||||
"email": "tpadilha84@gmail.com"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/tarruda/has.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/tarruda/has/issues"
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "https://github.com/tarruda/has/blob/master/LICENSE-MIT"
|
||||
}
|
||||
],
|
||||
"main": "./src/index",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.0.2"
|
||||
},
|
||||
"description": "Object.prototype.hasOwnProperty.call shortcut",
|
||||
"devDependencies": {
|
||||
"chai": "~1.7.2",
|
||||
"mocha": "^1.21.4"
|
||||
@@ -31,7 +50,21 @@
|
||||
"engines": {
|
||||
"node": ">= 0.8.0"
|
||||
},
|
||||
"homepage": "https://github.com/tarruda/has",
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "https://github.com/tarruda/has/blob/master/LICENSE-MIT"
|
||||
}
|
||||
],
|
||||
"main": "./src/index",
|
||||
"name": "has",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/tarruda/has.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node_modules/mocha/bin/mocha"
|
||||
}
|
||||
},
|
||||
"version": "1.0.1"
|
||||
}
|
||||
|
58
goTorrentWebUI/node_modules/css-loader/node_modules/html-comment-regex/package.json
generated
vendored
58
goTorrentWebUI/node_modules/css-loader/node_modules/html-comment-regex/package.json
generated
vendored
@@ -1,18 +1,51 @@
|
||||
{
|
||||
"name": "html-comment-regex",
|
||||
"version": "1.1.1",
|
||||
"description": "Regular expression for matching HTML comments",
|
||||
"homepage": "https://github.com/stevemao/html-comment-regex",
|
||||
"_args": [
|
||||
[
|
||||
"html-comment-regex@1.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "html-comment-regex@1.1.1",
|
||||
"_id": "html-comment-regex@1.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-ZouTd26q5V696POtRkswekljYl4=",
|
||||
"_location": "/css-loader/html-comment-regex",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "html-comment-regex@1.1.1",
|
||||
"name": "html-comment-regex",
|
||||
"escapedName": "html-comment-regex",
|
||||
"rawSpec": "1.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/is-svg"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz",
|
||||
"_spec": "1.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Steve Mao",
|
||||
"email": "maochenyan@gmail.com",
|
||||
"url": "https://github.com/stevemao"
|
||||
},
|
||||
"repository": "stevemao/html-comment-regex",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/stevemao/html-comment-regex/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Regular expression for matching HTML comments",
|
||||
"devDependencies": {
|
||||
"jscs": "^1.11.3",
|
||||
"jshint": "^2.6.3",
|
||||
"mocha": "*"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/stevemao/html-comment-regex",
|
||||
"keywords": [
|
||||
"html-comment-regex",
|
||||
"text",
|
||||
@@ -30,14 +63,15 @@
|
||||
"HTML",
|
||||
"HyperText Markup Language"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"jscs": "^1.11.3",
|
||||
"jshint": "^2.6.3",
|
||||
"mocha": "*"
|
||||
"license": "MIT",
|
||||
"name": "html-comment-regex",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/stevemao/html-comment-regex.git"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "jshint *.js --exclude node_modules && jscs *.js",
|
||||
"test": "npm run-script lint && mocha"
|
||||
}
|
||||
},
|
||||
"version": "1.1.1"
|
||||
}
|
||||
|
82
goTorrentWebUI/node_modules/css-loader/node_modules/icss-replace-symbols/package.json
generated
vendored
82
goTorrentWebUI/node_modules/css-loader/node_modules/icss-replace-symbols/package.json
generated
vendored
@@ -1,33 +1,39 @@
|
||||
{
|
||||
"name": "icss-replace-symbols",
|
||||
"version": "1.1.0",
|
||||
"description": "Replacing symbols during the linking phase of ICSS",
|
||||
"main": "lib/index.js",
|
||||
"scripts": {
|
||||
"lint": "standard src test",
|
||||
"build": "babel --out-dir lib src",
|
||||
"autotest": "chokidar src test -c 'npm test'",
|
||||
"test": "mocha --compilers js:babel-register",
|
||||
"posttest": "npm run lint && npm run build",
|
||||
"travis": "npm run test",
|
||||
"prepublish": "npm run build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css-modules/icss-replace-symbols.git"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"modules",
|
||||
"icss",
|
||||
"postcss"
|
||||
"_args": [
|
||||
[
|
||||
"icss-replace-symbols@1.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Glen Maddern",
|
||||
"license": "ISC",
|
||||
"_from": "icss-replace-symbols@1.1.0",
|
||||
"_id": "icss-replace-symbols@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=",
|
||||
"_location": "/css-loader/icss-replace-symbols",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "icss-replace-symbols@1.1.0",
|
||||
"name": "icss-replace-symbols",
|
||||
"escapedName": "icss-replace-symbols",
|
||||
"rawSpec": "1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-values"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
|
||||
"_spec": "1.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Glen Maddern"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/css-modules/icss-replace-symbols/issues"
|
||||
},
|
||||
"homepage": "https://github.com/css-modules/icss-replace-symbols#readme",
|
||||
"description": "Replacing symbols during the linking phase of ICSS",
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.18.0",
|
||||
"babel-preset-es2015": "^6.18.0",
|
||||
@@ -36,5 +42,29 @@
|
||||
"mocha": "^3.1.2",
|
||||
"postcss": "^6.0.1",
|
||||
"standard": "^8.4.0"
|
||||
}
|
||||
},
|
||||
"homepage": "https://github.com/css-modules/icss-replace-symbols#readme",
|
||||
"keywords": [
|
||||
"css",
|
||||
"modules",
|
||||
"icss",
|
||||
"postcss"
|
||||
],
|
||||
"license": "ISC",
|
||||
"main": "lib/index.js",
|
||||
"name": "icss-replace-symbols",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css-modules/icss-replace-symbols.git"
|
||||
},
|
||||
"scripts": {
|
||||
"autotest": "chokidar src test -c 'npm test'",
|
||||
"build": "babel --out-dir lib src",
|
||||
"lint": "standard src test",
|
||||
"posttest": "npm run lint && npm run build",
|
||||
"prepublish": "npm run build",
|
||||
"test": "mocha --compilers js:babel-register",
|
||||
"travis": "npm run test"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
||||
|
@@ -1,54 +1,89 @@
|
||||
{
|
||||
"name": "ansi-styles",
|
||||
"version": "3.2.0",
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/ansi-styles",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"tty",
|
||||
"escape",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"dependencies": {
|
||||
"color-convert": "^1.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-polyfill"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"ansi-styles@3.2.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "ansi-styles@3.2.0",
|
||||
"_id": "ansi-styles@3.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
|
||||
"_location": "/css-loader/icss-utils/ansi-styles",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "ansi-styles@3.2.0",
|
||||
"name": "ansi-styles",
|
||||
"escapedName": "ansi-styles",
|
||||
"rawSpec": "3.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.2.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/icss-utils/chalk"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
|
||||
"_spec": "3.2.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-polyfill"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/ansi-styles/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"color-convert": "^1.9.0"
|
||||
},
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"tty",
|
||||
"escape",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "ansi-styles",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "3.2.0"
|
||||
}
|
||||
|
@@ -1,66 +1,101 @@
|
||||
{
|
||||
"name": "chalk",
|
||||
"version": "2.3.0",
|
||||
"description": "Terminal string styling done right",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/chalk",
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && tsc --project types && nyc ava",
|
||||
"bench": "matcha benchmark.js",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"templates.js",
|
||||
"types/index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"str",
|
||||
"ansi",
|
||||
"style",
|
||||
"styles",
|
||||
"tty",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"dependencies": {
|
||||
"ansi-styles": "^3.1.0",
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"supports-color": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"coveralls": "^3.0.0",
|
||||
"execa": "^0.8.0",
|
||||
"import-fresh": "^2.0.0",
|
||||
"matcha": "^0.7.0",
|
||||
"nyc": "^11.0.2",
|
||||
"resolve-from": "^4.0.0",
|
||||
"typescript": "^2.5.3",
|
||||
"xo": "*"
|
||||
},
|
||||
"types": "types/index.d.ts",
|
||||
"xo": {
|
||||
"envs": [
|
||||
"node",
|
||||
"mocha"
|
||||
]
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"chalk@2.3.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "chalk@2.3.0",
|
||||
"_id": "chalk@2.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
|
||||
"_location": "/css-loader/icss-utils/chalk",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "chalk@2.3.0",
|
||||
"name": "chalk",
|
||||
"escapedName": "chalk",
|
||||
"rawSpec": "2.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.3.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/icss-utils/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
|
||||
"_spec": "2.3.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/chalk/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-styles": "^3.1.0",
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"supports-color": "^4.0.0"
|
||||
},
|
||||
"description": "Terminal string styling done right",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"coveralls": "^3.0.0",
|
||||
"execa": "^0.8.0",
|
||||
"import-fresh": "^2.0.0",
|
||||
"matcha": "^0.7.0",
|
||||
"nyc": "^11.0.2",
|
||||
"resolve-from": "^4.0.0",
|
||||
"typescript": "^2.5.3",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"templates.js",
|
||||
"types/index.d.ts"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/chalk#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"str",
|
||||
"ansi",
|
||||
"style",
|
||||
"styles",
|
||||
"tty",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "chalk",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/chalk.git"
|
||||
},
|
||||
"scripts": {
|
||||
"bench": "matcha benchmark.js",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
||||
"test": "xo && tsc --project types && nyc ava"
|
||||
},
|
||||
"types": "types/index.d.ts",
|
||||
"version": "2.3.0",
|
||||
"xo": {
|
||||
"envs": [
|
||||
"node",
|
||||
"mocha"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@@ -1,28 +1,52 @@
|
||||
{
|
||||
"name": "has-flag",
|
||||
"version": "2.0.0",
|
||||
"description": "Check if argv has a specific flag",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/has-flag",
|
||||
"_args": [
|
||||
[
|
||||
"has-flag@2.0.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "has-flag@2.0.0",
|
||||
"_id": "has-flag@2.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=",
|
||||
"_location": "/css-loader/icss-utils/has-flag",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "has-flag@2.0.0",
|
||||
"name": "has-flag",
|
||||
"escapedName": "has-flag",
|
||||
"rawSpec": "2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/icss-utils/supports-color"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
|
||||
"_spec": "2.0.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
|
||||
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/has-flag/issues"
|
||||
},
|
||||
"description": "Check if argv has a specific flag",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
||||
"keywords": [
|
||||
"has",
|
||||
"check",
|
||||
@@ -42,8 +66,31 @@
|
||||
"minimist",
|
||||
"optimist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
}
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
},
|
||||
{
|
||||
"name": "JD Ballard",
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"url": "github.com/qix-"
|
||||
}
|
||||
],
|
||||
"name": "has-flag",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
@@ -1,30 +1,50 @@
|
||||
{
|
||||
"name": "postcss",
|
||||
"version": "6.0.14",
|
||||
"description": "Tool for transforming styles with JS plugins",
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"rework",
|
||||
"preprocessor",
|
||||
"parser",
|
||||
"source map",
|
||||
"transform",
|
||||
"manipulation",
|
||||
"transpiler"
|
||||
"_args": [
|
||||
[
|
||||
"postcss@6.0.14",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
||||
"license": "MIT",
|
||||
"homepage": "http://postcss.org/",
|
||||
"repository": "postcss/postcss",
|
||||
"_from": "postcss@6.0.14",
|
||||
"_id": "postcss@6.0.14",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==",
|
||||
"_location": "/css-loader/icss-utils/postcss",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss@6.0.14",
|
||||
"name": "postcss",
|
||||
"escapedName": "postcss",
|
||||
"rawSpec": "6.0.14",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "6.0.14"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/icss-utils"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz",
|
||||
"_spec": "6.0.14",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Andrey Sitnik",
|
||||
"email": "andrey@sitnik.ru"
|
||||
},
|
||||
"browser": {
|
||||
"supports-color": false,
|
||||
"chalk": false,
|
||||
"fs": false
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/postcss/postcss/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^2.3.0",
|
||||
"source-map": "^0.6.1",
|
||||
"supports-color": "^4.4.0"
|
||||
},
|
||||
"description": "Tool for transforming styles with JS plugins",
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-eslint": "^8.0.1",
|
||||
@@ -54,35 +74,8 @@
|
||||
"strip-ansi": "^4.0.0",
|
||||
"yaspeller-ci": "^0.7.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint-staged": "lint-staged",
|
||||
"test": "gulp"
|
||||
},
|
||||
"main": "lib/postcss",
|
||||
"types": "lib/postcss.d.ts",
|
||||
"lint-staged": {
|
||||
"test/*.js": "eslint",
|
||||
"lib/*.es6": "eslint",
|
||||
"*.md": "yaspeller-ci"
|
||||
},
|
||||
"pre-commit": [
|
||||
"lint-staged"
|
||||
],
|
||||
"browser": {
|
||||
"supports-color": false,
|
||||
"chalk": false,
|
||||
"fs": false
|
||||
},
|
||||
"size-limit": [
|
||||
{
|
||||
"path": "lib/postcss.js",
|
||||
"limit": "29 KB"
|
||||
}
|
||||
],
|
||||
"jest": {
|
||||
"modulePathIgnorePatterns": [
|
||||
"build"
|
||||
]
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"parser": "babel-eslint",
|
||||
@@ -97,5 +90,49 @@
|
||||
"browser": true,
|
||||
"jest": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"homepage": "http://postcss.org/",
|
||||
"jest": {
|
||||
"modulePathIgnorePatterns": [
|
||||
"build"
|
||||
]
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"rework",
|
||||
"preprocessor",
|
||||
"parser",
|
||||
"source map",
|
||||
"transform",
|
||||
"manipulation",
|
||||
"transpiler"
|
||||
],
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"test/*.js": "eslint",
|
||||
"lib/*.es6": "eslint",
|
||||
"*.md": "yaspeller-ci"
|
||||
},
|
||||
"main": "lib/postcss",
|
||||
"name": "postcss",
|
||||
"pre-commit": [
|
||||
"lint-staged"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/postcss/postcss.git"
|
||||
},
|
||||
"scripts": {
|
||||
"lint-staged": "lint-staged",
|
||||
"test": "gulp"
|
||||
},
|
||||
"size-limit": [
|
||||
{
|
||||
"path": "lib/postcss.js",
|
||||
"limit": "29 KB"
|
||||
}
|
||||
],
|
||||
"types": "lib/postcss.d.ts",
|
||||
"version": "6.0.14"
|
||||
}
|
||||
|
@@ -1,52 +1,193 @@
|
||||
{
|
||||
"name": "source-map",
|
||||
"description": "Generates and consumes source maps",
|
||||
"version": "0.6.1",
|
||||
"homepage": "https://github.com/mozilla/source-map",
|
||||
"author": "Nick Fitzgerald <nfitzgerald@mozilla.com>",
|
||||
"contributors": [
|
||||
"Tobias Koppers <tobias.koppers@googlemail.com>",
|
||||
"Duncan Beevers <duncan@dweebd.com>",
|
||||
"Stephen Crane <scrane@mozilla.com>",
|
||||
"Ryan Seddon <seddon.ryan@gmail.com>",
|
||||
"Miles Elam <miles.elam@deem.com>",
|
||||
"Mihai Bazon <mihai.bazon@gmail.com>",
|
||||
"Michael Ficarra <github.public.email@michael.ficarra.me>",
|
||||
"Todd Wolfson <todd@twolfson.com>",
|
||||
"Alexander Solovyov <alexander@solovyov.net>",
|
||||
"Felix Gnass <fgnass@gmail.com>",
|
||||
"Conrad Irwin <conrad.irwin@gmail.com>",
|
||||
"usrbincc <usrbincc@yahoo.com>",
|
||||
"David Glasser <glasser@davidglasser.net>",
|
||||
"Chase Douglas <chase@newrelic.com>",
|
||||
"Evan Wallace <evan.exe@gmail.com>",
|
||||
"Heather Arthur <fayearthur@gmail.com>",
|
||||
"Hugh Kennedy <hughskennedy@gmail.com>",
|
||||
"David Glasser <glasser@davidglasser.net>",
|
||||
"Simon Lydell <simon.lydell@gmail.com>",
|
||||
"Jmeas Smith <jellyes2@gmail.com>",
|
||||
"Michael Z Goddard <mzgoddard@gmail.com>",
|
||||
"azu <azu@users.noreply.github.com>",
|
||||
"John Gozde <john@gozde.ca>",
|
||||
"Adam Kirkton <akirkton@truefitinnovation.com>",
|
||||
"Chris Montgomery <christopher.montgomery@dowjones.com>",
|
||||
"J. Ryan Stinnett <jryans@gmail.com>",
|
||||
"Jack Herrington <jherrington@walmartlabs.com>",
|
||||
"Chris Truter <jeffpalentine@gmail.com>",
|
||||
"Daniel Espeset <daniel@danielespeset.com>",
|
||||
"Jamie Wong <jamie.lf.wong@gmail.com>",
|
||||
"Eddy Bruël <ejpbruel@mozilla.com>",
|
||||
"Hawken Rives <hawkrives@gmail.com>",
|
||||
"Gilad Peleg <giladp007@gmail.com>",
|
||||
"djchie <djchie.dev@gmail.com>",
|
||||
"Gary Ye <garysye@gmail.com>",
|
||||
"Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
|
||||
"_args": [
|
||||
[
|
||||
"source-map@0.6.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/mozilla/source-map.git"
|
||||
"_from": "source-map@0.6.1",
|
||||
"_id": "source-map@0.6.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
||||
"_location": "/css-loader/icss-utils/source-map",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "source-map@0.6.1",
|
||||
"name": "source-map",
|
||||
"escapedName": "source-map",
|
||||
"rawSpec": "0.6.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.6.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/icss-utils/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"_spec": "0.6.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Nick Fitzgerald",
|
||||
"email": "nfitzgerald@mozilla.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mozilla/source-map/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Tobias Koppers",
|
||||
"email": "tobias.koppers@googlemail.com"
|
||||
},
|
||||
{
|
||||
"name": "Duncan Beevers",
|
||||
"email": "duncan@dweebd.com"
|
||||
},
|
||||
{
|
||||
"name": "Stephen Crane",
|
||||
"email": "scrane@mozilla.com"
|
||||
},
|
||||
{
|
||||
"name": "Ryan Seddon",
|
||||
"email": "seddon.ryan@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Miles Elam",
|
||||
"email": "miles.elam@deem.com"
|
||||
},
|
||||
{
|
||||
"name": "Mihai Bazon",
|
||||
"email": "mihai.bazon@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Michael Ficarra",
|
||||
"email": "github.public.email@michael.ficarra.me"
|
||||
},
|
||||
{
|
||||
"name": "Todd Wolfson",
|
||||
"email": "todd@twolfson.com"
|
||||
},
|
||||
{
|
||||
"name": "Alexander Solovyov",
|
||||
"email": "alexander@solovyov.net"
|
||||
},
|
||||
{
|
||||
"name": "Felix Gnass",
|
||||
"email": "fgnass@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Conrad Irwin",
|
||||
"email": "conrad.irwin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "usrbincc",
|
||||
"email": "usrbincc@yahoo.com"
|
||||
},
|
||||
{
|
||||
"name": "David Glasser",
|
||||
"email": "glasser@davidglasser.net"
|
||||
},
|
||||
{
|
||||
"name": "Chase Douglas",
|
||||
"email": "chase@newrelic.com"
|
||||
},
|
||||
{
|
||||
"name": "Evan Wallace",
|
||||
"email": "evan.exe@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Heather Arthur",
|
||||
"email": "fayearthur@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Hugh Kennedy",
|
||||
"email": "hughskennedy@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "David Glasser",
|
||||
"email": "glasser@davidglasser.net"
|
||||
},
|
||||
{
|
||||
"name": "Simon Lydell",
|
||||
"email": "simon.lydell@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jmeas Smith",
|
||||
"email": "jellyes2@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Michael Z Goddard",
|
||||
"email": "mzgoddard@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "azu",
|
||||
"email": "azu@users.noreply.github.com"
|
||||
},
|
||||
{
|
||||
"name": "John Gozde",
|
||||
"email": "john@gozde.ca"
|
||||
},
|
||||
{
|
||||
"name": "Adam Kirkton",
|
||||
"email": "akirkton@truefitinnovation.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Montgomery",
|
||||
"email": "christopher.montgomery@dowjones.com"
|
||||
},
|
||||
{
|
||||
"name": "J. Ryan Stinnett",
|
||||
"email": "jryans@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jack Herrington",
|
||||
"email": "jherrington@walmartlabs.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Truter",
|
||||
"email": "jeffpalentine@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Daniel Espeset",
|
||||
"email": "daniel@danielespeset.com"
|
||||
},
|
||||
{
|
||||
"name": "Jamie Wong",
|
||||
"email": "jamie.lf.wong@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Eddy Bruël",
|
||||
"email": "ejpbruel@mozilla.com"
|
||||
},
|
||||
{
|
||||
"name": "Hawken Rives",
|
||||
"email": "hawkrives@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Gilad Peleg",
|
||||
"email": "giladp007@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "djchie",
|
||||
"email": "djchie.dev@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Gary Ye",
|
||||
"email": "garysye@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Nicolas Lalevée",
|
||||
"email": "nicolas.lalevee@hibnet.org"
|
||||
}
|
||||
],
|
||||
"description": "Generates and consumes source maps",
|
||||
"devDependencies": {
|
||||
"doctoc": "^0.15.0",
|
||||
"webpack": "^1.12.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"main": "./source-map.js",
|
||||
"files": [
|
||||
"source-map.js",
|
||||
"source-map.d.ts",
|
||||
@@ -56,18 +197,19 @@
|
||||
"dist/source-map.min.js",
|
||||
"dist/source-map.min.js.map"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"homepage": "https://github.com/mozilla/source-map",
|
||||
"license": "BSD-3-Clause",
|
||||
"main": "./source-map.js",
|
||||
"name": "source-map",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/mozilla/source-map.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "npm run build && node test/run-tests.js",
|
||||
"build": "webpack --color",
|
||||
"test": "npm run build && node test/run-tests.js",
|
||||
"toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
|
||||
},
|
||||
"devDependencies": {
|
||||
"doctoc": "^0.15.0",
|
||||
"webpack": "^1.12.0"
|
||||
},
|
||||
"typings": "source-map"
|
||||
"typings": "source-map",
|
||||
"version": "0.6.1"
|
||||
}
|
||||
|
@@ -1,24 +1,59 @@
|
||||
{
|
||||
"name": "supports-color",
|
||||
"version": "4.5.0",
|
||||
"description": "Detect whether a terminal supports color",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/supports-color",
|
||||
"_args": [
|
||||
[
|
||||
"supports-color@4.5.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "supports-color@4.5.0",
|
||||
"_id": "supports-color@4.5.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
|
||||
"_location": "/css-loader/icss-utils/supports-color",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "supports-color@4.5.0",
|
||||
"name": "supports-color",
|
||||
"escapedName": "supports-color",
|
||||
"rawSpec": "4.5.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.5.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/icss-utils/chalk",
|
||||
"/css-loader/icss-utils/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
|
||||
"_spec": "4.5.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"browser": "browser.js",
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/supports-color/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"has-flag": "^2.0.0"
|
||||
},
|
||||
"description": "Detect whether a terminal supports color",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"import-fresh": "^2.0.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"browser.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/supports-color#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
@@ -41,13 +76,14 @@
|
||||
"truecolor",
|
||||
"16m"
|
||||
],
|
||||
"dependencies": {
|
||||
"has-flag": "^2.0.0"
|
||||
"license": "MIT",
|
||||
"name": "supports-color",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/supports-color.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"import-fresh": "^2.0.0",
|
||||
"xo": "*"
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"browser": "browser.js"
|
||||
"version": "4.5.0"
|
||||
}
|
||||
|
109
goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/package.json
generated
vendored
109
goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/package.json
generated
vendored
@@ -1,30 +1,37 @@
|
||||
{
|
||||
"name": "icss-utils",
|
||||
"version": "2.1.0",
|
||||
"description": "ICSS utils for postcss ast",
|
||||
"main": "lib/index.js",
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "babel --out-dir lib src",
|
||||
"test": "jest --coverage",
|
||||
"precommit": "lint-staged",
|
||||
"prepublish": "yarn test && yarn run build"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"eslint",
|
||||
"prettier --write",
|
||||
"git add"
|
||||
"_args": [
|
||||
[
|
||||
"icss-utils@2.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "icss-utils@2.1.0",
|
||||
"_id": "icss-utils@2.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=",
|
||||
"_location": "/css-loader/icss-utils",
|
||||
"_phantomChildren": {
|
||||
"color-convert": "1.9.1",
|
||||
"escape-string-regexp": "1.0.5"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 6,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"extends": "eslint:recommended"
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "icss-utils@2.1.0",
|
||||
"name": "icss-utils",
|
||||
"escapedName": "icss-utils",
|
||||
"rawSpec": "2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Glen Maddern"
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
@@ -38,25 +45,13 @@
|
||||
]
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css-modules/icss-utils.git"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"modules",
|
||||
"icss",
|
||||
"postcss"
|
||||
],
|
||||
"author": "Glen Maddern",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/css-modules/icss-utils/issues"
|
||||
},
|
||||
"homepage": "https://github.com/css-modules/icss-utils#readme",
|
||||
"dependencies": {
|
||||
"postcss": "^6.0.1"
|
||||
},
|
||||
"description": "ICSS utils for postcss ast",
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.24.1",
|
||||
"babel-jest": "^20.0.3",
|
||||
@@ -66,5 +61,43 @@
|
||||
"jest": "^20.0.3",
|
||||
"lint-staged": "^3.4.2",
|
||||
"prettier": "^1.3.1"
|
||||
}
|
||||
},
|
||||
"eslintConfig": {
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 6,
|
||||
"sourceType": "module"
|
||||
},
|
||||
"extends": "eslint:recommended"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://github.com/css-modules/icss-utils#readme",
|
||||
"keywords": [
|
||||
"css",
|
||||
"modules",
|
||||
"icss",
|
||||
"postcss"
|
||||
],
|
||||
"license": "ISC",
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"eslint",
|
||||
"prettier --write",
|
||||
"git add"
|
||||
]
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"name": "icss-utils",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css-modules/icss-utils.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "babel --out-dir lib src",
|
||||
"precommit": "lint-staged",
|
||||
"prepublish": "yarn test && yarn run build",
|
||||
"test": "jest --coverage"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
}
|
||||
|
49
goTorrentWebUI/node_modules/css-loader/node_modules/indexes-of/package.json
generated
vendored
49
goTorrentWebUI/node_modules/css-loader/node_modules/indexes-of/package.json
generated
vendored
@@ -1,8 +1,47 @@
|
||||
{
|
||||
"name": "indexes-of",
|
||||
"_args": [
|
||||
[
|
||||
"indexes-of@1.0.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "indexes-of@1.0.1",
|
||||
"_id": "indexes-of@1.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
|
||||
"_location": "/css-loader/indexes-of",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "indexes-of@1.0.1",
|
||||
"name": "indexes-of",
|
||||
"escapedName": "indexes-of",
|
||||
"rawSpec": "1.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-selector-parser"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
|
||||
"_spec": "1.0.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Dominic Tarr",
|
||||
"email": "dominic.tarr@gmail.com",
|
||||
"url": "dominictarr.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/dominictarr/indexes-of/issues"
|
||||
},
|
||||
"description": "line String/Array#indexOf but return all the indexes in an array",
|
||||
"version": "1.0.1",
|
||||
"devDependencies": {
|
||||
"tape": "~2.1.0"
|
||||
},
|
||||
"homepage": "https://github.com/dominictarr/indexes-of",
|
||||
"license": "MIT",
|
||||
"name": "indexes-of",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/dominictarr/indexes-of.git"
|
||||
@@ -10,9 +49,5 @@
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"tape": "~2.1.0"
|
||||
}
|
||||
"version": "1.0.1"
|
||||
}
|
||||
|
57
goTorrentWebUI/node_modules/css-loader/node_modules/is-absolute-url/package.json
generated
vendored
57
goTorrentWebUI/node_modules/css-loader/node_modules/is-absolute-url/package.json
generated
vendored
@@ -1,23 +1,51 @@
|
||||
{
|
||||
"name": "is-absolute-url",
|
||||
"version": "2.1.0",
|
||||
"description": "Check if an URL is absolute",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/is-absolute-url",
|
||||
"_args": [
|
||||
[
|
||||
"is-absolute-url@2.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "is-absolute-url@2.1.0",
|
||||
"_id": "is-absolute-url@2.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=",
|
||||
"_location": "/css-loader/is-absolute-url",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "is-absolute-url@2.1.0",
|
||||
"name": "is-absolute-url",
|
||||
"escapedName": "is-absolute-url",
|
||||
"rawSpec": "2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-normalize-url"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "http://sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/is-absolute-url/issues"
|
||||
},
|
||||
"description": "Check if an URL is absolute",
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/is-absolute-url#readme",
|
||||
"keywords": [
|
||||
"url",
|
||||
"absolute",
|
||||
@@ -26,7 +54,14 @@
|
||||
"is",
|
||||
"check"
|
||||
],
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
}
|
||||
"license": "MIT",
|
||||
"name": "is-absolute-url",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/is-absolute-url.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
}
|
||||
|
57
goTorrentWebUI/node_modules/css-loader/node_modules/is-plain-obj/package.json
generated
vendored
57
goTorrentWebUI/node_modules/css-loader/node_modules/is-plain-obj/package.json
generated
vendored
@@ -1,23 +1,51 @@
|
||||
{
|
||||
"name": "is-plain-obj",
|
||||
"version": "1.1.0",
|
||||
"description": "Check if a value is a plain object",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/is-plain-obj",
|
||||
"_args": [
|
||||
[
|
||||
"is-plain-obj@1.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "is-plain-obj@1.1.0",
|
||||
"_id": "is-plain-obj@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
|
||||
"_location": "/css-loader/is-plain-obj",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "is-plain-obj@1.1.0",
|
||||
"name": "is-plain-obj",
|
||||
"escapedName": "is-plain-obj",
|
||||
"rawSpec": "1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/sort-keys"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
||||
"_spec": "1.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/is-plain-obj/issues"
|
||||
},
|
||||
"description": "Check if a value is a plain object",
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/is-plain-obj#readme",
|
||||
"keywords": [
|
||||
"obj",
|
||||
"object",
|
||||
@@ -30,7 +58,14 @@
|
||||
"pure",
|
||||
"simple"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "0.0.4"
|
||||
}
|
||||
"license": "MIT",
|
||||
"name": "is-plain-obj",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/is-plain-obj.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
||||
|
63
goTorrentWebUI/node_modules/css-loader/node_modules/is-svg/package.json
generated
vendored
63
goTorrentWebUI/node_modules/css-loader/node_modules/is-svg/package.json
generated
vendored
@@ -1,23 +1,55 @@
|
||||
{
|
||||
"name": "is-svg",
|
||||
"version": "2.1.0",
|
||||
"description": "Check if a string or buffer is SVG",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/is-svg",
|
||||
"_args": [
|
||||
[
|
||||
"is-svg@2.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "is-svg@2.1.0",
|
||||
"_id": "is-svg@2.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=",
|
||||
"_location": "/css-loader/is-svg",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "is-svg@2.1.0",
|
||||
"name": "is-svg",
|
||||
"escapedName": "is-svg",
|
||||
"rawSpec": "2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-svgo"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/is-svg/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"html-comment-regex": "^1.1.0"
|
||||
},
|
||||
"description": "Check if a string or buffer is SVG",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "^0.16.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/is-svg#readme",
|
||||
"keywords": [
|
||||
"svg",
|
||||
"vector",
|
||||
@@ -34,11 +66,14 @@
|
||||
"str",
|
||||
"buffer"
|
||||
],
|
||||
"dependencies": {
|
||||
"html-comment-regex": "^1.1.0"
|
||||
"license": "MIT",
|
||||
"name": "is-svg",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/is-svg.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "^0.16.0"
|
||||
}
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
}
|
||||
|
65
goTorrentWebUI/node_modules/css-loader/node_modules/js-base64/package.json
generated
vendored
65
goTorrentWebUI/node_modules/css-loader/node_modules/js-base64/package.json
generated
vendored
@@ -1,26 +1,59 @@
|
||||
{
|
||||
"name": "js-base64",
|
||||
"version": "2.3.2",
|
||||
"_args": [
|
||||
[
|
||||
"js-base64@2.3.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "js-base64@2.3.2",
|
||||
"_id": "js-base64@2.3.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Y2/+DnfJJXT1/FCwUebUhLWb3QihxiSC42+ctHLGogmW2jPY6LCapMdFZXRvVP2z6qyKW7s6qncE/9gSqZiArw==",
|
||||
"_location": "/css-loader/js-base64",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "js-base64@2.3.2",
|
||||
"name": "js-base64",
|
||||
"escapedName": "js-base64",
|
||||
"rawSpec": "2.3.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.3.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.3.2.tgz",
|
||||
"_spec": "2.3.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Dan Kogai"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/dankogai/js-base64/issues"
|
||||
},
|
||||
"description": "Yet another Base64 transcoder in pure-JS",
|
||||
"main": "base64.js",
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"gitHead": "8bfa436f733bec60c95c720e1d720c28b43ae0b2",
|
||||
"homepage": "https://github.com/dankogai/js-base64#readme",
|
||||
"keywords": [
|
||||
"base64"
|
||||
],
|
||||
"license": "BSD-3-Clause",
|
||||
"main": "base64.js",
|
||||
"name": "js-base64",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/dankogai/js-base64.git"
|
||||
},
|
||||
"keywords": [
|
||||
"base64"
|
||||
],
|
||||
"author": "Dan Kogai",
|
||||
"license": "BSD-3-Clause",
|
||||
"readmeFilename": "README.md",
|
||||
"gitHead": "8bfa436f733bec60c95c720e1d720c28b43ae0b2"
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "2.3.2"
|
||||
}
|
||||
|
75
goTorrentWebUI/node_modules/css-loader/node_modules/js-tokens/package.json
generated
vendored
75
goTorrentWebUI/node_modules/css-loader/node_modules/js-tokens/package.json
generated
vendored
@@ -1,9 +1,49 @@
|
||||
{
|
||||
"name": "js-tokens",
|
||||
"version": "3.0.2",
|
||||
"author": "Simon Lydell",
|
||||
"license": "MIT",
|
||||
"_args": [
|
||||
[
|
||||
"js-tokens@3.0.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "js-tokens@3.0.2",
|
||||
"_id": "js-tokens@3.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
|
||||
"_location": "/css-loader/js-tokens",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "js-tokens@3.0.2",
|
||||
"name": "js-tokens",
|
||||
"escapedName": "js-tokens",
|
||||
"rawSpec": "3.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/babel-code-frame"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
|
||||
"_spec": "3.0.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Simon Lydell"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/lydell/js-tokens/issues"
|
||||
},
|
||||
"description": "A regex that tokenizes JavaScript.",
|
||||
"devDependencies": {
|
||||
"coffee-script": "~1.12.6",
|
||||
"esprima": "^4.0.0",
|
||||
"everything.js": "^1.0.3",
|
||||
"mocha": "^3.4.2"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/lydell/js-tokens#readme",
|
||||
"keywords": [
|
||||
"JavaScript",
|
||||
"js",
|
||||
@@ -11,20 +51,17 @@
|
||||
"tokenize",
|
||||
"regex"
|
||||
],
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"repository": "lydell/js-tokens",
|
||||
"scripts": {
|
||||
"test": "mocha --ui tdd",
|
||||
"esprima-compare": "node esprima-compare ./index.js everything.js/es5.js",
|
||||
"build": "node generate-index.js",
|
||||
"dev": "npm run build && npm test"
|
||||
"license": "MIT",
|
||||
"name": "js-tokens",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lydell/js-tokens.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"coffee-script": "~1.12.6",
|
||||
"esprima": "^4.0.0",
|
||||
"everything.js": "^1.0.3",
|
||||
"mocha": "^3.4.2"
|
||||
}
|
||||
"scripts": {
|
||||
"build": "node generate-index.js",
|
||||
"dev": "npm run build && npm test",
|
||||
"esprima-compare": "node esprima-compare ./index.js everything.js/es5.js",
|
||||
"test": "mocha --ui tdd"
|
||||
},
|
||||
"version": "3.0.2"
|
||||
}
|
||||
|
95
goTorrentWebUI/node_modules/css-loader/node_modules/js-yaml/package.json
generated
vendored
95
goTorrentWebUI/node_modules/css-loader/node_modules/js-yaml/package.json
generated
vendored
@@ -1,35 +1,64 @@
|
||||
{
|
||||
"name": "js-yaml",
|
||||
"version": "3.7.0",
|
||||
"description": "YAML 1.2 parser and serializer",
|
||||
"keywords": [
|
||||
"yaml",
|
||||
"parser",
|
||||
"serializer",
|
||||
"pyyaml"
|
||||
"_args": [
|
||||
[
|
||||
"js-yaml@3.7.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"homepage": "https://github.com/nodeca/js-yaml",
|
||||
"author": "Vladimir Zapparov <dervus.grim@gmail.com>",
|
||||
"contributors": [
|
||||
"Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)",
|
||||
"Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)",
|
||||
"Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": "nodeca/js-yaml",
|
||||
"files": [
|
||||
"index.js",
|
||||
"lib/",
|
||||
"bin/",
|
||||
"dist/"
|
||||
"_from": "js-yaml@3.7.0",
|
||||
"_id": "js-yaml@3.7.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=",
|
||||
"_location": "/css-loader/js-yaml",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "js-yaml@3.7.0",
|
||||
"name": "js-yaml",
|
||||
"escapedName": "js-yaml",
|
||||
"rawSpec": "3.7.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.7.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/svgo"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz",
|
||||
"_spec": "3.7.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Vladimir Zapparov",
|
||||
"email": "dervus.grim@gmail.com"
|
||||
},
|
||||
"bin": {
|
||||
"js-yaml": "bin/js-yaml.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/nodeca/js-yaml/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Aleksey V Zapparov",
|
||||
"email": "ixti@member.fsf.org",
|
||||
"url": "http://www.ixti.net/"
|
||||
},
|
||||
{
|
||||
"name": "Vitaly Puzrin",
|
||||
"email": "vitaly@rcdesign.ru",
|
||||
"url": "https://github.com/puzrin"
|
||||
},
|
||||
{
|
||||
"name": "Martin Grenfell",
|
||||
"email": "martin.grenfell@gmail.com",
|
||||
"url": "http://got-ravings.blogspot.com"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"argparse": "^1.0.7",
|
||||
"esprima": "^2.6.0"
|
||||
},
|
||||
"description": "YAML 1.2 parser and serializer",
|
||||
"devDependencies": {
|
||||
"ansi": "*",
|
||||
"benchmark": "*",
|
||||
@@ -40,7 +69,27 @@
|
||||
"mocha": "*",
|
||||
"uglify-js": "^2.6.1"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"lib/",
|
||||
"bin/",
|
||||
"dist/"
|
||||
],
|
||||
"homepage": "https://github.com/nodeca/js-yaml",
|
||||
"keywords": [
|
||||
"yaml",
|
||||
"parser",
|
||||
"serializer",
|
||||
"pyyaml"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "js-yaml",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/nodeca/js-yaml.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
}
|
||||
},
|
||||
"version": "3.7.0"
|
||||
}
|
||||
|
138
goTorrentWebUI/node_modules/css-loader/node_modules/jsesc/package.json
generated
vendored
138
goTorrentWebUI/node_modules/css-loader/node_modules/jsesc/package.json
generated
vendored
@@ -1,55 +1,87 @@
|
||||
{
|
||||
"name": "jsesc",
|
||||
"version": "0.5.0",
|
||||
"description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.",
|
||||
"homepage": "http://mths.be/jsesc",
|
||||
"main": "jsesc.js",
|
||||
"bin": "bin/jsesc",
|
||||
"man": "man/jsesc.1",
|
||||
"keywords": [
|
||||
"string",
|
||||
"escape",
|
||||
"javascript",
|
||||
"tool"
|
||||
],
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://mths.be/mit"
|
||||
}
|
||||
],
|
||||
"author": {
|
||||
"name": "Mathias Bynens",
|
||||
"url": "http://mathiasbynens.be/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mathiasbynens/jsesc.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mathiasbynens/jsesc/issues"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT.txt",
|
||||
"jsesc.js",
|
||||
"bin/",
|
||||
"man/"
|
||||
],
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node tests/tests.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.10.0",
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-shell": "^0.7.0",
|
||||
"grunt-template": "^0.2.3",
|
||||
"istanbul": "^0.3.0",
|
||||
"qunit-extras": "^1.2.0",
|
||||
"qunitjs": "~1.11.0",
|
||||
"regenerate": "^0.6.2",
|
||||
"requirejs": "^2.1.14"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"jsesc@0.5.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "jsesc@0.5.0",
|
||||
"_id": "jsesc@0.5.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
|
||||
"_location": "/css-loader/jsesc",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "jsesc@0.5.0",
|
||||
"name": "jsesc",
|
||||
"escapedName": "jsesc",
|
||||
"rawSpec": "0.5.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.5.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/regjsparser"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
|
||||
"_spec": "0.5.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Mathias Bynens",
|
||||
"url": "http://mathiasbynens.be/"
|
||||
},
|
||||
"bin": {
|
||||
"jsesc": "bin/jsesc"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mathiasbynens/jsesc/issues"
|
||||
},
|
||||
"description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.",
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.10.0",
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-shell": "^0.7.0",
|
||||
"grunt-template": "^0.2.3",
|
||||
"istanbul": "^0.3.0",
|
||||
"qunit-extras": "^1.2.0",
|
||||
"qunitjs": "~1.11.0",
|
||||
"regenerate": "^0.6.2",
|
||||
"requirejs": "^2.1.14"
|
||||
},
|
||||
"directories": {
|
||||
"test": "tests"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT.txt",
|
||||
"jsesc.js",
|
||||
"bin/",
|
||||
"man/"
|
||||
],
|
||||
"homepage": "http://mths.be/jsesc",
|
||||
"keywords": [
|
||||
"string",
|
||||
"escape",
|
||||
"javascript",
|
||||
"tool"
|
||||
],
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://mths.be/mit"
|
||||
}
|
||||
],
|
||||
"main": "jsesc.js",
|
||||
"man": [
|
||||
"man/jsesc.1"
|
||||
],
|
||||
"name": "jsesc",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/mathiasbynens/jsesc.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node tests/tests.js"
|
||||
},
|
||||
"version": "0.5.0"
|
||||
}
|
||||
|
111
goTorrentWebUI/node_modules/css-loader/node_modules/json5/package.json
generated
vendored
111
goTorrentWebUI/node_modules/css-loader/node_modules/json5/package.json
generated
vendored
@@ -1,38 +1,83 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"json5@0.5.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "json5@0.5.1",
|
||||
"_id": "json5@0.5.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
|
||||
"_location": "/css-loader/json5",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "json5@0.5.1",
|
||||
"name": "json5",
|
||||
"version": "0.5.1",
|
||||
"description": "JSON for the ES5 era.",
|
||||
"keywords": [
|
||||
"json",
|
||||
"es5"
|
||||
],
|
||||
"author": "Aseem Kishore <aseem.kishore@gmail.com>",
|
||||
"contributors": [
|
||||
"Max Nanasy <max.nanasy@gmail.com>",
|
||||
"Andrew Eisenberg <andrew@eisenberg.as>",
|
||||
"Jordan Tucker <jordanbtucker@gmail.com>"
|
||||
],
|
||||
"main": "lib/json5.js",
|
||||
"bin": "lib/cli.js",
|
||||
"files": [
|
||||
"lib/"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-jshint": "^2.0.1",
|
||||
"jshint": "^2.9.3",
|
||||
"jshint-stylish": "^2.2.1",
|
||||
"mocha": "^3.1.0"
|
||||
"escapedName": "json5",
|
||||
"rawSpec": "0.5.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.5.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/loader-utils"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
|
||||
"_spec": "0.5.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Aseem Kishore",
|
||||
"email": "aseem.kishore@gmail.com"
|
||||
},
|
||||
"bin": {
|
||||
"json5": "lib/cli.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/aseemk/json5/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Max Nanasy",
|
||||
"email": "max.nanasy@gmail.com"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node ./lib/cli.js -c package.json5",
|
||||
"test": "mocha --ui exports --reporter spec"
|
||||
{
|
||||
"name": "Andrew Eisenberg",
|
||||
"email": "andrew@eisenberg.as"
|
||||
},
|
||||
"homepage": "http://json5.org/",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/aseemk/json5.git"
|
||||
{
|
||||
"name": "Jordan Tucker",
|
||||
"email": "jordanbtucker@gmail.com"
|
||||
}
|
||||
}
|
||||
],
|
||||
"dependencies": {},
|
||||
"description": "JSON for the ES5 era.",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-jshint": "^2.0.1",
|
||||
"jshint": "^2.9.3",
|
||||
"jshint-stylish": "^2.2.1",
|
||||
"mocha": "^3.1.0"
|
||||
},
|
||||
"files": [
|
||||
"lib/"
|
||||
],
|
||||
"homepage": "http://json5.org/",
|
||||
"keywords": [
|
||||
"json",
|
||||
"es5"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "lib/json5.js",
|
||||
"name": "json5",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/aseemk/json5.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node ./lib/cli.js -c package.json5",
|
||||
"test": "mocha --ui exports --reporter spec"
|
||||
},
|
||||
"version": "0.5.1"
|
||||
}
|
||||
|
78
goTorrentWebUI/node_modules/css-loader/node_modules/loader-utils/package.json
generated
vendored
78
goTorrentWebUI/node_modules/css-loader/node_modules/loader-utils/package.json
generated
vendored
@@ -1,29 +1,44 @@
|
||||
{
|
||||
"name": "loader-utils",
|
||||
"version": "1.1.0",
|
||||
"author": "Tobias Koppers @sokra",
|
||||
"description": "utils for webpack loaders",
|
||||
"_args": [
|
||||
[
|
||||
"loader-utils@1.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "loader-utils@1.1.0",
|
||||
"_id": "loader-utils@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=",
|
||||
"_location": "/css-loader/loader-utils",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "loader-utils@1.1.0",
|
||||
"name": "loader-utils",
|
||||
"escapedName": "loader-utils",
|
||||
"rawSpec": "1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz",
|
||||
"_spec": "1.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Tobias Koppers @sokra"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/webpack/loader-utils/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"big.js": "^3.1.3",
|
||||
"emojis-list": "^2.0.0",
|
||||
"json5": "^0.5.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha",
|
||||
"posttest": "npm run lint",
|
||||
"lint": "eslint lib test",
|
||||
"travis": "npm run cover -- --report lcovonly",
|
||||
"cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
|
||||
"release": "npm test && standard-version"
|
||||
},
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/webpack/loader-utils.git"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
},
|
||||
"description": "utils for webpack loaders",
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.11.2",
|
||||
"eslint": "^3.15.0",
|
||||
@@ -32,8 +47,27 @@
|
||||
"mocha": "^1.21.4",
|
||||
"standard-version": "^4.0.0"
|
||||
},
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
]
|
||||
],
|
||||
"homepage": "https://github.com/webpack/loader-utils#readme",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"name": "loader-utils",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/webpack/loader-utils.git"
|
||||
},
|
||||
"scripts": {
|
||||
"cover": "istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha",
|
||||
"lint": "eslint lib test",
|
||||
"posttest": "npm run lint",
|
||||
"release": "npm test && standard-version",
|
||||
"test": "mocha",
|
||||
"travis": "npm run cover -- --report lcovonly"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
||||
|
77
goTorrentWebUI/node_modules/css-loader/node_modules/lodash.camelcase/package.json
generated
vendored
77
goTorrentWebUI/node_modules/css-loader/node_modules/lodash.camelcase/package.json
generated
vendored
@@ -1,17 +1,72 @@
|
||||
{
|
||||
"name": "lodash.camelcase",
|
||||
"version": "4.3.0",
|
||||
"_args": [
|
||||
[
|
||||
"lodash.camelcase@4.3.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "lodash.camelcase@4.3.0",
|
||||
"_id": "lodash.camelcase@4.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=",
|
||||
"_location": "/css-loader/lodash.camelcase",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "lodash.camelcase@4.3.0",
|
||||
"name": "lodash.camelcase",
|
||||
"escapedName": "lodash.camelcase",
|
||||
"rawSpec": "4.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.3.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
|
||||
"_spec": "4.3.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
"url": "http://allyoucanleet.com/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/lodash/lodash/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
"url": "http://allyoucanleet.com/"
|
||||
},
|
||||
{
|
||||
"name": "Blaine Bublitz",
|
||||
"email": "blaine.bublitz@gmail.com",
|
||||
"url": "https://github.com/phated"
|
||||
},
|
||||
{
|
||||
"name": "Mathias Bynens",
|
||||
"email": "mathias@qiwi.be",
|
||||
"url": "https://mathiasbynens.be/"
|
||||
}
|
||||
],
|
||||
"description": "The lodash method `_.camelCase` exported as a module.",
|
||||
"homepage": "https://lodash.com/",
|
||||
"icon": "https://lodash.com/icon.svg",
|
||||
"license": "MIT",
|
||||
"keywords": "lodash-modularized, camelcase",
|
||||
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
|
||||
"contributors": [
|
||||
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
|
||||
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
|
||||
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
|
||||
"keywords": [
|
||||
"lodash-modularized",
|
||||
"camelcase"
|
||||
],
|
||||
"repository": "lodash/lodash",
|
||||
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
|
||||
"license": "MIT",
|
||||
"name": "lodash.camelcase",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lodash/lodash.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
||||
},
|
||||
"version": "4.3.0"
|
||||
}
|
||||
|
77
goTorrentWebUI/node_modules/css-loader/node_modules/lodash.memoize/package.json
generated
vendored
77
goTorrentWebUI/node_modules/css-loader/node_modules/lodash.memoize/package.json
generated
vendored
@@ -1,17 +1,72 @@
|
||||
{
|
||||
"name": "lodash.memoize",
|
||||
"version": "4.1.2",
|
||||
"_args": [
|
||||
[
|
||||
"lodash.memoize@4.1.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "lodash.memoize@4.1.2",
|
||||
"_id": "lodash.memoize@4.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
|
||||
"_location": "/css-loader/lodash.memoize",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "lodash.memoize@4.1.2",
|
||||
"name": "lodash.memoize",
|
||||
"escapedName": "lodash.memoize",
|
||||
"rawSpec": "4.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.1.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/caniuse-api"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
|
||||
"_spec": "4.1.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
"url": "http://allyoucanleet.com/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/lodash/lodash/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
"url": "http://allyoucanleet.com/"
|
||||
},
|
||||
{
|
||||
"name": "Blaine Bublitz",
|
||||
"email": "blaine.bublitz@gmail.com",
|
||||
"url": "https://github.com/phated"
|
||||
},
|
||||
{
|
||||
"name": "Mathias Bynens",
|
||||
"email": "mathias@qiwi.be",
|
||||
"url": "https://mathiasbynens.be/"
|
||||
}
|
||||
],
|
||||
"description": "The lodash method `_.memoize` exported as a module.",
|
||||
"homepage": "https://lodash.com/",
|
||||
"icon": "https://lodash.com/icon.svg",
|
||||
"license": "MIT",
|
||||
"keywords": "lodash-modularized, memoize",
|
||||
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
|
||||
"contributors": [
|
||||
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
|
||||
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
|
||||
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
|
||||
"keywords": [
|
||||
"lodash-modularized",
|
||||
"memoize"
|
||||
],
|
||||
"repository": "lodash/lodash",
|
||||
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
|
||||
"license": "MIT",
|
||||
"name": "lodash.memoize",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lodash/lodash.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
||||
},
|
||||
"version": "4.1.2"
|
||||
}
|
||||
|
77
goTorrentWebUI/node_modules/css-loader/node_modules/lodash.uniq/package.json
generated
vendored
77
goTorrentWebUI/node_modules/css-loader/node_modules/lodash.uniq/package.json
generated
vendored
@@ -1,17 +1,72 @@
|
||||
{
|
||||
"name": "lodash.uniq",
|
||||
"version": "4.5.0",
|
||||
"_args": [
|
||||
[
|
||||
"lodash.uniq@4.5.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "lodash.uniq@4.5.0",
|
||||
"_id": "lodash.uniq@4.5.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
|
||||
"_location": "/css-loader/lodash.uniq",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "lodash.uniq@4.5.0",
|
||||
"name": "lodash.uniq",
|
||||
"escapedName": "lodash.uniq",
|
||||
"rawSpec": "4.5.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.5.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/caniuse-api"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
|
||||
"_spec": "4.5.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
"url": "http://allyoucanleet.com/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/lodash/lodash/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
"url": "http://allyoucanleet.com/"
|
||||
},
|
||||
{
|
||||
"name": "Blaine Bublitz",
|
||||
"email": "blaine.bublitz@gmail.com",
|
||||
"url": "https://github.com/phated"
|
||||
},
|
||||
{
|
||||
"name": "Mathias Bynens",
|
||||
"email": "mathias@qiwi.be",
|
||||
"url": "https://mathiasbynens.be/"
|
||||
}
|
||||
],
|
||||
"description": "The lodash method `_.uniq` exported as a module.",
|
||||
"homepage": "https://lodash.com/",
|
||||
"icon": "https://lodash.com/icon.svg",
|
||||
"license": "MIT",
|
||||
"keywords": "lodash-modularized, uniq",
|
||||
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
|
||||
"contributors": [
|
||||
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)",
|
||||
"Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
|
||||
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)"
|
||||
"keywords": [
|
||||
"lodash-modularized",
|
||||
"uniq"
|
||||
],
|
||||
"repository": "lodash/lodash",
|
||||
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }
|
||||
"license": "MIT",
|
||||
"name": "lodash.uniq",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/lodash/lodash.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
|
||||
},
|
||||
"version": "4.5.0"
|
||||
}
|
||||
|
58
goTorrentWebUI/node_modules/css-loader/node_modules/macaddress/package.json
generated
vendored
58
goTorrentWebUI/node_modules/css-loader/node_modules/macaddress/package.json
generated
vendored
@@ -1,15 +1,40 @@
|
||||
{
|
||||
"name": "macaddress",
|
||||
"version": "0.2.8",
|
||||
"_args": [
|
||||
[
|
||||
"macaddress@0.2.8",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "macaddress@0.2.8",
|
||||
"_id": "macaddress@0.2.8",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-WQTcU3w57G2+/q6QIycTX6hRHxI=",
|
||||
"_location": "/css-loader/macaddress",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "macaddress@0.2.8",
|
||||
"name": "macaddress",
|
||||
"escapedName": "macaddress",
|
||||
"rawSpec": "0.2.8",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.2.8"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/uniqid"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.2.8.tgz",
|
||||
"_spec": "0.2.8",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Julian Fleischer"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/scravy/node-macaddress/issues"
|
||||
},
|
||||
"description": "Get the MAC addresses (hardware addresses) of the hosts network interfaces.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/scravy/node-macaddress.git"
|
||||
},
|
||||
"homepage": "https://github.com/scravy/node-macaddress",
|
||||
"keywords": [
|
||||
"mac",
|
||||
"mac-address",
|
||||
@@ -17,10 +42,15 @@
|
||||
"network",
|
||||
"system"
|
||||
],
|
||||
"author": "Julian Fleischer",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/scravy/node-macaddress/issues"
|
||||
"main": "index.js",
|
||||
"name": "macaddress",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/scravy/node-macaddress.git"
|
||||
},
|
||||
"homepage": "https://github.com/scravy/node-macaddress"
|
||||
"scripts": {
|
||||
"test": "node test.js"
|
||||
},
|
||||
"version": "0.2.8"
|
||||
}
|
||||
|
@@ -1,32 +1,63 @@
|
||||
{
|
||||
"name": "math-expression-evaluator",
|
||||
"version": "1.2.17",
|
||||
"description": "A flexible math expression evaluator",
|
||||
"main": "src/formula_evaluator.js",
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/redhivesoftware/math-expression-evaluator#readme"
|
||||
},
|
||||
"keywords": [
|
||||
"math",
|
||||
"expression",
|
||||
"evaluator",
|
||||
"parser"
|
||||
"_args": [
|
||||
[
|
||||
"math-expression-evaluator@1.2.17",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Ankit<ankitbug94@gmail.com>",
|
||||
"license": "MIT",
|
||||
"_from": "math-expression-evaluator@1.2.17",
|
||||
"_id": "math-expression-evaluator@1.2.17",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=",
|
||||
"_location": "/css-loader/math-expression-evaluator",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "math-expression-evaluator@1.2.17",
|
||||
"name": "math-expression-evaluator",
|
||||
"escapedName": "math-expression-evaluator",
|
||||
"rawSpec": "1.2.17",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.2.17"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/reduce-css-calc"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz",
|
||||
"_spec": "1.2.17",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ankit",
|
||||
"email": "ankitbug94@gmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
|
||||
},
|
||||
"homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
|
||||
"description": "A flexible math expression evaluator",
|
||||
"devDependencies": {
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-browserify": "^3.8.0",
|
||||
"grunt-contrib-jshint": "^0.11.2",
|
||||
"grunt-contrib-uglify": "^0.9.1",
|
||||
"mocha": "^2.2.5"
|
||||
}
|
||||
},
|
||||
"homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
|
||||
"keywords": [
|
||||
"math",
|
||||
"expression",
|
||||
"evaluator",
|
||||
"parser"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "src/formula_evaluator.js",
|
||||
"name": "math-expression-evaluator",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "1.2.17"
|
||||
}
|
||||
|
108
goTorrentWebUI/node_modules/css-loader/node_modules/minimist/package.json
generated
vendored
108
goTorrentWebUI/node_modules/css-loader/node_modules/minimist/package.json
generated
vendored
@@ -1,40 +1,74 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"minimist@0.0.8",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "minimist@0.0.8",
|
||||
"_id": "minimist@0.0.8",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
|
||||
"_location": "/css-loader/minimist",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "minimist@0.0.8",
|
||||
"name": "minimist",
|
||||
"version": "0.0.8",
|
||||
"description": "parse argument options",
|
||||
"main": "index.js",
|
||||
"devDependencies": {
|
||||
"tape": "~1.0.4",
|
||||
"tap": "~0.4.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tap test/*.js"
|
||||
},
|
||||
"testling" : {
|
||||
"files" : "test/*.js",
|
||||
"browsers" : [
|
||||
"ie/6..latest",
|
||||
"ff/5", "firefox/latest",
|
||||
"chrome/10", "chrome/latest",
|
||||
"safari/5.1", "safari/latest",
|
||||
"opera/12"
|
||||
]
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/substack/minimist.git"
|
||||
},
|
||||
"homepage": "https://github.com/substack/minimist",
|
||||
"keywords": [
|
||||
"argv",
|
||||
"getopt",
|
||||
"parser",
|
||||
"optimist"
|
||||
],
|
||||
"author": {
|
||||
"name": "James Halliday",
|
||||
"email": "mail@substack.net",
|
||||
"url": "http://substack.net"
|
||||
},
|
||||
"license": "MIT"
|
||||
"escapedName": "minimist",
|
||||
"rawSpec": "0.0.8",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.0.8"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/mkdirp"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
||||
"_spec": "0.0.8",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "James Halliday",
|
||||
"email": "mail@substack.net",
|
||||
"url": "http://substack.net"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/substack/minimist/issues"
|
||||
},
|
||||
"description": "parse argument options",
|
||||
"devDependencies": {
|
||||
"tap": "~0.4.0",
|
||||
"tape": "~1.0.4"
|
||||
},
|
||||
"homepage": "https://github.com/substack/minimist",
|
||||
"keywords": [
|
||||
"argv",
|
||||
"getopt",
|
||||
"parser",
|
||||
"optimist"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "minimist",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/substack/minimist.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tap test/*.js"
|
||||
},
|
||||
"testling": {
|
||||
"files": "test/*.js",
|
||||
"browsers": [
|
||||
"ie/6..latest",
|
||||
"ff/5",
|
||||
"firefox/latest",
|
||||
"chrome/10",
|
||||
"chrome/latest",
|
||||
"safari/5.1",
|
||||
"safari/latest",
|
||||
"opera/12"
|
||||
]
|
||||
},
|
||||
"version": "0.0.8"
|
||||
}
|
||||
|
72
goTorrentWebUI/node_modules/css-loader/node_modules/mkdirp/package.json
generated
vendored
72
goTorrentWebUI/node_modules/css-loader/node_modules/mkdirp/package.json
generated
vendored
@@ -1,27 +1,65 @@
|
||||
{
|
||||
"name": "mkdirp",
|
||||
"description": "Recursively mkdir, like `mkdir -p`",
|
||||
"version": "0.5.1",
|
||||
"author": "James Halliday <mail@substack.net> (http://substack.net)",
|
||||
"main": "index.js",
|
||||
"keywords": [
|
||||
"mkdir",
|
||||
"directory"
|
||||
"_args": [
|
||||
[
|
||||
"mkdirp@0.5.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/substack/node-mkdirp.git"
|
||||
"_from": "mkdirp@0.5.1",
|
||||
"_id": "mkdirp@0.5.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
||||
"_location": "/css-loader/mkdirp",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "mkdirp@0.5.1",
|
||||
"name": "mkdirp",
|
||||
"escapedName": "mkdirp",
|
||||
"rawSpec": "0.5.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.5.1"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tap test/*.js"
|
||||
"_requiredBy": [
|
||||
"/css-loader/svgo"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
||||
"_spec": "0.5.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "James Halliday",
|
||||
"email": "mail@substack.net",
|
||||
"url": "http://substack.net"
|
||||
},
|
||||
"bin": {
|
||||
"mkdirp": "bin/cmd.js"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/substack/node-mkdirp/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"minimist": "0.0.8"
|
||||
},
|
||||
"description": "Recursively mkdir, like `mkdir -p`",
|
||||
"devDependencies": {
|
||||
"tap": "1",
|
||||
"mock-fs": "2 >=2.7.0"
|
||||
"mock-fs": "2 >=2.7.0",
|
||||
"tap": "1"
|
||||
},
|
||||
"bin": "bin/cmd.js",
|
||||
"license": "MIT"
|
||||
"homepage": "https://github.com/substack/node-mkdirp#readme",
|
||||
"keywords": [
|
||||
"mkdir",
|
||||
"directory"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "mkdirp",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/substack/node-mkdirp.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tap test/*.js"
|
||||
},
|
||||
"version": "0.5.1"
|
||||
}
|
||||
|
89
goTorrentWebUI/node_modules/css-loader/node_modules/normalize-range/package.json
generated
vendored
89
goTorrentWebUI/node_modules/css-loader/node_modules/normalize-range/package.json
generated
vendored
@@ -1,37 +1,42 @@
|
||||
{
|
||||
"name": "normalize-range",
|
||||
"version": "0.1.2",
|
||||
"description": "Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates",
|
||||
"license": "MIT",
|
||||
"repository": "jamestalmage/normalize-range",
|
||||
"_args": [
|
||||
[
|
||||
"normalize-range@0.1.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "normalize-range@0.1.2",
|
||||
"_id": "normalize-range@0.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
|
||||
"_location": "/css-loader/normalize-range",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "normalize-range@0.1.2",
|
||||
"name": "normalize-range",
|
||||
"escapedName": "normalize-range",
|
||||
"rawSpec": "0.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.1.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/autoprefixer"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
||||
"_spec": "0.1.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "James Talmage",
|
||||
"email": "james@talmage.io",
|
||||
"url": "github.com/jamestalmage"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
"bugs": {
|
||||
"url": "https://github.com/jamestalmage/normalize-range/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "npm run cover && npm run lint && npm run style",
|
||||
"cover": "istanbul cover ./node_modules/.bin/_mocha",
|
||||
"lint": "jshint --reporter=node_modules/jshint-stylish *.js test/*.js",
|
||||
"debug": "mocha",
|
||||
"watch": "mocha -w",
|
||||
"style": "jscs *.js ./**/*.js && jscs ./test/** --config=./test/.jscsrc"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"range",
|
||||
"normalize",
|
||||
"utility",
|
||||
"angle",
|
||||
"degrees",
|
||||
"polar"
|
||||
],
|
||||
"dependencies": {},
|
||||
"description": "Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates",
|
||||
"devDependencies": {
|
||||
"almost-equal": "^1.0.0",
|
||||
"codeclimate-test-reporter": "^0.1.0",
|
||||
@@ -42,5 +47,35 @@
|
||||
"jshint-stylish": "^2.0.1",
|
||||
"mocha": "^2.2.5",
|
||||
"stringify-pi": "0.0.3"
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/jamestalmage/normalize-range#readme",
|
||||
"keywords": [
|
||||
"range",
|
||||
"normalize",
|
||||
"utility",
|
||||
"angle",
|
||||
"degrees",
|
||||
"polar"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "normalize-range",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jamestalmage/normalize-range.git"
|
||||
},
|
||||
"scripts": {
|
||||
"cover": "istanbul cover ./node_modules/.bin/_mocha",
|
||||
"debug": "mocha",
|
||||
"lint": "jshint --reporter=node_modules/jshint-stylish *.js test/*.js",
|
||||
"style": "jscs *.js ./**/*.js && jscs ./test/** --config=./test/.jscsrc",
|
||||
"test": "npm run cover && npm run lint && npm run style",
|
||||
"watch": "mocha -w"
|
||||
},
|
||||
"version": "0.1.2"
|
||||
}
|
||||
|
69
goTorrentWebUI/node_modules/css-loader/node_modules/normalize-url/package.json
generated
vendored
69
goTorrentWebUI/node_modules/css-loader/node_modules/normalize-url/package.json
generated
vendored
@@ -1,23 +1,58 @@
|
||||
{
|
||||
"name": "normalize-url",
|
||||
"version": "1.9.1",
|
||||
"description": "Normalize a URL",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/normalize-url",
|
||||
"_args": [
|
||||
[
|
||||
"normalize-url@1.9.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "normalize-url@1.9.1",
|
||||
"_id": "normalize-url@1.9.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=",
|
||||
"_location": "/css-loader/normalize-url",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "normalize-url@1.9.1",
|
||||
"name": "normalize-url",
|
||||
"escapedName": "normalize-url",
|
||||
"rawSpec": "1.9.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.9.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-normalize-url"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz",
|
||||
"_spec": "1.9.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/normalize-url/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"object-assign": "^4.0.1",
|
||||
"prepend-http": "^1.0.0",
|
||||
"query-string": "^4.1.0",
|
||||
"sort-keys": "^1.0.0"
|
||||
},
|
||||
"description": "Normalize a URL",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "^0.16.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/normalize-url#readme",
|
||||
"keywords": [
|
||||
"normalize",
|
||||
"url",
|
||||
@@ -37,14 +72,14 @@
|
||||
"trim",
|
||||
"canonical"
|
||||
],
|
||||
"dependencies": {
|
||||
"object-assign": "^4.0.1",
|
||||
"prepend-http": "^1.0.0",
|
||||
"query-string": "^4.1.0",
|
||||
"sort-keys": "^1.0.0"
|
||||
"license": "MIT",
|
||||
"name": "normalize-url",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/normalize-url.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "^0.16.0"
|
||||
}
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "1.9.1"
|
||||
}
|
||||
|
54
goTorrentWebUI/node_modules/css-loader/node_modules/num2fraction/package.json
generated
vendored
54
goTorrentWebUI/node_modules/css-loader/node_modules/num2fraction/package.json
generated
vendored
@@ -1,18 +1,45 @@
|
||||
{
|
||||
"name": "num2fraction",
|
||||
"version": "1.2.2",
|
||||
"description": "Convert number to fraction",
|
||||
"main": "index.js",
|
||||
"_args": [
|
||||
[
|
||||
"num2fraction@1.2.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "num2fraction@1.2.2",
|
||||
"_id": "num2fraction@1.2.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=",
|
||||
"_location": "/css-loader/num2fraction",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "num2fraction@1.2.2",
|
||||
"name": "num2fraction",
|
||||
"escapedName": "num2fraction",
|
||||
"rawSpec": "1.2.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.2.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/autoprefixer"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
|
||||
"_spec": "1.2.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "yisi",
|
||||
"email": "yiorsi@gmail.com",
|
||||
"url": "http://iyunlu.com/view"
|
||||
},
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@github.com:yisibl/num2fraction.git"
|
||||
"bugs": {
|
||||
"url": "https://github.com/yisibl/num2fraction/issues"
|
||||
},
|
||||
"description": "Convert number to fraction",
|
||||
"devDependencies": {
|
||||
"tape": "^3.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/yisibl/num2fraction#readme",
|
||||
"keywords": [
|
||||
"fraction",
|
||||
"number",
|
||||
@@ -22,10 +49,15 @@
|
||||
"gcd",
|
||||
"rational"
|
||||
],
|
||||
"devDependencies": {
|
||||
"tape": "^3.0.0"
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "num2fraction",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/yisibl/num2fraction.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "tape test/*.js"
|
||||
}
|
||||
},
|
||||
"version": "1.2.2"
|
||||
}
|
||||
|
69
goTorrentWebUI/node_modules/css-loader/node_modules/object-assign/package.json
generated
vendored
69
goTorrentWebUI/node_modules/css-loader/node_modules/object-assign/package.json
generated
vendored
@@ -1,24 +1,58 @@
|
||||
{
|
||||
"name": "object-assign",
|
||||
"version": "4.1.1",
|
||||
"description": "ES2015 `Object.assign()` ponyfill",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/object-assign",
|
||||
"_args": [
|
||||
[
|
||||
"object-assign@4.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "object-assign@4.1.1",
|
||||
"_id": "object-assign@4.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
|
||||
"_location": "/css-loader/object-assign",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "object-assign@4.1.1",
|
||||
"name": "object-assign",
|
||||
"escapedName": "object-assign",
|
||||
"rawSpec": "4.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader",
|
||||
"/css-loader/cssnano",
|
||||
"/css-loader/normalize-url",
|
||||
"/css-loader/postcss-minify-font-values",
|
||||
"/css-loader/query-string"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
||||
"_spec": "4.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/object-assign/issues"
|
||||
},
|
||||
"description": "ES2015 `Object.assign()` ponyfill",
|
||||
"devDependencies": {
|
||||
"ava": "^0.16.0",
|
||||
"lodash": "^4.16.4",
|
||||
"matcha": "^0.7.0",
|
||||
"xo": "^0.16.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava",
|
||||
"bench": "matcha bench.js"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/object-assign#readme",
|
||||
"keywords": [
|
||||
"object",
|
||||
"assign",
|
||||
@@ -33,10 +67,15 @@
|
||||
"shim",
|
||||
"browser"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^0.16.0",
|
||||
"lodash": "^4.16.4",
|
||||
"matcha": "^0.7.0",
|
||||
"xo": "^0.16.0"
|
||||
}
|
||||
"license": "MIT",
|
||||
"name": "object-assign",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/object-assign.git"
|
||||
},
|
||||
"scripts": {
|
||||
"bench": "matcha bench.js",
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "4.1.1"
|
||||
}
|
||||
|
77
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-calc/package.json
generated
vendored
77
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-calc/package.json
generated
vendored
@@ -1,7 +1,54 @@
|
||||
{
|
||||
"name": "postcss-calc",
|
||||
"version": "5.3.1",
|
||||
"_args": [
|
||||
[
|
||||
"postcss-calc@5.3.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "postcss-calc@5.3.1",
|
||||
"_id": "postcss-calc@5.3.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=",
|
||||
"_location": "/css-loader/postcss-calc",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-calc@5.3.1",
|
||||
"name": "postcss-calc",
|
||||
"escapedName": "postcss-calc",
|
||||
"rawSpec": "5.3.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "5.3.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz",
|
||||
"_spec": "5.3.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Maxime Thirouin"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/postcss/postcss-calc/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.2",
|
||||
"postcss-message-helpers": "^2.0.0",
|
||||
"reduce-css-calc": "^1.2.6"
|
||||
},
|
||||
"description": "PostCSS plugin to reduce calc()",
|
||||
"devDependencies": {
|
||||
"eslint": "^1.0.0",
|
||||
"npmpub": "^3.1.0",
|
||||
"postcss-custom-properties": "^5.0.0",
|
||||
"tape": "^3.0.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/postcss/postcss-calc#readme",
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
@@ -9,25 +56,15 @@
|
||||
"calculation",
|
||||
"calc"
|
||||
],
|
||||
"author": "Maxime Thirouin",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/postcss/postcss-calc.git",
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"postcss-message-helpers": "^2.0.0",
|
||||
"reduce-css-calc": "^1.2.6",
|
||||
"postcss": "^5.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^1.0.0",
|
||||
"npmpub": "^3.1.0",
|
||||
"postcss-custom-properties": "^5.0.0",
|
||||
"tape": "^3.0.0"
|
||||
"name": "postcss-calc",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/postcss/postcss-calc.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "eslint . && tape test",
|
||||
"release": "npmpub"
|
||||
}
|
||||
"release": "npmpub",
|
||||
"test": "eslint . && tape test"
|
||||
},
|
||||
"version": "5.3.1"
|
||||
}
|
||||
|
106
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-colormin/package.json
generated
vendored
106
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-colormin/package.json
generated
vendored
@@ -1,28 +1,49 @@
|
||||
{
|
||||
"name": "postcss-colormin",
|
||||
"version": "2.2.2",
|
||||
"description": "Minify colors in your CSS files with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-colormin@2.2.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
"_from": "postcss-colormin@2.2.2",
|
||||
"_id": "postcss-colormin@2.2.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=",
|
||||
"_location": "/css-loader/postcss-colormin",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-colormin@2.2.2",
|
||||
"name": "postcss-colormin",
|
||||
"escapedName": "postcss-colormin",
|
||||
"rawSpec": "2.2.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.2.2"
|
||||
},
|
||||
"keywords": [
|
||||
"color",
|
||||
"colors",
|
||||
"compression",
|
||||
"css",
|
||||
"minify",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz",
|
||||
"_spec": "2.2.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-colormin/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"colormin": "^1.0.5",
|
||||
"postcss": "^5.0.13",
|
||||
"postcss-value-parser": "^3.2.3"
|
||||
},
|
||||
"description": "Minify colors in your CSS files with PostCSS.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.17.0",
|
||||
"babel-cli": "^6.3.17",
|
||||
@@ -38,22 +59,35 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^2.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-colormin",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-colormin",
|
||||
"dependencies": {
|
||||
"colormin": "^1.0.5",
|
||||
"postcss": "^5.0.13",
|
||||
"postcss-value-parser": "^3.2.3"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
}
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-colormin",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colors",
|
||||
"compression",
|
||||
"css",
|
||||
"minify",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-colormin",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-colormin.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
},
|
||||
"version": "2.2.2"
|
||||
}
|
||||
|
104
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-convert-values/package.json
generated
vendored
104
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-convert-values/package.json
generated
vendored
@@ -1,27 +1,48 @@
|
||||
{
|
||||
"name": "postcss-convert-values",
|
||||
"version": "2.6.1",
|
||||
"description": "Convert values with PostCSS (e.g. ms -> s)",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-convert-values@2.6.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava",
|
||||
"test-012": "ava"
|
||||
"_from": "postcss-convert-values@2.6.1",
|
||||
"_id": "postcss-convert-values@2.6.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=",
|
||||
"_location": "/css-loader/postcss-convert-values",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-convert-values@2.6.1",
|
||||
"name": "postcss-convert-values",
|
||||
"escapedName": "postcss-convert-values",
|
||||
"rawSpec": "2.6.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.6.1"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"optimisation",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz",
|
||||
"_spec": "2.6.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-convert-values/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.11",
|
||||
"postcss-value-parser": "^3.1.2"
|
||||
},
|
||||
"description": "Convert values with PostCSS (e.g. ms -> s)",
|
||||
"devDependencies": {
|
||||
"all-contributors-cli": "^3.0.5",
|
||||
"ava": "^0.17.0",
|
||||
@@ -38,21 +59,34 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^2.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-convert-values",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-convert-values",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.11",
|
||||
"postcss-value-parser": "^3.1.2"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-convert-values",
|
||||
"keywords": [
|
||||
"css",
|
||||
"optimisation",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-convert-values",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-convert-values.git"
|
||||
},
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava",
|
||||
"test-012": "ava"
|
||||
},
|
||||
"version": "2.6.1"
|
||||
}
|
||||
|
@@ -1,24 +1,47 @@
|
||||
{
|
||||
"name": "postcss-discard-comments",
|
||||
"version": "2.0.4",
|
||||
"description": "Discard comments in your CSS files with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-discard-comments@2.0.4",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__"
|
||||
"_from": "postcss-discard-comments@2.0.4",
|
||||
"_id": "postcss-discard-comments@2.0.4",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=",
|
||||
"_location": "/css-loader/postcss-discard-comments",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-discard-comments@2.0.4",
|
||||
"name": "postcss-discard-comments",
|
||||
"escapedName": "postcss-discard-comments",
|
||||
"rawSpec": "2.0.4",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.4"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"comments",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz",
|
||||
"_spec": "2.0.4",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-core/register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-discard-comments/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.14"
|
||||
},
|
||||
"description": "Discard comments in your CSS files with PostCSS.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.11.0",
|
||||
"babel-cli": "^6.5.1",
|
||||
@@ -33,20 +56,31 @@
|
||||
"postcss-scss": "^0.1.3",
|
||||
"postcss-simple-vars": "^1.2.0"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-comments",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-discard-comments",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.14"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-core/register"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-comments",
|
||||
"keywords": [
|
||||
"css",
|
||||
"comments",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-discard-comments",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-discard-comments.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__"
|
||||
},
|
||||
"version": "2.0.4"
|
||||
}
|
||||
|
@@ -1,31 +1,47 @@
|
||||
{
|
||||
"name": "postcss-discard-duplicates",
|
||||
"version": "2.1.0",
|
||||
"description": "Discard duplicate rules in your CSS files with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-discard-duplicates@2.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
"_from": "postcss-discard-duplicates@2.1.0",
|
||||
"_id": "postcss-discard-duplicates@2.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=",
|
||||
"_location": "/css-loader/postcss-discard-duplicates",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-discard-duplicates@2.1.0",
|
||||
"name": "postcss-discard-duplicates",
|
||||
"escapedName": "postcss-discard-duplicates",
|
||||
"rawSpec": "2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"dedupe",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-discard-duplicates/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.4"
|
||||
},
|
||||
"description": "Discard duplicate rules in your CSS files with PostCSS.",
|
||||
"devDependencies": {
|
||||
"all-contributors-cli": "^3.0.5",
|
||||
"ava": "^0.17.0",
|
||||
@@ -42,17 +58,35 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^2.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-duplicates",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-discard-duplicates",
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
}
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-duplicates",
|
||||
"keywords": [
|
||||
"css",
|
||||
"dedupe",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-discard-duplicates",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-discard-duplicates.git"
|
||||
},
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
}
|
||||
|
94
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-empty/package.json
generated
vendored
94
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-empty/package.json
generated
vendored
@@ -1,30 +1,47 @@
|
||||
{
|
||||
"name": "postcss-discard-empty",
|
||||
"version": "2.1.0",
|
||||
"description": "Discard empty rules and values with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-discard-empty@2.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__"
|
||||
"_from": "postcss-discard-empty@2.1.0",
|
||||
"_id": "postcss-discard-empty@2.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=",
|
||||
"_location": "/css-loader/postcss-discard-empty",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-discard-empty@2.1.0",
|
||||
"name": "postcss-discard-empty",
|
||||
"escapedName": "postcss-discard-empty",
|
||||
"rawSpec": "2.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
},
|
||||
"keywords": [
|
||||
"compress",
|
||||
"css",
|
||||
"empty",
|
||||
"minify",
|
||||
"optimisation",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-core/register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-discard-empty/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.14"
|
||||
},
|
||||
"description": "Discard empty rules and values with PostCSS.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.14.0",
|
||||
"babel-cli": "^6.4.5",
|
||||
@@ -37,17 +54,34 @@
|
||||
"eslint": "^2.0.0",
|
||||
"eslint-config-cssnano": "^2.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-empty",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-discard-empty",
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-core/register"
|
||||
}
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-empty",
|
||||
"keywords": [
|
||||
"compress",
|
||||
"css",
|
||||
"empty",
|
||||
"minify",
|
||||
"optimisation",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-discard-empty",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-discard-empty.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
}
|
||||
|
@@ -1,26 +1,48 @@
|
||||
{
|
||||
"name": "postcss-discard-overridden",
|
||||
"version": "0.1.1",
|
||||
"description": "PostCSS plugin to discard overridden @keyframes or @counter-style.",
|
||||
"main": "dist/index.js",
|
||||
"keywords": [
|
||||
"postcss",
|
||||
"css",
|
||||
"postcss-plugin",
|
||||
"at-rules",
|
||||
"@keyframes",
|
||||
"@counter-style"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-discard-overridden@0.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Justineo <justice360@gmail.com>",
|
||||
"license": "MIT",
|
||||
"repository": "Justineo/postcss-discard-overridden",
|
||||
"_from": "postcss-discard-overridden@0.1.1",
|
||||
"_id": "postcss-discard-overridden@0.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=",
|
||||
"_location": "/css-loader/postcss-discard-overridden",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-discard-overridden@0.1.1",
|
||||
"name": "postcss-discard-overridden",
|
||||
"escapedName": "postcss-discard-overridden",
|
||||
"rawSpec": "0.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz",
|
||||
"_spec": "0.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Justineo",
|
||||
"email": "justice360@gmail.com"
|
||||
},
|
||||
"ava": {
|
||||
"require": [
|
||||
"babel-register"
|
||||
]
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Justineo/postcss-discard-overridden/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Justineo/postcss-discard-overridden",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.16"
|
||||
},
|
||||
"description": "PostCSS plugin to discard overridden @keyframes or @counter-style.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.14.0",
|
||||
"babel-cli": "^6.7.7",
|
||||
@@ -30,15 +52,27 @@
|
||||
"eslint": "^2.1.0",
|
||||
"eslint-config-postcss": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "ava && eslint *.js"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "eslint-config-postcss/es5"
|
||||
},
|
||||
"ava": {
|
||||
"require": [
|
||||
"babel-register"
|
||||
]
|
||||
}
|
||||
"homepage": "https://github.com/Justineo/postcss-discard-overridden",
|
||||
"keywords": [
|
||||
"postcss",
|
||||
"css",
|
||||
"postcss-plugin",
|
||||
"at-rules",
|
||||
"@keyframes",
|
||||
"@counter-style"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-discard-overridden",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Justineo/postcss-discard-overridden.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "ava && eslint *.js"
|
||||
},
|
||||
"version": "0.1.1"
|
||||
}
|
||||
|
110
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-unused/package.json
generated
vendored
110
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-unused/package.json
generated
vendored
@@ -1,30 +1,48 @@
|
||||
{
|
||||
"name": "postcss-discard-unused",
|
||||
"version": "2.2.3",
|
||||
"description": "Discard unused counter styles, keyframes and fonts.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"bin",
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-discard-unused@2.2.3",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
"_from": "postcss-discard-unused@2.2.3",
|
||||
"_id": "postcss-discard-unused@2.2.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=",
|
||||
"_location": "/css-loader/postcss-discard-unused",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-discard-unused@2.2.3",
|
||||
"name": "postcss-discard-unused",
|
||||
"escapedName": "postcss-discard-unused",
|
||||
"rawSpec": "2.2.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.2.3"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"minify",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin",
|
||||
"unused"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz",
|
||||
"_spec": "2.2.3",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-discard-unused/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.14",
|
||||
"uniqs": "^2.0.0"
|
||||
},
|
||||
"description": "Discard unused counter styles, keyframes and fonts.",
|
||||
"devDependencies": {
|
||||
"all-contributors-cli": "^3.0.5",
|
||||
"ava": "^0.16.0",
|
||||
@@ -41,21 +59,37 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^2.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-unused",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-discard-unused",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.14",
|
||||
"uniqs": "^2.0.0"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-discard-unused",
|
||||
"keywords": [
|
||||
"css",
|
||||
"minify",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin",
|
||||
"unused"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-discard-unused",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-discard-unused.git"
|
||||
},
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
},
|
||||
"version": "2.2.3"
|
||||
}
|
||||
|
104
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-filter-plugins/package.json
generated
vendored
104
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-filter-plugins/package.json
generated
vendored
@@ -1,26 +1,48 @@
|
||||
{
|
||||
"name": "postcss-filter-plugins",
|
||||
"version": "2.0.2",
|
||||
"description": "Exclude/warn on duplicated PostCSS plugins.",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__/",
|
||||
"test-012": "ava src/__tests__/"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-filter-plugins@2.0.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "postcss-filter-plugins@2.0.2",
|
||||
"_id": "postcss-filter-plugins@2.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-bYWGJTTXNaxCDkqFgG4fXUKG2Ew=",
|
||||
"_location": "/css-loader/postcss-filter-plugins",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-filter-plugins@2.0.2",
|
||||
"name": "postcss-filter-plugins",
|
||||
"escapedName": "postcss-filter-plugins",
|
||||
"rawSpec": "2.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.2"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz",
|
||||
"_spec": "2.0.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/postcss/postcss-filter-plugins/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.4",
|
||||
"uniqid": "^4.0.0"
|
||||
},
|
||||
"description": "Exclude/warn on duplicated PostCSS plugins.",
|
||||
"devDependencies": {
|
||||
"all-contributors-cli": "^3.0.5",
|
||||
"ava": "^0.16.0",
|
||||
@@ -37,21 +59,33 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^1.10.2"
|
||||
},
|
||||
"homepage": "https://github.com/postcss/postcss-filter-plugins",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "postcss/postcss-filter-plugins",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.4",
|
||||
"uniqid": "^4.0.0"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/postcss/postcss-filter-plugins",
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-filter-plugins",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/postcss/postcss-filter-plugins.git"
|
||||
},
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__/",
|
||||
"test-012": "ava src/__tests__/"
|
||||
},
|
||||
"version": "2.0.2"
|
||||
}
|
||||
|
102
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-idents/package.json
generated
vendored
102
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-idents/package.json
generated
vendored
@@ -1,25 +1,49 @@
|
||||
{
|
||||
"name": "postcss-merge-idents",
|
||||
"version": "2.1.7",
|
||||
"description": "Merge keyframe and counter style identifiers.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-merge-idents@2.1.7",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
"_from": "postcss-merge-idents@2.1.7",
|
||||
"_id": "postcss-merge-idents@2.1.7",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=",
|
||||
"_location": "/css-loader/postcss-merge-idents",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-merge-idents@2.1.7",
|
||||
"name": "postcss-merge-idents",
|
||||
"escapedName": "postcss-merge-idents",
|
||||
"rawSpec": "2.1.7",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.7"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"merge",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz",
|
||||
"_spec": "2.1.7",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-merge-idents/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"has": "^1.0.1",
|
||||
"postcss": "^5.0.10",
|
||||
"postcss-value-parser": "^3.1.1"
|
||||
},
|
||||
"description": "Merge keyframe and counter style identifiers.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.16.0",
|
||||
"babel-cli": "^6.3.17",
|
||||
@@ -35,22 +59,32 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^1.10.2"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-merge-idents",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-merge-idents",
|
||||
"dependencies": {
|
||||
"has": "^1.0.1",
|
||||
"postcss": "^5.0.10",
|
||||
"postcss-value-parser": "^3.1.1"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-merge-idents",
|
||||
"keywords": [
|
||||
"css",
|
||||
"merge",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-merge-idents",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-merge-idents.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
},
|
||||
"version": "2.1.7"
|
||||
}
|
||||
|
76
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-longhand/package.json
generated
vendored
76
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-longhand/package.json
generated
vendored
@@ -1,16 +1,55 @@
|
||||
{
|
||||
"name": "postcss-merge-longhand",
|
||||
"version": "2.0.2",
|
||||
"_args": [
|
||||
[
|
||||
"postcss-merge-longhand@2.0.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "postcss-merge-longhand@2.0.2",
|
||||
"_id": "postcss-merge-longhand@2.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=",
|
||||
"_location": "/css-loader/postcss-merge-longhand",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-merge-longhand@2.0.2",
|
||||
"name": "postcss-merge-longhand",
|
||||
"escapedName": "postcss-merge-longhand",
|
||||
"rawSpec": "2.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz",
|
||||
"_spec": "2.0.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-merge-longhand/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.4"
|
||||
},
|
||||
"description": "Merge longhand properties into shorthand with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"devDependencies": {
|
||||
"babel": "^5.8.23",
|
||||
"babel-tape-runner": "^1.2.0",
|
||||
"tap-spec": "^4.1.0",
|
||||
"tape": "^4.2.0"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"prepublish": "babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "babel-tape-runner \"src/**/__tests__/*.js\" | tap-spec"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-merge-longhand",
|
||||
"keywords": [
|
||||
"css",
|
||||
"minify",
|
||||
@@ -19,20 +58,15 @@
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"babel": "^5.8.23",
|
||||
"babel-tape-runner": "^1.2.0",
|
||||
"tap-spec": "^4.1.0",
|
||||
"tape": "^4.2.0"
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-merge-longhand",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-merge-longhand.git"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-merge-longhand",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
"scripts": {
|
||||
"prepublish": "babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "babel-tape-runner \"src/**/__tests__/*.js\" | tap-spec"
|
||||
},
|
||||
"repository": "ben-eb/postcss-merge-longhand",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.4"
|
||||
}
|
||||
"version": "2.0.2"
|
||||
}
|
||||
|
134
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-rules/package.json
generated
vendored
134
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-rules/package.json
generated
vendored
@@ -1,26 +1,65 @@
|
||||
{
|
||||
"name": "postcss-merge-rules",
|
||||
"version": "2.1.2",
|
||||
"description": "Merge CSS rules with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-merge-rules@2.1.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "cross-env BABEL_ENV=test nyc ava src/__tests__",
|
||||
"test-012": "cross-env BABEL_ENV=test nyc ava src/__tests__"
|
||||
"_from": "postcss-merge-rules@2.1.2",
|
||||
"_id": "postcss-merge-rules@2.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=",
|
||||
"_location": "/css-loader/postcss-merge-rules",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-merge-rules@2.1.2",
|
||||
"name": "postcss-merge-rules",
|
||||
"escapedName": "postcss-merge-rules",
|
||||
"rawSpec": "2.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.2"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz",
|
||||
"_spec": "2.1.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"browserslist": {
|
||||
"chrome58": [
|
||||
"Chrome 58"
|
||||
],
|
||||
"edge15": [
|
||||
"Edge 15"
|
||||
],
|
||||
"ie6": [
|
||||
"IE 6"
|
||||
],
|
||||
"ie7": [
|
||||
"IE 7"
|
||||
]
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-merge-rules/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"browserslist": "^1.5.2",
|
||||
"caniuse-api": "^1.5.2",
|
||||
"postcss": "^5.0.4",
|
||||
"postcss-selector-parser": "^2.2.2",
|
||||
"vendors": "^1.0.0"
|
||||
},
|
||||
"description": "Merge CSS rules with PostCSS.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.17.0",
|
||||
"babel-cli": "^6.3.17",
|
||||
@@ -41,42 +80,37 @@
|
||||
"postcss-discard-comments": "^2.0.4",
|
||||
"postcss-simple-vars": "^3.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-merge-rules",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-merge-rules",
|
||||
"dependencies": {
|
||||
"browserslist": "^1.5.2",
|
||||
"caniuse-api": "^1.5.2",
|
||||
"postcss": "^5.0.4",
|
||||
"postcss-selector-parser": "^2.2.2",
|
||||
"vendors": "^1.0.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-merge-rules",
|
||||
"keywords": [
|
||||
"css",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-merge-rules",
|
||||
"nyc": {
|
||||
"sourceMap": false,
|
||||
"instrument": false
|
||||
},
|
||||
"browserslist": {
|
||||
"chrome58": [
|
||||
"Chrome 58"
|
||||
],
|
||||
"edge15": [
|
||||
"Edge 15"
|
||||
],
|
||||
"ie6": [
|
||||
"IE 6"
|
||||
],
|
||||
"ie7": [
|
||||
"IE 7"
|
||||
]
|
||||
}
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-merge-rules.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "cross-env BABEL_ENV=test nyc ava src/__tests__",
|
||||
"test-012": "cross-env BABEL_ENV=test nyc ava src/__tests__"
|
||||
},
|
||||
"version": "2.1.2"
|
||||
}
|
||||
|
66
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-message-helpers/package.json
generated
vendored
66
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-message-helpers/package.json
generated
vendored
@@ -1,7 +1,51 @@
|
||||
{
|
||||
"name": "postcss-message-helpers",
|
||||
"version": "2.0.0",
|
||||
"_args": [
|
||||
[
|
||||
"postcss-message-helpers@2.0.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "postcss-message-helpers@2.0.0",
|
||||
"_id": "postcss-message-helpers@2.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=",
|
||||
"_location": "/css-loader/postcss-message-helpers",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-message-helpers@2.0.0",
|
||||
"name": "postcss-message-helpers",
|
||||
"escapedName": "postcss-message-helpers",
|
||||
"rawSpec": "2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-calc"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz",
|
||||
"_spec": "2.0.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Maxime Thirouin"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/MoOx/postcss-message-helpers/issues"
|
||||
},
|
||||
"description": "PostCSS helpers to throw or output GNU style messages",
|
||||
"devDependencies": {
|
||||
"jscs": "^1.6.2",
|
||||
"jshint": "^2.5.6",
|
||||
"postcss": "^4.0.2",
|
||||
"tape": "^3.0.0"
|
||||
},
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/MoOx/postcss-message-helpers#readme",
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
@@ -10,25 +54,15 @@
|
||||
"error",
|
||||
"warning"
|
||||
],
|
||||
"author": "Maxime Thirouin",
|
||||
"license": "MIT",
|
||||
"name": "postcss-message-helpers",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/MoOx/postcss-message-helpers.git"
|
||||
},
|
||||
"files": [
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"devDependencies": {
|
||||
"jscs": "^1.6.2",
|
||||
"jshint": "^2.5.6",
|
||||
"postcss": "^4.0.2",
|
||||
"tape": "^3.0.0"
|
||||
"url": "git+https://github.com/MoOx/postcss-message-helpers.git"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "jscs *.js **/*.js && jshint . --exclude-path .gitignore",
|
||||
"test": "npm run lint && tape test"
|
||||
}
|
||||
},
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
@@ -1,18 +1,55 @@
|
||||
{
|
||||
"name": "postcss-minify-font-values",
|
||||
"version": "1.0.5",
|
||||
"_args": [
|
||||
[
|
||||
"postcss-minify-font-values@1.0.5",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "postcss-minify-font-values@1.0.5",
|
||||
"_id": "postcss-minify-font-values@1.0.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=",
|
||||
"_location": "/css-loader/postcss-minify-font-values",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-minify-font-values@1.0.5",
|
||||
"name": "postcss-minify-font-values",
|
||||
"escapedName": "postcss-minify-font-values",
|
||||
"rawSpec": "1.0.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.5"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz",
|
||||
"_spec": "1.0.5",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Bogdan Chadkin",
|
||||
"email": "trysound@yandex.ru"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/TrySound/postcss-minify-font-values/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"object-assign": "^4.0.1",
|
||||
"postcss": "^5.0.4",
|
||||
"postcss-value-parser": "^3.0.2"
|
||||
},
|
||||
"description": "Minify font declarations with PostCSS",
|
||||
"main": "index.js",
|
||||
"devDependencies": {
|
||||
"eslint": "^1.3.1",
|
||||
"tap-spec": "^4.1.0",
|
||||
"tape": "^4.2.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"lib"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "tape test/*.js | tap-spec",
|
||||
"posttest": "eslint index.js lib test"
|
||||
},
|
||||
"author": "Bogdan Chadkin <trysound@yandex.ru>",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/TrySound/postcss-minify-font-values",
|
||||
"keywords": [
|
||||
"css",
|
||||
"font",
|
||||
@@ -21,22 +58,16 @@
|
||||
"optimise",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"devDependencies": {
|
||||
"eslint": "^1.3.1",
|
||||
"tap-spec": "^4.1.0",
|
||||
"tape": "^4.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"object-assign": "^4.0.1",
|
||||
"postcss": "^5.0.4",
|
||||
"postcss-value-parser": "^3.0.2"
|
||||
},
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "postcss-minify-font-values",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/TrySound/postcss-minify-font-values.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/TrySound/postcss-minify-font-values/issues"
|
||||
"scripts": {
|
||||
"posttest": "eslint index.js lib test",
|
||||
"test": "tape test/*.js | tap-spec"
|
||||
},
|
||||
"homepage": "https://github.com/TrySound/postcss-minify-font-values"
|
||||
"version": "1.0.5"
|
||||
}
|
||||
|
104
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-gradients/package.json
generated
vendored
104
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-gradients/package.json
generated
vendored
@@ -1,26 +1,48 @@
|
||||
{
|
||||
"name": "postcss-minify-gradients",
|
||||
"version": "1.0.5",
|
||||
"description": "Minify gradient parameters with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-minify-gradients@1.0.5",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "postcss-minify-gradients@1.0.5",
|
||||
"_id": "postcss-minify-gradients@1.0.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=",
|
||||
"_location": "/css-loader/postcss-minify-gradients",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-minify-gradients@1.0.5",
|
||||
"name": "postcss-minify-gradients",
|
||||
"escapedName": "postcss-minify-gradients",
|
||||
"rawSpec": "1.0.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.5"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz",
|
||||
"_spec": "1.0.5",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-minify-gradients/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.12",
|
||||
"postcss-value-parser": "^3.3.0"
|
||||
},
|
||||
"description": "Minify gradient parameters with PostCSS.",
|
||||
"devDependencies": {
|
||||
"all-contributors-cli": "^3.0.5",
|
||||
"ava": "^0.16.0",
|
||||
@@ -37,21 +59,33 @@
|
||||
"eslint-plugin-babel": "^3.3.0",
|
||||
"eslint-plugin-import": "^2.0.1"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-minify-gradients",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-minify-gradients",
|
||||
"dependencies": {
|
||||
"postcss": "^5.0.12",
|
||||
"postcss-value-parser": "^3.3.0"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-minify-gradients",
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"postcss-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-minify-gradients",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-minify-gradients.git"
|
||||
},
|
||||
"scripts": {
|
||||
"contributorAdd": "all-contributors add",
|
||||
"contributorGenerate": "all-contributors generate",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"test": "ava src/__tests__",
|
||||
"test-012": "ava src/__tests__"
|
||||
},
|
||||
"version": "1.0.5"
|
||||
}
|
||||
|
82
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-params/package.json
generated
vendored
82
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-params/package.json
generated
vendored
@@ -1,38 +1,46 @@
|
||||
{
|
||||
"name": "postcss-minify-params",
|
||||
"version": "1.2.2",
|
||||
"description": "Minify at-rule params with PostCSS",
|
||||
"keywords": [
|
||||
"postcss",
|
||||
"css",
|
||||
"postcss-plugin",
|
||||
"minify",
|
||||
"optimise",
|
||||
"params"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-minify-params@1.2.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist"
|
||||
"_from": "postcss-minify-params@1.2.2",
|
||||
"_id": "postcss-minify-params@1.2.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=",
|
||||
"_location": "/css-loader/postcss-minify-params",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-minify-params@1.2.2",
|
||||
"name": "postcss-minify-params",
|
||||
"escapedName": "postcss-minify-params",
|
||||
"rawSpec": "1.2.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.2.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"author": "Bogdan Chadkin <trysound@yandex.ru>",
|
||||
"license": "MIT",
|
||||
"repository": "ben-eb/postcss-minify-params",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz",
|
||||
"_spec": "1.2.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Bogdan Chadkin",
|
||||
"email": "trysound@yandex.ru"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-minify-params/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-minify-params",
|
||||
"dependencies": {
|
||||
"alphanum-sort": "^1.0.1",
|
||||
"postcss": "^5.0.2",
|
||||
"postcss-value-parser": "^3.0.2",
|
||||
"uniqs": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish buble src -o dist",
|
||||
"pretest": "eslint src",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "cross-env BABEL_ENV=test nyc mocha test --compilers js:buble/register"
|
||||
},
|
||||
"description": "Minify at-rule params with PostCSS",
|
||||
"devDependencies": {
|
||||
"buble": "^0.12.5",
|
||||
"cross-env": "^2.0.0",
|
||||
@@ -48,8 +56,34 @@
|
||||
"mocha": true
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-minify-params",
|
||||
"keywords": [
|
||||
"postcss",
|
||||
"css",
|
||||
"postcss-plugin",
|
||||
"minify",
|
||||
"optimise",
|
||||
"params"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-minify-params",
|
||||
"nyc": {
|
||||
"sourceMap": true,
|
||||
"instrument": true
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-minify-params.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && cross-env BABEL_ENV=publish buble src -o dist",
|
||||
"pretest": "eslint src",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "cross-env BABEL_ENV=test nyc mocha test --compilers js:buble/register"
|
||||
},
|
||||
"version": "1.2.2"
|
||||
}
|
||||
|
108
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-selectors/package.json
generated
vendored
108
goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-selectors/package.json
generated
vendored
@@ -1,28 +1,50 @@
|
||||
{
|
||||
"name": "postcss-minify-selectors",
|
||||
"version": "2.1.1",
|
||||
"description": "Minify selectors with PostCSS.",
|
||||
"main": "dist/index.js",
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-minify-selectors@2.1.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "nyc ava",
|
||||
"test-012": "nyc ava"
|
||||
"_from": "postcss-minify-selectors@2.1.1",
|
||||
"_id": "postcss-minify-selectors@2.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=",
|
||||
"_location": "/css-loader/postcss-minify-selectors",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-minify-selectors@2.1.1",
|
||||
"name": "postcss-minify-selectors",
|
||||
"escapedName": "postcss-minify-selectors",
|
||||
"rawSpec": "2.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.1"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"minify",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin",
|
||||
"selectors"
|
||||
"_requiredBy": [
|
||||
"/css-loader/cssnano"
|
||||
],
|
||||
"license": "MIT",
|
||||
"_resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz",
|
||||
"_spec": "2.1.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ben-eb/postcss-minify-selectors/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"alphanum-sort": "^1.0.2",
|
||||
"has": "^1.0.1",
|
||||
"postcss": "^5.0.14",
|
||||
"postcss-selector-parser": "^2.0.0"
|
||||
},
|
||||
"description": "Minify selectors with PostCSS.",
|
||||
"devDependencies": {
|
||||
"ava": "^0.17.0",
|
||||
"babel-cli": "^6.3.17",
|
||||
@@ -40,23 +62,35 @@
|
||||
"nyc": "^10.0.0",
|
||||
"postcss-font-magician": "^1.4.0"
|
||||
},
|
||||
"homepage": "https://github.com/ben-eb/postcss-minify-selectors",
|
||||
"author": {
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
"repository": "ben-eb/postcss-minify-selectors.git",
|
||||
"dependencies": {
|
||||
"alphanum-sort": "^1.0.2",
|
||||
"has": "^1.0.1",
|
||||
"postcss": "^5.0.14",
|
||||
"postcss-selector-parser": "^2.0.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "cssnano"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-register"
|
||||
}
|
||||
"files": [
|
||||
"dist",
|
||||
"LICENSE-MIT"
|
||||
],
|
||||
"homepage": "https://github.com/ben-eb/postcss-minify-selectors",
|
||||
"keywords": [
|
||||
"css",
|
||||
"minify",
|
||||
"optimise",
|
||||
"postcss",
|
||||
"postcss-plugin",
|
||||
"selectors"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"name": "postcss-minify-selectors",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ben-eb/postcss-minify-selectors.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"pretest": "eslint src",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "nyc ava",
|
||||
"test-012": "nyc ava"
|
||||
},
|
||||
"version": "2.1.1"
|
||||
}
|
||||
|
@@ -1,54 +1,89 @@
|
||||
{
|
||||
"name": "ansi-styles",
|
||||
"version": "3.2.0",
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/ansi-styles",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"tty",
|
||||
"escape",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"dependencies": {
|
||||
"color-convert": "^1.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-polyfill"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"ansi-styles@3.2.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "ansi-styles@3.2.0",
|
||||
"_id": "ansi-styles@3.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports/ansi-styles",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "ansi-styles@3.2.0",
|
||||
"name": "ansi-styles",
|
||||
"escapedName": "ansi-styles",
|
||||
"rawSpec": "3.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.2.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-extract-imports/chalk"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
|
||||
"_spec": "3.2.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-polyfill"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/ansi-styles/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"color-convert": "^1.9.0"
|
||||
},
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"tty",
|
||||
"escape",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "ansi-styles",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "3.2.0"
|
||||
}
|
||||
|
@@ -1,66 +1,101 @@
|
||||
{
|
||||
"name": "chalk",
|
||||
"version": "2.3.0",
|
||||
"description": "Terminal string styling done right",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/chalk",
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && tsc --project types && nyc ava",
|
||||
"bench": "matcha benchmark.js",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"templates.js",
|
||||
"types/index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"str",
|
||||
"ansi",
|
||||
"style",
|
||||
"styles",
|
||||
"tty",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"dependencies": {
|
||||
"ansi-styles": "^3.1.0",
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"supports-color": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"coveralls": "^3.0.0",
|
||||
"execa": "^0.8.0",
|
||||
"import-fresh": "^2.0.0",
|
||||
"matcha": "^0.7.0",
|
||||
"nyc": "^11.0.2",
|
||||
"resolve-from": "^4.0.0",
|
||||
"typescript": "^2.5.3",
|
||||
"xo": "*"
|
||||
},
|
||||
"types": "types/index.d.ts",
|
||||
"xo": {
|
||||
"envs": [
|
||||
"node",
|
||||
"mocha"
|
||||
]
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"chalk@2.3.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "chalk@2.3.0",
|
||||
"_id": "chalk@2.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports/chalk",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "chalk@2.3.0",
|
||||
"name": "chalk",
|
||||
"escapedName": "chalk",
|
||||
"rawSpec": "2.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.3.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-extract-imports/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
|
||||
"_spec": "2.3.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/chalk/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-styles": "^3.1.0",
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"supports-color": "^4.0.0"
|
||||
},
|
||||
"description": "Terminal string styling done right",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"coveralls": "^3.0.0",
|
||||
"execa": "^0.8.0",
|
||||
"import-fresh": "^2.0.0",
|
||||
"matcha": "^0.7.0",
|
||||
"nyc": "^11.0.2",
|
||||
"resolve-from": "^4.0.0",
|
||||
"typescript": "^2.5.3",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"templates.js",
|
||||
"types/index.d.ts"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/chalk#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"str",
|
||||
"ansi",
|
||||
"style",
|
||||
"styles",
|
||||
"tty",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "chalk",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/chalk.git"
|
||||
},
|
||||
"scripts": {
|
||||
"bench": "matcha benchmark.js",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
||||
"test": "xo && tsc --project types && nyc ava"
|
||||
},
|
||||
"types": "types/index.d.ts",
|
||||
"version": "2.3.0",
|
||||
"xo": {
|
||||
"envs": [
|
||||
"node",
|
||||
"mocha"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@@ -1,28 +1,52 @@
|
||||
{
|
||||
"name": "has-flag",
|
||||
"version": "2.0.0",
|
||||
"description": "Check if argv has a specific flag",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/has-flag",
|
||||
"_args": [
|
||||
[
|
||||
"has-flag@2.0.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "has-flag@2.0.0",
|
||||
"_id": "has-flag@2.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports/has-flag",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "has-flag@2.0.0",
|
||||
"name": "has-flag",
|
||||
"escapedName": "has-flag",
|
||||
"rawSpec": "2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-extract-imports/supports-color"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
|
||||
"_spec": "2.0.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"maintainers": [
|
||||
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
|
||||
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
|
||||
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/has-flag/issues"
|
||||
},
|
||||
"description": "Check if argv has a specific flag",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/has-flag#readme",
|
||||
"keywords": [
|
||||
"has",
|
||||
"check",
|
||||
@@ -42,8 +66,31 @@
|
||||
"minimist",
|
||||
"optimist"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
}
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
{
|
||||
"name": "Joshua Appelman",
|
||||
"email": "jappelman@xebia.com",
|
||||
"url": "jbnicolai.com"
|
||||
},
|
||||
{
|
||||
"name": "JD Ballard",
|
||||
"email": "i.am.qix@gmail.com",
|
||||
"url": "github.com/qix-"
|
||||
}
|
||||
],
|
||||
"name": "has-flag",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/has-flag.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
@@ -1,30 +1,50 @@
|
||||
{
|
||||
"name": "postcss",
|
||||
"version": "6.0.14",
|
||||
"description": "Tool for transforming styles with JS plugins",
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"rework",
|
||||
"preprocessor",
|
||||
"parser",
|
||||
"source map",
|
||||
"transform",
|
||||
"manipulation",
|
||||
"transpiler"
|
||||
"_args": [
|
||||
[
|
||||
"postcss@6.0.14",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
||||
"license": "MIT",
|
||||
"homepage": "http://postcss.org/",
|
||||
"repository": "postcss/postcss",
|
||||
"_from": "postcss@6.0.14",
|
||||
"_id": "postcss@6.0.14",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-NJ1z0f+1offCgadPhz+DvGm5Mkci+mmV5BqD13S992o0Xk9eElxUfPPF+t2ksH5R/17gz4xVK8KWocUQ5o3Rog==",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports/postcss",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss@6.0.14",
|
||||
"name": "postcss",
|
||||
"escapedName": "postcss",
|
||||
"rawSpec": "6.0.14",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "6.0.14"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-extract-imports"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz",
|
||||
"_spec": "6.0.14",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Andrey Sitnik",
|
||||
"email": "andrey@sitnik.ru"
|
||||
},
|
||||
"browser": {
|
||||
"supports-color": false,
|
||||
"chalk": false,
|
||||
"fs": false
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/postcss/postcss/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^2.3.0",
|
||||
"source-map": "^0.6.1",
|
||||
"supports-color": "^4.4.0"
|
||||
},
|
||||
"description": "Tool for transforming styles with JS plugins",
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-eslint": "^8.0.1",
|
||||
@@ -54,35 +74,8 @@
|
||||
"strip-ansi": "^4.0.0",
|
||||
"yaspeller-ci": "^0.7.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint-staged": "lint-staged",
|
||||
"test": "gulp"
|
||||
},
|
||||
"main": "lib/postcss",
|
||||
"types": "lib/postcss.d.ts",
|
||||
"lint-staged": {
|
||||
"test/*.js": "eslint",
|
||||
"lib/*.es6": "eslint",
|
||||
"*.md": "yaspeller-ci"
|
||||
},
|
||||
"pre-commit": [
|
||||
"lint-staged"
|
||||
],
|
||||
"browser": {
|
||||
"supports-color": false,
|
||||
"chalk": false,
|
||||
"fs": false
|
||||
},
|
||||
"size-limit": [
|
||||
{
|
||||
"path": "lib/postcss.js",
|
||||
"limit": "29 KB"
|
||||
}
|
||||
],
|
||||
"jest": {
|
||||
"modulePathIgnorePatterns": [
|
||||
"build"
|
||||
]
|
||||
"engines": {
|
||||
"node": ">=4.0.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"parser": "babel-eslint",
|
||||
@@ -97,5 +90,49 @@
|
||||
"browser": true,
|
||||
"jest": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"homepage": "http://postcss.org/",
|
||||
"jest": {
|
||||
"modulePathIgnorePatterns": [
|
||||
"build"
|
||||
]
|
||||
},
|
||||
"keywords": [
|
||||
"css",
|
||||
"postcss",
|
||||
"rework",
|
||||
"preprocessor",
|
||||
"parser",
|
||||
"source map",
|
||||
"transform",
|
||||
"manipulation",
|
||||
"transpiler"
|
||||
],
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"test/*.js": "eslint",
|
||||
"lib/*.es6": "eslint",
|
||||
"*.md": "yaspeller-ci"
|
||||
},
|
||||
"main": "lib/postcss",
|
||||
"name": "postcss",
|
||||
"pre-commit": [
|
||||
"lint-staged"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/postcss/postcss.git"
|
||||
},
|
||||
"scripts": {
|
||||
"lint-staged": "lint-staged",
|
||||
"test": "gulp"
|
||||
},
|
||||
"size-limit": [
|
||||
{
|
||||
"path": "lib/postcss.js",
|
||||
"limit": "29 KB"
|
||||
}
|
||||
],
|
||||
"types": "lib/postcss.d.ts",
|
||||
"version": "6.0.14"
|
||||
}
|
||||
|
@@ -1,52 +1,193 @@
|
||||
{
|
||||
"name": "source-map",
|
||||
"description": "Generates and consumes source maps",
|
||||
"version": "0.6.1",
|
||||
"homepage": "https://github.com/mozilla/source-map",
|
||||
"author": "Nick Fitzgerald <nfitzgerald@mozilla.com>",
|
||||
"contributors": [
|
||||
"Tobias Koppers <tobias.koppers@googlemail.com>",
|
||||
"Duncan Beevers <duncan@dweebd.com>",
|
||||
"Stephen Crane <scrane@mozilla.com>",
|
||||
"Ryan Seddon <seddon.ryan@gmail.com>",
|
||||
"Miles Elam <miles.elam@deem.com>",
|
||||
"Mihai Bazon <mihai.bazon@gmail.com>",
|
||||
"Michael Ficarra <github.public.email@michael.ficarra.me>",
|
||||
"Todd Wolfson <todd@twolfson.com>",
|
||||
"Alexander Solovyov <alexander@solovyov.net>",
|
||||
"Felix Gnass <fgnass@gmail.com>",
|
||||
"Conrad Irwin <conrad.irwin@gmail.com>",
|
||||
"usrbincc <usrbincc@yahoo.com>",
|
||||
"David Glasser <glasser@davidglasser.net>",
|
||||
"Chase Douglas <chase@newrelic.com>",
|
||||
"Evan Wallace <evan.exe@gmail.com>",
|
||||
"Heather Arthur <fayearthur@gmail.com>",
|
||||
"Hugh Kennedy <hughskennedy@gmail.com>",
|
||||
"David Glasser <glasser@davidglasser.net>",
|
||||
"Simon Lydell <simon.lydell@gmail.com>",
|
||||
"Jmeas Smith <jellyes2@gmail.com>",
|
||||
"Michael Z Goddard <mzgoddard@gmail.com>",
|
||||
"azu <azu@users.noreply.github.com>",
|
||||
"John Gozde <john@gozde.ca>",
|
||||
"Adam Kirkton <akirkton@truefitinnovation.com>",
|
||||
"Chris Montgomery <christopher.montgomery@dowjones.com>",
|
||||
"J. Ryan Stinnett <jryans@gmail.com>",
|
||||
"Jack Herrington <jherrington@walmartlabs.com>",
|
||||
"Chris Truter <jeffpalentine@gmail.com>",
|
||||
"Daniel Espeset <daniel@danielespeset.com>",
|
||||
"Jamie Wong <jamie.lf.wong@gmail.com>",
|
||||
"Eddy Bruël <ejpbruel@mozilla.com>",
|
||||
"Hawken Rives <hawkrives@gmail.com>",
|
||||
"Gilad Peleg <giladp007@gmail.com>",
|
||||
"djchie <djchie.dev@gmail.com>",
|
||||
"Gary Ye <garysye@gmail.com>",
|
||||
"Nicolas Lalevée <nicolas.lalevee@hibnet.org>"
|
||||
"_args": [
|
||||
[
|
||||
"source-map@0.6.1",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/mozilla/source-map.git"
|
||||
"_from": "source-map@0.6.1",
|
||||
"_id": "source-map@0.6.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports/source-map",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "source-map@0.6.1",
|
||||
"name": "source-map",
|
||||
"escapedName": "source-map",
|
||||
"rawSpec": "0.6.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.6.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-extract-imports/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"_spec": "0.6.1",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Nick Fitzgerald",
|
||||
"email": "nfitzgerald@mozilla.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mozilla/source-map/issues"
|
||||
},
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Tobias Koppers",
|
||||
"email": "tobias.koppers@googlemail.com"
|
||||
},
|
||||
{
|
||||
"name": "Duncan Beevers",
|
||||
"email": "duncan@dweebd.com"
|
||||
},
|
||||
{
|
||||
"name": "Stephen Crane",
|
||||
"email": "scrane@mozilla.com"
|
||||
},
|
||||
{
|
||||
"name": "Ryan Seddon",
|
||||
"email": "seddon.ryan@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Miles Elam",
|
||||
"email": "miles.elam@deem.com"
|
||||
},
|
||||
{
|
||||
"name": "Mihai Bazon",
|
||||
"email": "mihai.bazon@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Michael Ficarra",
|
||||
"email": "github.public.email@michael.ficarra.me"
|
||||
},
|
||||
{
|
||||
"name": "Todd Wolfson",
|
||||
"email": "todd@twolfson.com"
|
||||
},
|
||||
{
|
||||
"name": "Alexander Solovyov",
|
||||
"email": "alexander@solovyov.net"
|
||||
},
|
||||
{
|
||||
"name": "Felix Gnass",
|
||||
"email": "fgnass@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Conrad Irwin",
|
||||
"email": "conrad.irwin@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "usrbincc",
|
||||
"email": "usrbincc@yahoo.com"
|
||||
},
|
||||
{
|
||||
"name": "David Glasser",
|
||||
"email": "glasser@davidglasser.net"
|
||||
},
|
||||
{
|
||||
"name": "Chase Douglas",
|
||||
"email": "chase@newrelic.com"
|
||||
},
|
||||
{
|
||||
"name": "Evan Wallace",
|
||||
"email": "evan.exe@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Heather Arthur",
|
||||
"email": "fayearthur@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Hugh Kennedy",
|
||||
"email": "hughskennedy@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "David Glasser",
|
||||
"email": "glasser@davidglasser.net"
|
||||
},
|
||||
{
|
||||
"name": "Simon Lydell",
|
||||
"email": "simon.lydell@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jmeas Smith",
|
||||
"email": "jellyes2@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Michael Z Goddard",
|
||||
"email": "mzgoddard@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "azu",
|
||||
"email": "azu@users.noreply.github.com"
|
||||
},
|
||||
{
|
||||
"name": "John Gozde",
|
||||
"email": "john@gozde.ca"
|
||||
},
|
||||
{
|
||||
"name": "Adam Kirkton",
|
||||
"email": "akirkton@truefitinnovation.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Montgomery",
|
||||
"email": "christopher.montgomery@dowjones.com"
|
||||
},
|
||||
{
|
||||
"name": "J. Ryan Stinnett",
|
||||
"email": "jryans@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Jack Herrington",
|
||||
"email": "jherrington@walmartlabs.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Truter",
|
||||
"email": "jeffpalentine@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Daniel Espeset",
|
||||
"email": "daniel@danielespeset.com"
|
||||
},
|
||||
{
|
||||
"name": "Jamie Wong",
|
||||
"email": "jamie.lf.wong@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Eddy Bruël",
|
||||
"email": "ejpbruel@mozilla.com"
|
||||
},
|
||||
{
|
||||
"name": "Hawken Rives",
|
||||
"email": "hawkrives@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Gilad Peleg",
|
||||
"email": "giladp007@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "djchie",
|
||||
"email": "djchie.dev@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Gary Ye",
|
||||
"email": "garysye@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Nicolas Lalevée",
|
||||
"email": "nicolas.lalevee@hibnet.org"
|
||||
}
|
||||
],
|
||||
"description": "Generates and consumes source maps",
|
||||
"devDependencies": {
|
||||
"doctoc": "^0.15.0",
|
||||
"webpack": "^1.12.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"main": "./source-map.js",
|
||||
"files": [
|
||||
"source-map.js",
|
||||
"source-map.d.ts",
|
||||
@@ -56,18 +197,19 @@
|
||||
"dist/source-map.min.js",
|
||||
"dist/source-map.min.js.map"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"homepage": "https://github.com/mozilla/source-map",
|
||||
"license": "BSD-3-Clause",
|
||||
"main": "./source-map.js",
|
||||
"name": "source-map",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/mozilla/source-map.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "npm run build && node test/run-tests.js",
|
||||
"build": "webpack --color",
|
||||
"test": "npm run build && node test/run-tests.js",
|
||||
"toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md"
|
||||
},
|
||||
"devDependencies": {
|
||||
"doctoc": "^0.15.0",
|
||||
"webpack": "^1.12.0"
|
||||
},
|
||||
"typings": "source-map"
|
||||
"typings": "source-map",
|
||||
"version": "0.6.1"
|
||||
}
|
||||
|
@@ -1,24 +1,59 @@
|
||||
{
|
||||
"name": "supports-color",
|
||||
"version": "4.5.0",
|
||||
"description": "Detect whether a terminal supports color",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/supports-color",
|
||||
"_args": [
|
||||
[
|
||||
"supports-color@4.5.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "supports-color@4.5.0",
|
||||
"_id": "supports-color@4.5.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports/supports-color",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "supports-color@4.5.0",
|
||||
"name": "supports-color",
|
||||
"escapedName": "supports-color",
|
||||
"rawSpec": "4.5.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.5.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-extract-imports/chalk",
|
||||
"/css-loader/postcss-modules-extract-imports/postcss"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
|
||||
"_spec": "4.5.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"browser": "browser.js",
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/supports-color/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"has-flag": "^2.0.0"
|
||||
},
|
||||
"description": "Detect whether a terminal supports color",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"import-fresh": "^2.0.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"browser.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/supports-color#readme",
|
||||
"keywords": [
|
||||
"color",
|
||||
"colour",
|
||||
@@ -41,13 +76,14 @@
|
||||
"truecolor",
|
||||
"16m"
|
||||
],
|
||||
"dependencies": {
|
||||
"has-flag": "^2.0.0"
|
||||
"license": "MIT",
|
||||
"name": "supports-color",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/supports-color.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"import-fresh": "^2.0.0",
|
||||
"xo": "*"
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"browser": "browser.js"
|
||||
"version": "4.5.0"
|
||||
}
|
||||
|
@@ -1,41 +1,43 @@
|
||||
{
|
||||
"name": "postcss-modules-extract-imports",
|
||||
"version": "1.1.0",
|
||||
"description": "A CSS Modules transform to extract local aliases for inline imports",
|
||||
"main": "lib/index.js",
|
||||
"scripts": {
|
||||
"lint": "eslint src",
|
||||
"build": "babel --out-dir lib src",
|
||||
"watch": "chokidar src -c 'npm run build'",
|
||||
"posttest": "npm run lint && npm run build",
|
||||
"test": "mocha --compilers js:babel/register",
|
||||
"autotest": "chokidar src test -c 'npm test'",
|
||||
"precover": "npm run lint && npm run build",
|
||||
"cover": "babel-istanbul cover node_modules/.bin/_mocha",
|
||||
"travis": "npm run cover -- --report lcovonly",
|
||||
"prepublish": "npm run build"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/css-modules/postcss-modules-extract-imports.git"
|
||||
},
|
||||
"keywords": [
|
||||
"css-modules",
|
||||
"postcss",
|
||||
"plugin"
|
||||
"_args": [
|
||||
[
|
||||
"postcss-modules-extract-imports@1.1.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"author": "Glen Maddern",
|
||||
"license": "ISC",
|
||||
"_from": "postcss-modules-extract-imports@1.1.0",
|
||||
"_id": "postcss-modules-extract-imports@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=",
|
||||
"_location": "/css-loader/postcss-modules-extract-imports",
|
||||
"_phantomChildren": {
|
||||
"color-convert": "1.9.1",
|
||||
"escape-string-regexp": "1.0.5"
|
||||
},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "postcss-modules-extract-imports@1.1.0",
|
||||
"name": "postcss-modules-extract-imports",
|
||||
"escapedName": "postcss-modules-extract-imports",
|
||||
"rawSpec": "1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.0"
|
||||
},
|
||||
"_requiredBy": [],
|
||||
"_resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz",
|
||||
"_spec": "1.1.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Glen Maddern"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/css-modules/postcss-modules-extract-imports/issues"
|
||||
},
|
||||
"homepage": "https://github.com/css-modules/postcss-modules-extract-imports",
|
||||
"dependencies": {
|
||||
"postcss": "^6.0.1"
|
||||
},
|
||||
"description": "A CSS Modules transform to extract local aliases for inline imports",
|
||||
"devDependencies": {
|
||||
"babel": "^5.4.7",
|
||||
"babel-eslint": "^7.2.2",
|
||||
@@ -46,5 +48,34 @@
|
||||
"coveralls": "^2.11.2",
|
||||
"eslint": "^1.5.0",
|
||||
"mocha": "^3.1.2"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
],
|
||||
"homepage": "https://github.com/css-modules/postcss-modules-extract-imports",
|
||||
"keywords": [
|
||||
"css-modules",
|
||||
"postcss",
|
||||
"plugin"
|
||||
],
|
||||
"license": "ISC",
|
||||
"main": "lib/index.js",
|
||||
"name": "postcss-modules-extract-imports",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/css-modules/postcss-modules-extract-imports.git"
|
||||
},
|
||||
"scripts": {
|
||||
"autotest": "chokidar src test -c 'npm test'",
|
||||
"build": "babel --out-dir lib src",
|
||||
"cover": "babel-istanbul cover node_modules/.bin/_mocha",
|
||||
"lint": "eslint src",
|
||||
"posttest": "npm run lint && npm run build",
|
||||
"precover": "npm run lint && npm run build",
|
||||
"prepublish": "npm run build",
|
||||
"test": "mocha --compilers js:babel/register",
|
||||
"travis": "npm run cover -- --report lcovonly",
|
||||
"watch": "chokidar src -c 'npm run build'"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
||||
|
@@ -1,54 +1,89 @@
|
||||
{
|
||||
"name": "ansi-styles",
|
||||
"version": "3.2.0",
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"license": "MIT",
|
||||
"repository": "chalk/ansi-styles",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"tty",
|
||||
"escape",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"dependencies": {
|
||||
"color-convert": "^1.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-polyfill"
|
||||
}
|
||||
"_args": [
|
||||
[
|
||||
"ansi-styles@3.2.0",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "ansi-styles@3.2.0",
|
||||
"_id": "ansi-styles@3.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
|
||||
"_location": "/css-loader/postcss-modules-local-by-default/ansi-styles",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "ansi-styles@3.2.0",
|
||||
"name": "ansi-styles",
|
||||
"escapedName": "ansi-styles",
|
||||
"rawSpec": "3.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.2.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/css-loader/postcss-modules-local-by-default/chalk"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
|
||||
"_spec": "3.2.0",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"ava": {
|
||||
"require": "babel-polyfill"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/chalk/ansi-styles/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"color-convert": "^1.9.0"
|
||||
},
|
||||
"description": "ANSI escape codes for styling strings in the terminal",
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"xo": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/chalk/ansi-styles#readme",
|
||||
"keywords": [
|
||||
"ansi",
|
||||
"styles",
|
||||
"color",
|
||||
"colour",
|
||||
"colors",
|
||||
"terminal",
|
||||
"console",
|
||||
"cli",
|
||||
"string",
|
||||
"tty",
|
||||
"escape",
|
||||
"formatting",
|
||||
"rgb",
|
||||
"256",
|
||||
"shell",
|
||||
"xterm",
|
||||
"log",
|
||||
"logging",
|
||||
"command-line",
|
||||
"text"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "ansi-styles",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/chalk/ansi-styles.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "3.2.0"
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user