diff --git a/config.toml b/config.toml index 3fc5d9d0..f27449ff 100644 --- a/config.toml +++ b/config.toml @@ -16,20 +16,17 @@ UploadRateLimit = "Unlimited" #Options are "Low", "Medium", "High", "Unlimited" #Unlimited is default DownloadRateLimit = "Unlimited" +[goTorrentWebUI] + #Basic goTorrentWebUI authentication (not terribly secure, implemented in JS, password is hashed to SHA256, not salted, basically don't depend on this if you require very good security) + WebUIAuth = true # bool, if false no authentication is required for the webUI + WebUIUser = "admin" + WebUIPassword = "Password" [notifications] PushBulletToken = "" #add your pushbullet api token here to notify of torrent completion to pushbullet - -[goTorrentWebUI] - #Here you can set a basic HTTP login set of credentials - WebUIAuth = true # bool, if false no authentication is required for the webUI - WebUIUser = "admin" - WebUIPassword = "Password" - - [reverseProxy] #This is for setting up goTorrent behind a reverse Proxy (with SSL, reverse proxy with no SSL will require editing the WSS connection to a WS connection manually) ProxyEnabled = false #bool, either false or true diff --git a/dist-specific-files/Linux-systemd/ReverseProxy/nginx.conf b/dist-specific-files/Linux-systemd/ReverseProxy/nginx.conf deleted file mode 100644 index fc83cf38..00000000 --- a/dist-specific-files/Linux-systemd/ReverseProxy/nginx.conf +++ /dev/null @@ -1,12 +0,0 @@ -location ^~ /gotorrent/ { - proxy_pass http://192.168.1.100:8000/; - proxy_redirect http:// https://; - proxy_pass_header Server; - proxy_set_header Host $http_host; - proxy_set_header X-Real-IP $http_address; - proxy_set_header X-Scheme $scheme; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - -} diff --git a/engine/clientConnectGenerate.go b/engine/clientConnectGenerate.go index db7870fa..de060f6e 100644 --- a/engine/clientConnectGenerate.go +++ b/engine/clientConnectGenerate.go @@ -29,10 +29,19 @@ var ( func GenerateClientConfigFile(config FullClientSettings, authString string) { os.Remove("public/static/js/kickwebsocket-generated.js") var clientFile string + var webUIAuth string + if config.ClientUsername != "" { + webUIAuth = ` + const LoginRequired = true + const ClientUsername = "` + config.ClientUsername + `" + const ClientPassword = "` + config.ClientPassword + `" + ` + } + if config.UseProxy { clientFile = ` ClientAuthString = "` + authString + `" - + ` + webUIAuth + ` var ws = new WebSocket("wss://` + config.BaseURL + `websocket") ` + baseFile } else { @@ -40,7 +49,7 @@ func GenerateClientConfigFile(config FullClientSettings, authString string) { IP = "` + config.HTTPAddrIP + `" Port = "` + config.WebsocketClientPort + `" ClientAuthString = "` + authString + `" - + ` + webUIAuth + ` var ws = new WebSocket(` + "`" + `ws://${IP}:${Port}/websocket` + "`" + `); //creating websocket ` + baseFile diff --git a/engine/engine.go b/engine/engine.go index 15515fc9..0cef7c8e 100644 --- a/engine/engine.go +++ b/engine/engine.go @@ -168,7 +168,7 @@ func StartTorrent(clientTorrent *torrent.Torrent, torrentLocalStorage Storage.To var torrentFilePriority = Storage.TorrentFilePriority{} torrentFilePriority.TorrentFilePath = singleFile.DisplayPath() torrentFilePriority.TorrentFilePriority = "Normal" - + torrentFilePriority.TorrentFileSize = singleFile.Length() TorrentFilePriorityArray = append(TorrentFilePriorityArray, torrentFilePriority) } @@ -215,8 +215,10 @@ func CreateRunningTorrentArray(tclient *torrent.Client, TorrentLocalArray []*Sto Logger.WithFields(logrus.Fields{"torrentFile": singleTorrent.Name(), "error": err}).Error("Unable to add infobytes to the torrent!") } //Logger.WithFields(logrus.Fields{"singleTorrent": singleTorrentFromStorage.TorrentName}).Info("Generating infohash") + calculatedTotalSize := CalculateDownloadSize(singleTorrentFromStorage, singleTorrent) + calculatedCompleteSize := CalculateCompleteSize(singleTorrentFromStorage, singleTorrent) TempHash = singleTorrent.InfoHash() - if (singleTorrent.BytesCompleted() == singleTorrentFromStorage.TorrentSize) && (singleTorrentFromStorage.TorrentMoved == false) { //if we are done downloading and haven't moved torrent yet + if (calculatedCompleteSize == singleTorrentFromStorage.TorrentSize) && (singleTorrentFromStorage.TorrentMoved == false) { //if we are done downloading and haven't moved torrent yet Logger.WithFields(logrus.Fields{"singleTorrent": singleTorrentFromStorage.TorrentName}).Info("Torrent Completed, moving...") MoveAndLeaveSymlink(config, singleTorrent.InfoHash().String(), db, false, "") //can take some time to move file so running this in another thread TODO make this a goroutine and skip this block if the routine is still running } @@ -226,12 +228,13 @@ func CreateRunningTorrentArray(tclient *torrent.Client, TorrentLocalArray []*Sto activePeersString := strconv.Itoa(fullStruct.ActivePeers) //converting to strings totalPeersString := fmt.Sprintf("%v", fullStruct.TotalPeers) fullClientDB.StoragePath = singleTorrentFromStorage.StoragePath - downloadedSizeHumanized := HumanizeBytes(float32(singleTorrent.BytesCompleted())) //convert size to GB if needed - totalSizeHumanized := HumanizeBytes(float32(singleTorrentFromStorage.TorrentSize)) + downloadedSizeHumanized := HumanizeBytes(float32(calculatedCompleteSize)) //convert size to GB if needed + totalSizeHumanized := HumanizeBytes(float32(calculatedTotalSize)) + fullClientDB.DownloadedSize = downloadedSizeHumanized fullClientDB.Size = totalSizeHumanized - PercentDone := fmt.Sprintf("%.2f", float32(singleTorrent.BytesCompleted())/float32(singleTorrentFromStorage.TorrentSize)) + PercentDone := fmt.Sprintf("%.2f", float32(calculatedCompleteSize)/float32(calculatedTotalSize)) fullClientDB.TorrentHash = TempHash fullClientDB.PercentDone = PercentDone fullClientDB.DataBytesRead = fullStruct.ConnStats.BytesReadData //used for calculations not passed to client calculating up/down speed @@ -241,7 +244,7 @@ func CreateRunningTorrentArray(tclient *torrent.Client, TorrentLocalArray []*Sto fullClientDB.TorrentName = singleTorrentFromStorage.TorrentName fullClientDB.DateAdded = singleTorrentFromStorage.DateAdded fullClientDB.TorrentLabel = singleTorrentFromStorage.Label - fullClientDB.BytesCompleted = singleTorrent.BytesCompleted() + fullClientDB.BytesCompleted = calculatedCompleteSize fullClientDB.NumberofFiles = len(singleTorrent.Files()) if len(PreviousTorrentArray) > 0 { //if we actually have a previous array //ranging over the previous torrent array to calculate the speed for each torrent @@ -253,7 +256,7 @@ func CreateRunningTorrentArray(tclient *torrent.Client, TorrentLocalArray []*Sto } } } - CalculateTorrentETA(singleTorrentFromStorage.TorrentSize, singleTorrent.BytesCompleted(), fullClientDB) //needs to be here since we need the speed calculated before we can estimate the eta. + CalculateTorrentETA(singleTorrentFromStorage.TorrentSize, calculatedCompleteSize, fullClientDB) //needs to be here since we need the speed calculated before we can estimate the eta. fullClientDB.TotalUploadedSize = HumanizeBytes(float32(fullClientDB.TotalUploadedBytes)) fullClientDB.UploadRatio = CalculateUploadRatio(singleTorrent, fullClientDB) //calculate the upload ratio diff --git a/engine/engineHelpers.go b/engine/engineHelpers.go index 84c3c137..311f3348 100644 --- a/engine/engineHelpers.go +++ b/engine/engineHelpers.go @@ -40,7 +40,7 @@ func HumanizeBytes(bytes float32) string { } //CopyFile takes a source file string and a destination file string and copies the file -func CopyFile(srcFile string, destFile string) { +func CopyFile(srcFile string, destFile string) { //TODO move this to our imported copy repo fileContents, err := os.Open(srcFile) defer fileContents.Close() if err != nil { @@ -84,8 +84,35 @@ func CalculateTorrentSpeed(t *torrent.Torrent, c *ClientDB, oc ClientDB) { } //CalculateDownloadSize will calculate the download size once file priorities are sorted out -func CalculateDownloadSize(tFromStorage *Storage.TorrentLocal) { +func CalculateDownloadSize(tFromStorage *Storage.TorrentLocal, activeTorrent *torrent.Torrent) int64 { + var totalLength int64 + for _, file := range tFromStorage.TorrentFilePriority { + if file.TorrentFilePriority != "Cancel" { + totalLength = totalLength + file.TorrentFileSize + } + } + return totalLength +} +//CalculateCompleteSize will be used to calculate how much of the actual torrent we have completed minus the canceled files (even if they have been partially downloaded) +func CalculateCompleteSize(tFromStorage *Storage.TorrentLocal, activeTorrent *torrent.Torrent) int64 { + var downloadedLength int64 + var discardByteLength int64 + for _, storageFile := range tFromStorage.TorrentFilePriority { + if storageFile.TorrentFilePriority != "Cancel" { //If the file is canceled + for _, activeFile := range activeTorrent.Files() { + if activeFile.DisplayPath() == storageFile.TorrentFilePath { //match the file from storage to active + for _, piece := range activeFile.State() { + if piece.Partial || piece.Complete { + discardByteLength = discardByteLength + piece.Bytes + } + } + } + } + } + } + downloadedLength = downloadedLength - discardByteLength + return downloadedLength } //CalculateTorrentETA is used to estimate the remaining dl time of the torrent based on the speed that the MB are being downloaded diff --git a/engine/settings.go b/engine/settings.go index 38371c6b..e57c8854 100644 --- a/engine/settings.go +++ b/engine/settings.go @@ -1,6 +1,7 @@ package engine import ( + "crypto/sha256" "fmt" "path/filepath" "strings" @@ -22,6 +23,8 @@ type FullClientSettings struct { UseProxy bool WebsocketClientPort string BaseURL string + ClientUsername string + ClientPassword string Version int TorrentConfig torrent.Config TFileUploadFolder string @@ -105,55 +108,10 @@ func FullClientSettingsNew() FullClientSettings { var httpAddr string var baseURL string var websocketClientPort string - - httpAddrIP := viper.GetString("serverConfig.ServerAddr") - httpAddrPort := viper.GetString("serverConfig.ServerPort") - proxySet := viper.GetBool("reverseProxy.ProxyEnabled") - websocketClientPort = strings.TrimLeft(viper.GetString("serverConfig.ServerPort"), ":") //Trimming off the colon in front of the port - if proxySet { - baseURL = viper.GetString("reverseProxy.BaseURL") - fmt.Println("WebsocketClientPort", viper.GetString("serverConfig.ServerPort")) - } - seedRatioStop := viper.GetFloat64("serverConfig.SeedRatioStop") - httpAddr = httpAddrIP + httpAddrPort - pushBulletToken := viper.GetString("notifications.PushBulletToken") - defaultMoveFolder := filepath.ToSlash(viper.GetString("serverConfig.DefaultMoveFolder")) //Converting the string literal into a filepath - defaultMoveFolderAbs, err := filepath.Abs(defaultMoveFolder) - if err != nil { - fmt.Println("Failed creating absolute path for defaultMoveFolder", err) - } - torrentWatchFolder := filepath.ToSlash(viper.GetString("serverConfig.TorrentWatchFolder")) - torrentWatchFolderAbs, err := filepath.Abs(torrentWatchFolder) - if err != nil { - fmt.Println("Failed creating absolute path for torrentWatchFolderAbs", err) - } - - dataDir := filepath.ToSlash(viper.GetString("torrentClientConfig.DownloadDir")) //Converting the string literal into a filepath - dataDirAbs, err := filepath.Abs(dataDir) //Converting to an absolute file path - if err != nil { - fmt.Println("Failed creating absolute path for dataDir", err) - } - - var uploadRateLimiter *rate.Limiter - var downloadRateLimiter *rate.Limiter - uploadRate := viper.GetString("serverConfig.UploadRateLimit") - downloadRate := viper.GetString("serverConfig.DownloadRateLimit") - downloadRateLimiter, uploadRateLimiter = calculateRateLimiters(uploadRate, downloadRate) - - listenAddr := viper.GetString("torrentClientConfig.ListenAddr") - disablePex := viper.GetBool("torrentClientConfig.DisablePEX") - noDHT := viper.GetBool("torrentClientConfig.NoDHT") - noUpload := viper.GetBool("torrentClientConfig.NoUpload") - seed := viper.GetBool("torrentClientConfig.Seed") - - peerID := viper.GetString("torrentClientConfig.PeerID") - disableUTP := viper.GetBool("torrentClientConfig.DisableUTP") - disableTCP := viper.GetBool("torrentClientConfig.DisableTCP") - disableIPv6 := viper.GetBool("torrentClientConfig.DisableIPv6") - debug := viper.GetBool("torrentClientConfig.Debug") + var logLevel logrus.Level + //logging logLevelString := viper.GetString("serverConfig.LogLevel") logOutput := viper.GetString("serverConfig.LogOutput") - var logLevel logrus.Level switch logLevelString { //Options = Debug 5, Info 4, Warn 3, Error 2, Fatal 1, Panic 0 case "Panic": logLevel = 0 @@ -171,6 +129,65 @@ func FullClientSettingsNew() FullClientSettings { logLevel = 3 } + //HTTP, proxy + httpAddrIP := viper.GetString("serverConfig.ServerAddr") + httpAddrPort := viper.GetString("serverConfig.ServerPort") + httpAddr = httpAddrIP + httpAddrPort + proxySet := viper.GetBool("reverseProxy.ProxyEnabled") + websocketClientPort = strings.TrimLeft(viper.GetString("serverConfig.ServerPort"), ":") //Trimming off the colon in front of the port + if proxySet { + baseURL = viper.GetString("reverseProxy.BaseURL") + fmt.Println("WebsocketClientPort", viper.GetString("serverConfig.ServerPort")) + } + //Client Authentication + clientAuthEnabled := viper.GetBool("goTorrentWebUI.WebUIAuth") + var webUIUser string + var webUIPasswordHash string + if clientAuthEnabled { + webUIUser = viper.GetString("goTorrentWebUI.WebUIUser") + webUIPassword := viper.GetString("goTorrentWebUI.WebUIPassword") + hash256 := sha256.New() + hash256.Write([]byte(webUIPassword)) //Hashing the password + webUIPasswordHash = fmt.Sprintf("%x", hash256.Sum(nil)) //Printing the password out as a string + } + //General Settings + seedRatioStop := viper.GetFloat64("serverConfig.SeedRatioStop") + defaultMoveFolder := filepath.ToSlash(viper.GetString("serverConfig.DefaultMoveFolder")) //Converting the string literal into a filepath + defaultMoveFolderAbs, err := filepath.Abs(defaultMoveFolder) + if err != nil { + fmt.Println("Failed creating absolute path for defaultMoveFolder", err) + } + torrentWatchFolder := filepath.ToSlash(viper.GetString("serverConfig.TorrentWatchFolder")) + torrentWatchFolderAbs, err := filepath.Abs(torrentWatchFolder) + if err != nil { + fmt.Println("Failed creating absolute path for torrentWatchFolderAbs", err) + } + //Notifications + pushBulletToken := viper.GetString("notifications.PushBulletToken") + + //Rate Limiters + var uploadRateLimiter *rate.Limiter + var downloadRateLimiter *rate.Limiter + uploadRate := viper.GetString("serverConfig.UploadRateLimit") + downloadRate := viper.GetString("serverConfig.DownloadRateLimit") + downloadRateLimiter, uploadRateLimiter = calculateRateLimiters(uploadRate, downloadRate) + //Internals + dataDir := filepath.ToSlash(viper.GetString("torrentClientConfig.DownloadDir")) //Converting the string literal into a filepath + dataDirAbs, err := filepath.Abs(dataDir) //Converting to an absolute file path + if err != nil { + fmt.Println("Failed creating absolute path for dataDir", err) + } + listenAddr := viper.GetString("torrentClientConfig.ListenAddr") + disablePex := viper.GetBool("torrentClientConfig.DisablePEX") + noDHT := viper.GetBool("torrentClientConfig.NoDHT") + noUpload := viper.GetBool("torrentClientConfig.NoUpload") + seed := viper.GetBool("torrentClientConfig.Seed") + + peerID := viper.GetString("torrentClientConfig.PeerID") + disableUTP := viper.GetBool("torrentClientConfig.DisableUTP") + disableTCP := viper.GetBool("torrentClientConfig.DisableTCP") + disableIPv6 := viper.GetBool("torrentClientConfig.DisableIPv6") + debug := viper.GetBool("torrentClientConfig.Debug") dhtServerConfig := dht.ServerConfig{ StartingNodes: dht.GlobalBootstrapAddrs, @@ -212,6 +229,8 @@ func FullClientSettingsNew() FullClientSettings { HTTPAddrIP: httpAddrIP, UseProxy: proxySet, WebsocketClientPort: websocketClientPort, + ClientUsername: webUIUser, + ClientPassword: webUIPasswordHash, TorrentConfig: tConfig, BaseURL: baseURL, TFileUploadFolder: "uploadedTorrents", diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/anymatch/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/anymatch/package.json index a4979f57..c575a09b 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/anymatch/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/anymatch/package.json @@ -1,55 +1,23 @@ { - "_args": [ - [ - "anymatch@1.3.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "anymatch", + "version": "1.3.2", + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "files": [ + "index.js" ], - "_development": true, - "_from": "anymatch@1.3.2", - "_id": "anymatch@1.3.2", - "_inBundle": false, - "_integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "_location": "/babel-cli/anymatch", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "anymatch@1.3.2", - "name": "anymatch", - "escapedName": "anymatch", - "rawSpec": "1.3.2", - "saveSpec": null, - "fetchSpec": "1.3.2" - }, - "_requiredBy": [ - "/babel-cli/chokidar" - ], - "_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "_spec": "1.3.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Elan Shanker", "url": "http://github.com/es128" }, + "license": "ISC", + "homepage": "https://github.com/es128/anymatch", + "repository": { + "type": "git", + "url": "https://github.com/es128/anymatch" + }, "bugs": { "url": "https://github.com/es128/anymatch/issues" }, - "dependencies": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" - }, - "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", - "devDependencies": { - "coveralls": "^2.11.2", - "istanbul": "^0.3.13", - "mocha": "^2.2.4" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/es128/anymatch", "keywords": [ "match", "any", @@ -64,14 +32,16 @@ "expression", "function" ], - "license": "ISC", - "name": "anymatch", - "repository": { - "type": "git", - "url": "git+https://github.com/es128/anymatch.git" - }, "scripts": { "test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls" }, - "version": "1.3.2" + "dependencies": { + "micromatch": "^2.1.5", + "normalize-path": "^2.0.0" + }, + "devDependencies": { + "coveralls": "^2.11.2", + "istanbul": "^0.3.13", + "mocha": "^2.2.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-code-frame/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-code-frame/package.json index b7b825cd..7cf9346c 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-code-frame/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-code-frame/package.json @@ -1,51 +1,15 @@ { - "_args": [ - [ - "babel-code-frame@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-code-frame@6.26.0", - "_id": "babel-code-frame@6.26.0", - "_inBundle": false, - "_integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "_location": "/babel-cli/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": [ - "/babel-cli/babel-core", - "/babel-cli/babel-traverse" - ], - "_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" - }, + "name": "babel-code-frame", + "version": "6.26.0", + "description": "Generate errors that contain a code frame that point to source locations.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "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" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-core/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-core/package.json index 6d0c8d61..496cdfc5 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-core/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-core/package.json @@ -1,37 +1,29 @@ { - "_args": [ - [ - "babel-core@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-core", + "version": "6.26.0", + "description": "Babel compiler core.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-core", + "keywords": [ + "6to5", + "babel", + "classes", + "const", + "es6", + "harmony", + "let", + "modules", + "transpile", + "transpiler", + "var", + "babel-core", + "compiler" ], - "_development": true, - "_from": "babel-core@6.26.0", - "_id": "babel-core@6.26.0", - "_inBundle": false, - "_integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=", - "_location": "/babel-cli/babel-core", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-core@6.26.0", - "name": "babel-core", - "escapedName": "babel-core", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli", - "/babel-cli/babel-register" - ], - "_resolved": "https://registry.npmjs.org/babel-core/-/babel-core-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" + "scripts": { + "bench": "make bench", + "test": "make test" }, "dependencies": { "babel-code-frame": "^6.26.0", @@ -54,37 +46,9 @@ "slash": "^1.0.0", "source-map": "^0.5.6" }, - "description": "Babel compiler core.", "devDependencies": { "babel-helper-fixtures": "^6.26.0", "babel-helper-transform-fixture-test-runner": "^6.26.0", "babel-polyfill": "^6.26.0" - }, - "homepage": "https://babeljs.io/", - "keywords": [ - "6to5", - "babel", - "classes", - "const", - "es6", - "harmony", - "let", - "modules", - "transpile", - "transpiler", - "var", - "babel-core", - "compiler" - ], - "license": "MIT", - "name": "babel-core", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-core" - }, - "scripts": { - "bench": "make bench", - "test": "make test" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-generator/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-generator/package.json index 4130bc43..757a693c 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-generator/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-generator/package.json @@ -1,37 +1,15 @@ { - "_args": [ - [ - "babel-generator@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-generator", + "version": "6.26.0", + "description": "Turns an AST into code.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-generator", + "main": "lib/index.js", + "files": [ + "lib" ], - "_development": true, - "_from": "babel-generator@6.26.0", - "_id": "babel-generator@6.26.0", - "_inBundle": false, - "_integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=", - "_location": "/babel-cli/babel-generator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-generator@6.26.0", - "name": "babel-generator", - "escapedName": "babel-generator", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli/babel-core" - ], - "_resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-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": { "babel-messages": "^6.23.0", "babel-runtime": "^6.26.0", @@ -42,21 +20,8 @@ "source-map": "^0.5.6", "trim-right": "^1.0.1" }, - "description": "Turns an AST into code.", "devDependencies": { "babel-helper-fixtures": "^6.26.0", "babylon": "^6.18.0" - }, - "files": [ - "lib" - ], - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-generator", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-helpers/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-helpers/package.json index d10a2f39..f2f8dc23 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-helpers/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-helpers/package.json @@ -1,49 +1,14 @@ { - "_args": [ - [ - "babel-helpers@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-helpers@6.24.1", - "_id": "babel-helpers@6.24.1", - "_inBundle": false, - "_integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", - "_location": "/babel-cli/babel-helpers", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helpers@6.24.1", - "name": "babel-helpers", - "escapedName": "babel-helpers", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-cli/babel-core" - ], - "_resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, + "name": "babel-helpers", + "version": "6.24.1", + "description": "Collection of helper functions used by Babel transforms.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helpers", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.22.0", "babel-template": "^6.24.1" - }, - "description": "Collection of helper functions used by Babel transforms.", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helpers", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-messages/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-messages/package.json index d8a2750d..348dc5ee 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-messages/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-messages/package.json @@ -1,50 +1,13 @@ { - "_args": [ - [ - "babel-messages@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-messages@6.23.0", - "_id": "babel-messages@6.23.0", - "_inBundle": false, - "_integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "_location": "/babel-cli/babel-messages", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-messages@6.23.0", - "name": "babel-messages", - "escapedName": "babel-messages", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-cli/babel-core", - "/babel-cli/babel-generator", - "/babel-cli/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-messages", + "version": "6.23.0", "description": "Collection of debug messages used by Babel.", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-messages", "main": "lib/index.js", - "name": "babel-messages", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-messages" - }, - "version": "6.23.0" + "dependencies": { + "babel-runtime": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-polyfill/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-polyfill/package.json index c505fdab..3e23f2e5 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-polyfill/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-polyfill/package.json @@ -1,50 +1,15 @@ { - "_args": [ - [ - "babel-polyfill@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-polyfill@6.26.0", - "_id": "babel-polyfill@6.26.0", - "_inBundle": false, - "_integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", - "_location": "/babel-cli/babel-polyfill", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-polyfill@6.26.0", - "name": "babel-polyfill", - "escapedName": "babel-polyfill", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli" - ], - "_resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-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" - }, + "name": "babel-polyfill", + "version": "6.26.0", + "description": "Provides polyfills necessary for a full ES2015+ environment", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-polyfill", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "core-js": "^2.5.0", "regenerator-runtime": "^0.10.5" - }, - "description": "Provides polyfills necessary for a full ES2015+ environment", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-polyfill", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-polyfill" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-register/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-register/package.json index 265f260c..5ec1c713 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-register/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-register/package.json @@ -1,38 +1,11 @@ { - "_args": [ - [ - "babel-register@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-register@6.26.0", - "_id": "babel-register@6.26.0", - "_inBundle": false, - "_integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", - "_location": "/babel-cli/babel-register", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-register@6.26.0", - "name": "babel-register", - "escapedName": "babel-register", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli", - "/babel-cli/babel-core" - ], - "_resolved": "https://registry.npmjs.org/babel-register/-/babel-register-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" - }, + "name": "babel-register", + "version": "6.26.0", + "description": "babel require hook", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-register", + "author": "Sebastian McKenzie ", + "main": "lib/node.js", "browser": "lib/browser.js", "dependencies": { "babel-core": "^6.26.0", @@ -43,16 +16,7 @@ "mkdirp": "^0.5.1", "source-map-support": "^0.4.15" }, - "description": "babel require hook", "devDependencies": { "decache": "^4.1.0" - }, - "license": "MIT", - "main": "lib/node.js", - "name": "babel-register", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-register" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-runtime/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-runtime/package.json index 5cfd50a0..c17eb9a3 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-runtime/package.json @@ -1,60 +1,16 @@ { - "_args": [ - [ - "babel-runtime@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-runtime@6.26.0", - "_id": "babel-runtime@6.26.0", - "_inBundle": false, - "_integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "_location": "/babel-cli/babel-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-runtime@6.26.0", - "name": "babel-runtime", - "escapedName": "babel-runtime", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli", - "/babel-cli/babel-core", - "/babel-cli/babel-generator", - "/babel-cli/babel-helpers", - "/babel-cli/babel-messages", - "/babel-cli/babel-polyfill", - "/babel-cli/babel-register", - "/babel-cli/babel-template", - "/babel-cli/babel-traverse", - "/babel-cli/babel-types" - ], - "_resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-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" - }, + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", + "author": "Sebastian McKenzie ", "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" }, - "description": "babel selfContained runtime", "devDependencies": { "babel-helpers": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0" - }, - "license": "MIT", - "name": "babel-runtime", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-template/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-template/package.json index e07565d5..81eab1ca 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-template/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-template/package.json @@ -1,53 +1,17 @@ { - "_args": [ - [ - "babel-template@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-template@6.26.0", - "_id": "babel-template@6.26.0", - "_inBundle": false, - "_integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "_location": "/babel-cli/babel-template", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-template@6.26.0", - "name": "babel-template", - "escapedName": "babel-template", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli/babel-core", - "/babel-cli/babel-helpers" - ], - "_resolved": "https://registry.npmjs.org/babel-template/-/babel-template-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" - }, + "name": "babel-template", + "version": "6.26.0", + "description": "Generate an AST from a string template.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "babel-traverse": "^6.26.0", "babel-types": "^6.26.0", "babylon": "^6.18.0", "lodash": "^4.17.4" - }, - "description": "Generate an AST from a string template.", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-template", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-traverse/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-traverse/package.json index 061838c9..2f71a4ad 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-traverse/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-traverse/package.json @@ -1,38 +1,12 @@ { - "_args": [ - [ - "babel-traverse@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-traverse@6.26.0", - "_id": "babel-traverse@6.26.0", - "_inBundle": false, - "_integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "_location": "/babel-cli/babel-traverse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-traverse@6.26.0", - "name": "babel-traverse", - "escapedName": "babel-traverse", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli/babel-core", - "/babel-cli/babel-template" - ], - "_resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-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" - }, + "name": "babel-traverse", + "version": "6.26.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "babel-code-frame": "^6.26.0", "babel-messages": "^6.23.0", @@ -44,17 +18,7 @@ "invariant": "^2.2.2", "lodash": "^4.17.4" }, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "babel-generator": "^6.26.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-traverse", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-types/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-types/package.json index bbb550e7..e93188af 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-types/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/babel-types/package.json @@ -1,58 +1,20 @@ { - "_args": [ - [ - "babel-types@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "babel-types@6.26.0", - "_id": "babel-types@6.26.0", - "_inBundle": false, - "_integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "_location": "/babel-cli/babel-types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-types@6.26.0", - "name": "babel-types", - "escapedName": "babel-types", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-cli/babel-core", - "/babel-cli/babel-generator", - "/babel-cli/babel-template", - "/babel-cli/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babel-types/-/babel-types-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" - }, + "name": "babel-types", + "version": "6.26.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "esutils": "^2.0.2", "lodash": "^4.17.4", "to-fast-properties": "^1.0.3" }, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "babel-generator": "^6.26.0", "babylon": "^6.18.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-types", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/braces/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/braces/package.json index ef00e0ca..ab6bcdc3 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/braces/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/braces/package.json @@ -1,47 +1,29 @@ { - "_args": [ - [ - "braces@1.8.5", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "braces@1.8.5", - "_id": "braces@1.8.5", - "_inBundle": false, - "_integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "_location": "/babel-cli/braces", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "braces@1.8.5", - "name": "braces", - "escapedName": "braces", - "rawSpec": "1.8.5", - "saveSpec": null, - "fetchSpec": "1.8.5" - }, - "_requiredBy": [ - "/babel-cli/micromatch" - ], - "_resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "_spec": "1.8.5", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "braces", + "description": "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.", + "version": "1.8.5", + "homepage": "https://github.com/jonschlinkert/braces", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/braces", "bugs": { "url": "https://github.com/jonschlinkert/braces/issues" }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "expand-range": "^1.8.1", "preserve": "^0.2.0", "repeat-element": "^1.1.2" }, - "description": "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.", "devDependencies": { "benchmarked": "^0.1.5", "brace-expansion": "^1.1.3", @@ -52,13 +34,6 @@ "mocha": "^2.4.5", "should": "^8.3.1" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/braces", "keywords": [ "alpha", "alphabetical", @@ -82,16 +57,6 @@ "ranges", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "braces", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/braces.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "plugins": [ "gulp-format-md" @@ -114,6 +79,5 @@ "fill-range" ] } - }, - "version": "1.8.5" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/chalk/package.json index 16e7a305..2b5881e9 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/chalk/package.json @@ -1,61 +1,26 @@ { - "_args": [ - [ - "chalk@1.1.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "chalk@1.1.3", - "_id": "chalk@1.1.3", - "_inBundle": false, - "_integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "_location": "/babel-cli/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": [ - "/babel-cli/babel-code-frame" - ], - "_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" - }, + "name": "chalk", + "version": "1.1.3", "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": "*" - }, + "license": "MIT", + "repository": "chalk/chalk", + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -79,36 +44,23 @@ "command-line", "text" ], - "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" + "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" }, - "scripts": { - "bench": "matcha benchmark.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "test": "xo && mocha" + "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": "*" }, - "version": "1.1.3", "xo": { "envs": [ "node", diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/chokidar/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/chokidar/package.json index 81ebbfb9..78a422d9 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/chokidar/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/chokidar/package.json @@ -1,53 +1,34 @@ { - "_args": [ - [ - "chokidar@1.7.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "chokidar", + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "version": "1.7.0", + "keywords": [ + "fs", + "watch", + "watchFile", + "watcher", + "watching", + "file", + "fsevents" ], - "_development": true, - "_from": "chokidar@1.7.0", - "_id": "chokidar@1.7.0", - "_inBundle": false, - "_integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "_location": "/babel-cli/chokidar", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chokidar@1.7.0", - "name": "chokidar", - "escapedName": "chokidar", - "rawSpec": "1.7.0", - "saveSpec": null, - "fetchSpec": "1.7.0" - }, - "_requiredBy": [ - "/babel-cli" - ], - "_resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "_spec": "1.7.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Paul Miller", - "url": "http://paulmillr.com" + "homepage": "https://github.com/paulmillr/chokidar", + "author": "Paul Miller (http://paulmillr.com), Elan Shanker", + "repository": { + "type": "git", + "url": "https://github.com/paulmillr/chokidar.git" }, "bugs": { "url": "http://github.com/paulmillr/chokidar/issues" }, - "dependencies": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" + "license": "MIT", + "scripts": { + "test": "istanbul test node_modules/mocha/bin/_mocha", + "ci-test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls" }, - "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "files": [ + "index.js", + "lib/" + ], "devDependencies": { "chai": "^3.2.0", "coveralls": "^2.11.2", @@ -58,32 +39,17 @@ "sinon": "^1.10.3", "sinon-chai": "^2.6.0" }, - "files": [ - "index.js", - "lib/" - ], - "homepage": "https://github.com/paulmillr/chokidar", - "keywords": [ - "fs", - "watch", - "watchFile", - "watcher", - "watching", - "file", - "fsevents" - ], - "license": "MIT", - "name": "chokidar", "optionalDependencies": { "fsevents": "^1.0.0" }, - "repository": { - "type": "git", - "url": "git+https://github.com/paulmillr/chokidar.git" - }, - "scripts": { - "ci-test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls", - "test": "istanbul test node_modules/mocha/bin/_mocha" - }, - "version": "1.7.0" + "dependencies": { + "anymatch": "^1.3.0", + "async-each": "^1.0.0", + "glob-parent": "^2.0.0", + "inherits": "^2.0.1", + "is-binary-path": "^1.0.0", + "is-glob": "^2.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.0.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/debug/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/debug/package.json index 625aa8f8..dc787ba7 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/debug/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/debug/package.json @@ -1,63 +1,25 @@ { - "_args": [ - [ - "debug@2.6.9", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "debug", + "version": "2.6.9", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" ], - "_development": true, - "_from": "debug@2.6.9", - "_id": "debug@2.6.9", - "_inBundle": false, - "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "_location": "/babel-cli/debug", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "debug@2.6.9", - "name": "debug", - "escapedName": "debug", - "rawSpec": "2.6.9", - "saveSpec": null, - "fetchSpec": "2.6.9" - }, - "_requiredBy": [ - "/babel-cli/babel-core", - "/babel-cli/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "_spec": "2.6.9", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" - }, - "component": { - "scripts": { - "debug/index.js": "browser.js", - "debug/debug.js": "debug.js" - } - }, + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", "dependencies": { "ms": "2.0.0" }, - "description": "small debugging utility", "devDependencies": { "browserify": "9.0.3", "chai": "^3.5.0", @@ -76,18 +38,12 @@ "sinon": "^1.17.6", "sinon-chai": "^2.8.0" }, - "homepage": "https://github.com/visionmedia/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", "main": "./src/index.js", - "name": "debug", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/debug.git" - }, - "version": "2.6.9" + "browser": "./src/browser.js", + "component": { + "scripts": { + "debug/index.js": "browser.js", + "debug/debug.js": "debug.js" + } + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/detect-indent/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/detect-indent/package.json index 9fec1533..fa477985 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/detect-indent/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/detect-indent/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "detect-indent@4.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "detect-indent@4.0.0", - "_id": "detect-indent@4.0.0", - "_inBundle": false, - "_integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", - "_location": "/babel-cli/detect-indent", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "detect-indent@4.0.0", - "name": "detect-indent", - "escapedName": "detect-indent", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/babel-cli/babel-generator" - ], - "_resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "detect-indent", + "version": "4.0.0", + "description": "Detect the indentation of code", + "license": "MIT", + "repository": "sindresorhus/detect-indent", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/detect-indent/issues" - }, - "dependencies": { - "repeating": "^2.0.0" - }, - "description": "Detect the indentation of code", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/detect-indent#readme", "keywords": [ "indent", "indentation", @@ -64,16 +31,13 @@ "space", "tab" ], - "license": "MIT", - "name": "detect-indent", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/detect-indent.git" + "dependencies": { + "repeating": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "4.0.0", "xo": { "ignores": [ "fixture/**" diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/expand-range/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/expand-range/package.json index 642b804e..01df494c 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/expand-range/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/expand-range/package.json @@ -1,45 +1,27 @@ { - "_args": [ - [ - "expand-range@1.8.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "expand-range@1.8.2", - "_id": "expand-range@1.8.2", - "_inBundle": false, - "_integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "_location": "/babel-cli/expand-range", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "expand-range@1.8.2", - "name": "expand-range", - "escapedName": "expand-range", - "rawSpec": "1.8.2", - "saveSpec": null, - "fetchSpec": "1.8.2" - }, - "_requiredBy": [ - "/babel-cli/braces" - ], - "_resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "_spec": "1.8.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "expand-range", + "description": "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.", + "version": "1.8.2", + "homepage": "https://github.com/jonschlinkert/expand-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/expand-range", "bugs": { "url": "https://github.com/jonschlinkert/expand-range/issues" }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "fill-range": "^2.1.0" }, - "description": "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.", "devDependencies": { "benchmarked": "^0.2.4", "brace-expansion": "^1.1.4", @@ -48,13 +30,6 @@ "minimatch": "^3.0.0", "mocha": "^2.4.5" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/expand-range", "keywords": [ "alpha", "alphabetical", @@ -72,16 +47,6 @@ "ranges", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "expand-range", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/expand-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "plugins": [ "gulp-format-md" @@ -104,6 +69,5 @@ "braces" ] } - }, - "version": "1.8.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/fill-range/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/fill-range/package.json index 4572ed25..a8a7bcff 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/fill-range/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/fill-range/package.json @@ -1,41 +1,24 @@ { - "_args": [ - [ - "fill-range@2.2.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "fill-range@2.2.3", - "_id": "fill-range@2.2.3", - "_inBundle": false, - "_integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", - "_location": "/babel-cli/fill-range", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fill-range@2.2.3", - "name": "fill-range", - "escapedName": "fill-range", - "rawSpec": "2.2.3", - "saveSpec": null, - "fetchSpec": "2.2.3" - }, - "_requiredBy": [ - "/babel-cli/expand-range" - ], - "_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", - "_spec": "2.2.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "fill-range", + "description": "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.", + "version": "2.2.3", + "homepage": "https://github.com/jonschlinkert/fill-range", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/fill-range", "bugs": { "url": "https://github.com/jonschlinkert/fill-range/issues" }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "is-number": "^2.1.0", "isobject": "^2.0.0", @@ -43,19 +26,11 @@ "repeat-element": "^1.1.2", "repeat-string": "^1.5.2" }, - "description": "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.", "devDependencies": { "benchmarked": "^0.1.3", "chalk": "^0.5.1", "should": "*" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/fill-range", "keywords": [ "alpha", "alphabetical", @@ -73,16 +48,6 @@ "ranges", "sh" ], - "license": "MIT", - "main": "index.js", - "name": "fill-range", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/fill-range.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -92,6 +57,5 @@ "is-glob" ] } - }, - "version": "2.2.3" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/glob/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/glob/package.json index c8c33efc..8d934ab9 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/glob/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/glob/package.json @@ -1,40 +1,20 @@ { - "_args": [ - [ - "glob@7.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "glob@7.1.2", - "_id": "glob@7.1.2", - "_inBundle": false, - "_integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "_location": "/babel-cli/glob", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "glob@7.1.2", - "name": "glob", - "escapedName": "glob", - "rawSpec": "7.1.2", - "saveSpec": null, - "fetchSpec": "7.1.2" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "name": "glob", + "description": "a little globber", + "version": "7.1.2", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-glob.git" }, - "_requiredBy": [ - "/babel-cli" + "main": "glob.js", + "files": [ + "glob.js", + "sync.js", + "common.js" ], - "_resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "_spec": "7.1.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/node-glob/issues" + "engines": { + "node": "*" }, "dependencies": { "fs.realpath": "^1.0.0", @@ -44,37 +24,20 @@ "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, - "description": "a little globber", "devDependencies": { "mkdirp": "0", "rimraf": "^2.2.8", "tap": "^7.1.2", "tick": "0.0.6" }, - "engines": { - "node": "*" - }, - "files": [ - "glob.js", - "sync.js", - "common.js" - ], - "homepage": "https://github.com/isaacs/node-glob#readme", - "license": "ISC", - "main": "glob.js", - "name": "glob", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, "scripts": { - "bench": "bash benchmark.sh", - "benchclean": "node benchclean.js", "prepublish": "npm run benchclean", - "prof": "bash prof.sh && cat profile.txt", "profclean": "rm -f v8.log profile.txt", "test": "tap test/*.js --cov", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", + "bench": "bash benchmark.sh", + "prof": "bash prof.sh && cat profile.txt", + "benchclean": "node benchclean.js" }, - "version": "7.1.2" + "license": "ISC" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/home-or-tmp/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/home-or-tmp/package.json index e6905f8c..5926f323 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/home-or-tmp/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/home-or-tmp/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "home-or-tmp@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "home-or-tmp@2.0.0", - "_id": "home-or-tmp@2.0.0", - "_inBundle": false, - "_integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", - "_location": "/babel-cli/home-or-tmp", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "home-or-tmp@2.0.0", - "name": "home-or-tmp", - "escapedName": "home-or-tmp", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-cli/babel-register" - ], - "_resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "home-or-tmp", + "version": "2.0.0", + "description": "Get the user home directory with fallback to the system temp directory", + "license": "MIT", + "repository": "sindresorhus/home-or-tmp", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/home-or-tmp/issues" - }, - "dependencies": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.1" - }, - "description": "Get the user home directory with fallback to the system temp directory", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/home-or-tmp#readme", "keywords": [ "user", "home", @@ -66,14 +33,11 @@ "graceful", "userprofile" ], - "license": "MIT", - "name": "home-or-tmp", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/home-or-tmp.git" + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.1" }, - "scripts": { - "test": "node test.js" - }, - "version": "2.0.0" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/inflight/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/inflight/package.json index 5af64508..6084d350 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/inflight/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/inflight/package.json @@ -1,62 +1,29 @@ { - "_args": [ - [ - "inflight@1.0.6", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "inflight", + "version": "1.0.6", + "description": "Add callbacks to requests in flight to avoid async duplication", + "main": "inflight.js", + "files": [ + "inflight.js" ], - "_development": true, - "_from": "inflight@1.0.6", - "_id": "inflight@1.0.6", - "_inBundle": false, - "_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "_location": "/babel-cli/inflight", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "inflight@1.0.6", - "name": "inflight", - "escapedName": "inflight", - "rawSpec": "1.0.6", - "saveSpec": null, - "fetchSpec": "1.0.6" - }, - "_requiredBy": [ - "/babel-cli/glob" - ], - "_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "_spec": "1.0.6", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/inflight/issues" - }, "dependencies": { "once": "^1.3.0", "wrappy": "1" }, - "description": "Add callbacks to requests in flight to avoid async duplication", "devDependencies": { "tap": "^7.1.2" }, - "files": [ - "inflight.js" - ], - "homepage": "https://github.com/isaacs/inflight", - "license": "ISC", - "main": "inflight.js", - "name": "inflight", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/inflight.git" - }, "scripts": { "test": "tap test.js --100" }, - "version": "1.0.6" + "repository": { + "type": "git", + "url": "https://github.com/npm/inflight.git" + }, + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "bugs": { + "url": "https://github.com/isaacs/inflight/issues" + }, + "homepage": "https://github.com/isaacs/inflight", + "license": "ISC" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/is-finite/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/is-finite/package.json index d0da8c3f..8d65d25f 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/is-finite/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/is-finite/package.json @@ -1,55 +1,23 @@ { - "_args": [ - [ - "is-finite@1.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "is-finite@1.0.2", - "_id": "is-finite@1.0.2", - "_inBundle": false, - "_integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "_location": "/babel-cli/is-finite", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-finite@1.0.2", - "name": "is-finite", - "escapedName": "is-finite", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/babel-cli/repeating" - ], - "_resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "is-finite", + "version": "1.0.2", + "description": "ES2015 Number.isFinite() ponyfill", + "license": "MIT", + "repository": "sindresorhus/is-finite", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-finite/issues" - }, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "description": "ES2015 Number.isFinite() ponyfill", - "devDependencies": { - "ava": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/is-finite#readme", "keywords": [ "es2015", "ponyfill", @@ -59,14 +27,10 @@ "finite", "is" ], - "license": "MIT", - "name": "is-finite", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-finite.git" + "dependencies": { + "number-is-nan": "^1.0.0" }, - "scripts": { - "test": "ava" - }, - "version": "1.0.2" + "devDependencies": { + "ava": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/micromatch/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/micromatch/package.json index a2bc0625..f2aef5b1 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/micromatch/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/micromatch/package.json @@ -1,41 +1,25 @@ { - "_args": [ - [ - "micromatch@2.3.11", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "micromatch@2.3.11", - "_id": "micromatch@2.3.11", - "_inBundle": false, - "_integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "_location": "/babel-cli/micromatch", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "micromatch@2.3.11", - "name": "micromatch", - "escapedName": "micromatch", - "rawSpec": "2.3.11", - "saveSpec": null, - "fetchSpec": "2.3.11" - }, - "_requiredBy": [ - "/babel-cli/anymatch" - ], - "_resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "_spec": "2.3.11", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "micromatch", + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "version": "2.3.11", + "homepage": "https://github.com/jonschlinkert/micromatch", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/micromatch", "bugs": { "url": "https://github.com/jonschlinkert/micromatch/issues" }, + "license": "MIT", + "files": [ + "index.js", + "lib" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "arr-diff": "^2.0.0", "array-unique": "^0.2.1", @@ -51,7 +35,6 @@ "parse-glob": "^3.0.4", "regex-cache": "^0.4.2" }, - "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", "devDependencies": { "benchmarked": "^0.1.4", "chalk": "^1.1.1", @@ -67,14 +50,6 @@ "should": "^8", "write": "^0.2.1" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js", - "lib" - ], - "homepage": "https://github.com/jonschlinkert/micromatch", "keywords": [ "bash", "expand", @@ -103,16 +78,6 @@ "shell", "wildcard" ], - "license": "MIT", - "main": "index.js", - "name": "micromatch", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/micromatch.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -145,6 +110,5 @@ "lint": { "reflinks": true } - }, - "version": "2.3.11" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/minimatch/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/minimatch/package.json index c0da3119..c4514c80 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/minimatch/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/minimatch/package.json @@ -1,69 +1,30 @@ { - "_args": [ - [ - "minimatch@3.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "minimatch@3.0.4", - "_id": "minimatch@3.0.4", - "_inBundle": false, - "_integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "_location": "/babel-cli/minimatch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "minimatch@3.0.4", - "name": "minimatch", - "escapedName": "minimatch", - "rawSpec": "3.0.4", - "saveSpec": null, - "fetchSpec": "3.0.4" - }, - "_requiredBy": [ - "/babel-cli/babel-core", - "/babel-cli/glob", - "/babel-cli/readdirp" - ], - "_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "_spec": "3.0.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me" - }, - "bugs": { - "url": "https://github.com/isaacs/minimatch/issues" - }, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "description": "a glob matcher in javascript", - "devDependencies": { - "tap": "^10.3.2" - }, - "engines": { - "node": "*" - }, - "files": [ - "minimatch.js" - ], - "homepage": "https://github.com/isaacs/minimatch#readme", - "license": "ISC", - "main": "minimatch.js", + "author": "Isaac Z. Schlueter (http://blog.izs.me)", "name": "minimatch", + "description": "a glob matcher in javascript", + "version": "3.0.4", "repository": { "type": "git", "url": "git://github.com/isaacs/minimatch.git" }, + "main": "minimatch.js", "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "postversion": "npm publish", + "test": "tap test/*.js --cov", "preversion": "npm test", - "test": "tap test/*.js --cov" + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" }, - "version": "3.0.4" + "engines": { + "node": "*" + }, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "devDependencies": { + "tap": "^10.3.2" + }, + "license": "ISC", + "files": [ + "minimatch.js" + ] } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/minimist/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/minimist/package.json index 03933c49..af6250bd 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/minimist/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/minimist/package.json @@ -1,75 +1,40 @@ { - "_args": [ - [ - "minimist@0.0.8", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "minimist@0.0.8", - "_id": "minimist@0.0.8", - "_inBundle": false, - "_integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "_location": "/babel-cli/minimist", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "minimist@0.0.8", "name": "minimist", - "escapedName": "minimist", - "rawSpec": "0.0.8", - "saveSpec": null, - "fetchSpec": "0.0.8" - }, - "_requiredBy": [ - "/babel-cli/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" + "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" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/mkdirp/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/mkdirp/package.json index f809229c..863e860d 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/mkdirp/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/mkdirp/package.json @@ -1,67 +1,27 @@ { - "_args": [ - [ - "mkdirp@0.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "mkdirp@0.5.1", - "_id": "mkdirp@0.5.1", - "_inBundle": false, - "_integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "_location": "/babel-cli/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" - }, - "_requiredBy": [ - "/babel-cli/babel-register", - "/babel-cli/output-file-sync" - ], - "_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" - }, + "name": "mkdirp", "description": "Recursively mkdir, like `mkdir -p`", - "devDependencies": { - "mock-fs": "2 >=2.7.0", - "tap": "1" - }, - "homepage": "https://github.com/substack/node-mkdirp#readme", + "version": "0.5.1", + "author": "James Halliday (http://substack.net)", + "main": "index.js", "keywords": [ "mkdir", "directory" ], - "license": "MIT", - "main": "index.js", - "name": "mkdirp", "repository": { "type": "git", - "url": "git+https://github.com/substack/node-mkdirp.git" + "url": "https://github.com/substack/node-mkdirp.git" }, "scripts": { "test": "tap test/*.js" }, - "version": "0.5.1" + "dependencies": { + "minimist": "0.0.8" + }, + "devDependencies": { + "tap": "1", + "mock-fs": "2 >=2.7.0" + }, + "bin": "bin/cmd.js", + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/ms/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/ms/package.json index 5bfcd915..6a31c81f 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/ms/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/ms/package.json @@ -1,43 +1,16 @@ { - "_args": [ - [ - "ms@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "ms@2.0.0", - "_id": "ms@2.0.0", - "_inBundle": false, - "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "_location": "/babel-cli/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.0.0", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-cli/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, + "name": "ms", + "version": "2.0.0", "description": "Tiny milisecond conversion utility", - "devDependencies": { - "eslint": "3.19.0", - "expect.js": "0.3.1", - "husky": "0.13.3", - "lint-staged": "3.4.1", - "mocha": "3.4.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -46,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -58,16 +26,12 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.0.0" + "license": "MIT", + "devDependencies": { + "eslint": "3.19.0", + "expect.js": "0.3.1", + "husky": "0.13.3", + "lint-staged": "3.4.1", + "mocha": "3.4.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/normalize-path/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/normalize-path/package.json index 815d7f30..c16ef9d2 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/normalize-path/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/normalize-path/package.json @@ -1,70 +1,37 @@ { - "_args": [ - [ - "normalize-path@2.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "normalize-path", + "description": "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.", + "version": "2.1.1", + "homepage": "https://github.com/jonschlinkert/normalize-path", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Blaine Bublitz (https://twitter.com/BlaineBublitz)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_development": true, - "_from": "normalize-path@2.1.1", - "_id": "normalize-path@2.1.1", - "_inBundle": false, - "_integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "_location": "/babel-cli/normalize-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "normalize-path@2.1.1", - "name": "normalize-path", - "escapedName": "normalize-path", - "rawSpec": "2.1.1", - "saveSpec": null, - "fetchSpec": "2.1.1" - }, - "_requiredBy": [ - "/babel-cli/anymatch", - "/babel-cli/micromatch" - ], - "_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "_spec": "2.1.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/normalize-path", "bugs": { "url": "https://github.com/jonschlinkert/normalize-path/issues" }, - "contributors": [ - { - "name": "Blaine Bublitz", - "email": "blaine.bublitz@gmail.com", - "url": "https://twitter.com/BlaineBublitz" - }, - { - "name": "Jon Schlinkert", - "email": "jon.schlinkert@sellside.com", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "remove-trailing-separator": "^1.0.1" }, - "description": "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.", "devDependencies": { "benchmarked": "^0.1.1", "gulp-format-md": "^0.1.11", "minimist": "^1.2.0", "mocha": "*" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/normalize-path", "keywords": [ "backslash", "file", @@ -81,16 +48,6 @@ "unix", "urix" ], - "license": "MIT", - "main": "index.js", - "name": "normalize-path", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/normalize-path.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -117,6 +74,5 @@ "lint": { "reflinks": true } - }, - "version": "2.1.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/number-is-nan/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/number-is-nan/package.json index f56f05a1..d2f51d4b 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/number-is-nan/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/number-is-nan/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "number-is-nan@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "number-is-nan@1.0.1", - "_id": "number-is-nan@1.0.1", - "_inBundle": false, - "_integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "_location": "/babel-cli/number-is-nan", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "number-is-nan@1.0.1", - "name": "number-is-nan", - "escapedName": "number-is-nan", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/babel-cli/is-finite" - ], - "_resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "number-is-nan", + "version": "1.0.1", + "description": "ES2015 Number.isNaN() ponyfill", + "license": "MIT", + "repository": "sindresorhus/number-is-nan", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/number-is-nan/issues" - }, - "description": "ES2015 Number.isNaN() ponyfill", - "devDependencies": { - "ava": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/number-is-nan#readme", "keywords": [ "es2015", "ecmascript", @@ -58,14 +29,7 @@ "nan", "not" ], - "license": "MIT", - "name": "number-is-nan", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/number-is-nan.git" - }, - "scripts": { - "test": "ava" - }, - "version": "1.0.1" + "devDependencies": { + "ava": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/object-assign/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/object-assign/package.json index 8751e27b..503eb1e6 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/object-assign/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/object-assign/package.json @@ -1,55 +1,24 @@ { - "_args": [ - [ - "object-assign@4.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "object-assign@4.1.1", - "_id": "object-assign@4.1.1", - "_inBundle": false, - "_integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "_location": "/babel-cli/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": [ - "/babel-cli/output-file-sync" - ], - "_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", + "name": "object-assign", + "version": "4.1.1", + "description": "ES2015 `Object.assign()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/object-assign", "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", @@ -64,15 +33,10 @@ "shim", "browser" ], - "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" + "devDependencies": { + "ava": "^0.16.0", + "lodash": "^4.16.4", + "matcha": "^0.7.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/object.omit/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/object.omit/package.json index 39072cce..2cec4c10 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/object.omit/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/object.omit/package.json @@ -1,58 +1,33 @@ { - "_args": [ - [ - "object.omit@2.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "object.omit@2.0.1", - "_id": "object.omit@2.0.1", - "_inBundle": false, - "_integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "_location": "/babel-cli/object.omit", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "object.omit@2.0.1", - "name": "object.omit", - "escapedName": "object.omit", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/babel-cli/micromatch" - ], - "_resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "object.omit", + "description": "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.", + "version": "2.0.1", + "homepage": "https://github.com/jonschlinkert/object.omit", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/object.omit", "bugs": { "url": "https://github.com/jonschlinkert/object.omit/issues" }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "for-own": "^0.1.4", "is-extendable": "^0.1.1" }, - "description": "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.", "devDependencies": { "gulp-format-md": "^0.1.11", "mocha": "^3.1.2", "should": "^11.1.1" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/object.omit", "keywords": [ "clear", "delete", @@ -63,16 +38,6 @@ "remove", "value" ], - "license": "MIT", - "main": "index.js", - "name": "object.omit", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/object.omit.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -98,6 +63,5 @@ "verb", "verb-generate-readme" ] - }, - "version": "2.0.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/once/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/once/package.json index 203a540b..16815b2f 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/once/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/once/package.json @@ -1,71 +1,33 @@ { - "_args": [ - [ - "once@1.4.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "once@1.4.0", - "_id": "once@1.4.0", - "_inBundle": false, - "_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "_location": "/babel-cli/once", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "once@1.4.0", - "name": "once", - "escapedName": "once", - "rawSpec": "1.4.0", - "saveSpec": null, - "fetchSpec": "1.4.0" - }, - "_requiredBy": [ - "/babel-cli/glob", - "/babel-cli/inflight" - ], - "_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "_spec": "1.4.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/once/issues" + "name": "once", + "version": "1.4.0", + "description": "Run a function exactly one time", + "main": "once.js", + "directories": { + "test": "test" }, "dependencies": { "wrappy": "1" }, - "description": "Run a function exactly one time", "devDependencies": { "tap": "^7.0.1" }, - "directories": { - "test": "test" + "scripts": { + "test": "tap test/*.js" }, "files": [ "once.js" ], - "homepage": "https://github.com/isaacs/once#readme", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/once" + }, "keywords": [ "once", "function", "one", "single" ], - "license": "ISC", - "main": "once.js", - "name": "once", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/once.git" - }, - "scripts": { - "test": "tap test/*.js" - }, - "version": "1.4.0" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/os-homedir/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/os-homedir/package.json index 3e99bd09..525b2251 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/os-homedir/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/os-homedir/package.json @@ -1,54 +1,23 @@ { - "_args": [ - [ - "os-homedir@1.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "os-homedir@1.0.2", - "_id": "os-homedir@1.0.2", - "_inBundle": false, - "_integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "_location": "/babel-cli/os-homedir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "os-homedir@1.0.2", - "name": "os-homedir", - "escapedName": "os-homedir", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/babel-cli/home-or-tmp" - ], - "_resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "os-homedir", + "version": "1.0.2", + "description": "Node.js 4 `os.homedir()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/os-homedir", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/os-homedir/issues" - }, - "description": "Node.js 4 `os.homedir()` ponyfill", - "devDependencies": { - "ava": "*", - "path-exists": "^2.0.0", - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/os-homedir#readme", "keywords": [ "builtin", "core", @@ -64,14 +33,9 @@ "user", "path" ], - "license": "MIT", - "name": "os-homedir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/os-homedir.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.2" + "devDependencies": { + "ava": "*", + "path-exists": "^2.0.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/os-tmpdir/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/os-tmpdir/package.json index 2ccb98fd..180a3176 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/os-tmpdir/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/os-tmpdir/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "os-tmpdir@1.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "os-tmpdir@1.0.2", - "_id": "os-tmpdir@1.0.2", - "_inBundle": false, - "_integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "_location": "/babel-cli/os-tmpdir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "os-tmpdir@1.0.2", - "name": "os-tmpdir", - "escapedName": "os-tmpdir", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/babel-cli/home-or-tmp" - ], - "_resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "os-tmpdir", + "version": "1.0.2", + "description": "Node.js os.tmpdir() ponyfill", + "license": "MIT", + "repository": "sindresorhus/os-tmpdir", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/os-tmpdir/issues" - }, - "description": "Node.js os.tmpdir() ponyfill", - "devDependencies": { - "ava": "*", - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/os-tmpdir#readme", "keywords": [ "built-in", "core", @@ -64,14 +34,8 @@ "env", "environment" ], - "license": "MIT", - "name": "os-tmpdir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/os-tmpdir.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.2" + "devDependencies": { + "ava": "*", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/output-file-sync/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/output-file-sync/package.json index f6d6be92..a5256daf 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/output-file-sync/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/output-file-sync/package.json @@ -1,58 +1,18 @@ { - "_args": [ - [ - "output-file-sync@1.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "output-file-sync@1.1.2", - "_id": "output-file-sync@1.1.2", - "_inBundle": false, - "_integrity": "sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=", - "_location": "/babel-cli/output-file-sync", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "output-file-sync@1.1.2", - "name": "output-file-sync", - "escapedName": "output-file-sync", - "rawSpec": "1.1.2", - "saveSpec": null, - "fetchSpec": "1.1.2" - }, - "_requiredBy": [ - "/babel-cli" - ], - "_resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz", - "_spec": "1.1.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Shinnosuke Watanabe", - "url": "https://github.com/shinnn" - }, - "bugs": { - "url": "https://github.com/shinnn/output-file-sync/issues" - }, - "dependencies": { - "graceful-fs": "^4.1.4", - "mkdirp": "^0.5.1", - "object-assign": "^4.1.0" - }, + "name": "output-file-sync", + "version": "1.1.2", "description": "Synchronously write a file and create its ancestor directories if needed", - "devDependencies": { - "@shinnn/eslint-config-node-legacy": "^2.0.0", - "eslint": "^2.13.0", - "istanbul": "^0.4.3", - "read-remove-file": "^3.0.0", - "tap-spec": "^4.1.1", - "tape": "^4.5.1" + "repository": "shinnn/output-file-sync", + "author": "Shinnosuke Watanabe (https://github.com/shinnn)", + "scripts": { + "pretest": "eslint --fix --config @shinnn/node-legacy index.js test.js", + "test": "node --strong_mode --throw-deprecation --track-heap-objects test.js | tap-spec", + "coverage": "node --strong_mode --throw-deprecation --track-heap-objects node_modules/.bin/istanbul cover test.js" }, + "license": "MIT", "files": [ "index.js" ], - "homepage": "https://github.com/shinnn/output-file-sync#readme", "keywords": [ "fs", "write", @@ -64,16 +24,17 @@ "mkdir", "mkdirp" ], - "license": "MIT", - "name": "output-file-sync", - "repository": { - "type": "git", - "url": "git+https://github.com/shinnn/output-file-sync.git" + "dependencies": { + "graceful-fs": "^4.1.4", + "mkdirp": "^0.5.1", + "object-assign": "^4.1.0" }, - "scripts": { - "coverage": "node --strong_mode --throw-deprecation --track-heap-objects node_modules/.bin/istanbul cover test.js", - "pretest": "eslint --fix --config @shinnn/node-legacy index.js test.js", - "test": "node --strong_mode --throw-deprecation --track-heap-objects test.js | tap-spec" - }, - "version": "1.1.2" + "devDependencies": { + "@shinnn/eslint-config-node-legacy": "^2.0.0", + "eslint": "^2.13.0", + "istanbul": "^0.4.3", + "read-remove-file": "^3.0.0", + "tap-spec": "^4.1.1", + "tape": "^4.5.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/parse-glob/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/parse-glob/package.json index 33af1c1c..a4acb523 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/parse-glob/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/parse-glob/package.json @@ -1,60 +1,36 @@ { - "_args": [ - [ - "parse-glob@3.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "parse-glob@3.0.4", - "_id": "parse-glob@3.0.4", - "_inBundle": false, - "_integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "_location": "/babel-cli/parse-glob", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "parse-glob@3.0.4", - "name": "parse-glob", - "escapedName": "parse-glob", - "rawSpec": "3.0.4", - "saveSpec": null, - "fetchSpec": "3.0.4" - }, - "_requiredBy": [ - "/babel-cli/micromatch" - ], - "_resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "_spec": "3.0.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "name": "parse-glob", + "description": "Parse a glob pattern into an object of tokens.", + "version": "3.0.4", + "homepage": "https://github.com/jonschlinkert/parse-glob", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "repository": "jonschlinkert/parse-glob", "bugs": { "url": "https://github.com/jonschlinkert/parse-glob/issues" }, + "license": "MIT", + "files": [ + "index.js" + ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha", + "prepublish": "browserify -o browser.js -e index.js" + }, "dependencies": { "glob-base": "^0.3.0", "is-dotfile": "^1.0.0", "is-extglob": "^1.0.0", "is-glob": "^2.0.0" }, - "description": "Parse a glob pattern into an object of tokens.", "devDependencies": { "browserify": "^9.0.3", "lodash": "^3.3.1", "mocha": "*" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/parse-glob", "keywords": [ "glob", "match", @@ -82,17 +58,5 @@ "regular", "shell", "wildcard" - ], - "license": "MIT", - "main": "index.js", - "name": "parse-glob", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/parse-glob.git" - }, - "scripts": { - "prepublish": "browserify -o browser.js -e index.js", - "test": "mocha" - }, - "version": "3.0.4" + ] } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/path-is-absolute/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/path-is-absolute/package.json index 78d7e3eb..91196d5e 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/path-is-absolute/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/path-is-absolute/package.json @@ -1,55 +1,23 @@ { - "_args": [ - [ - "path-is-absolute@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "path-is-absolute@1.0.1", - "_id": "path-is-absolute@1.0.1", - "_inBundle": false, - "_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "_location": "/babel-cli/path-is-absolute", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-is-absolute@1.0.1", - "name": "path-is-absolute", - "escapedName": "path-is-absolute", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/babel-cli", - "/babel-cli/babel-core", - "/babel-cli/chokidar", - "/babel-cli/glob" - ], - "_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "path-is-absolute", + "version": "1.0.1", + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "license": "MIT", + "repository": "sindresorhus/path-is-absolute", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-is-absolute/issues" - }, - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "devDependencies": { - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/path-is-absolute#readme", "keywords": [ "path", "paths", @@ -69,14 +37,7 @@ "detect", "check" ], - "license": "MIT", - "name": "path-is-absolute", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-is-absolute.git" - }, - "scripts": { - "test": "xo && node test.js" - }, - "version": "1.0.1" + "devDependencies": { + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/preserve/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/preserve/package.json index f51b5f16..056c0fae 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/preserve/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/preserve/package.json @@ -1,42 +1,30 @@ { - "_args": [ - [ - "preserve@0.2.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "preserve@0.2.0", - "_id": "preserve@0.2.0", - "_inBundle": false, - "_integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "_location": "/babel-cli/preserve", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "preserve@0.2.0", - "name": "preserve", - "escapedName": "preserve", - "rawSpec": "0.2.0", - "saveSpec": null, - "fetchSpec": "0.2.0" - }, - "_requiredBy": [ - "/babel-cli/braces" - ], - "_resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "_spec": "0.2.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "preserve", + "description": "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.", + "version": "0.2.0", + "homepage": "https://github.com/jonschlinkert/preserve", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" }, + "repository": { + "type": "git", + "url": "git://github.com/jonschlinkert/preserve.git" + }, "bugs": { "url": "https://github.com/jonschlinkert/preserve/issues" }, - "description": "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.", + "license": { + "type": "MIT", + "url": "https://github.com/jonschlinkert/preserve/blob/master/LICENSE-MIT" + }, + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha -R spec" + }, "devDependencies": { "benchmarked": "^0.1.3", "chalk": "^0.5.1", @@ -44,10 +32,6 @@ "mocha": "*", "should": "*" }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/jonschlinkert/preserve", "keywords": [ "escape", "format", @@ -60,19 +44,5 @@ "templates", "token", "tokens" - ], - "license": { - "type": "MIT", - "url": "https://github.com/jonschlinkert/preserve/blob/master/LICENSE-MIT" - }, - "main": "index.js", - "name": "preserve", - "repository": { - "type": "git", - "url": "git://github.com/jonschlinkert/preserve.git" - }, - "scripts": { - "test": "mocha -R spec" - }, - "version": "0.2.0" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/private/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/private/package.json index 9b4dcbe8..6f2b4570 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/private/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/private/package.json @@ -1,51 +1,10 @@ { - "_args": [ - [ - "private@0.1.8", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "private@0.1.8", - "_id": "private@0.1.8", - "_inBundle": false, - "_integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "_location": "/babel-cli/private", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "private@0.1.8", - "name": "private", - "escapedName": "private", - "rawSpec": "0.1.8", - "saveSpec": null, - "fetchSpec": "0.1.8" - }, - "_requiredBy": [ - "/babel-cli/babel-core" - ], - "_resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "_spec": "0.1.8", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Ben Newman", "email": "bn@cs.stanford.edu" }, - "bugs": { - "url": "https://github.com/benjamn/private/issues" - }, + "name": "private", "description": "Utility for associating truly private state with any JavaScript object", - "devDependencies": { - "mocha": "^4.0.1" - }, - "engines": { - "node": ">= 0.6" - }, - "files": [ - "private.js" - ], - "homepage": "http://github.com/benjamn/private", "keywords": [ "private", "access control", @@ -57,15 +16,24 @@ "scope", "es5" ], - "license": "MIT", - "main": "private.js", - "name": "private", + "version": "0.1.8", + "homepage": "http://github.com/benjamn/private", "repository": { "type": "git", "url": "git://github.com/benjamn/private.git" }, + "license": "MIT", + "main": "private.js", + "files": [ + "private.js" + ], "scripts": { "test": "mocha --reporter spec --full-trace test/run.js" }, - "version": "0.1.8" + "engines": { + "node": ">= 0.6" + }, + "devDependencies": { + "mocha": "^4.0.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/process-nextick-args/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/process-nextick-args/package.json index a790b1bf..e5c6c567 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/process-nextick-args/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/process-nextick-args/package.json @@ -1,52 +1,22 @@ { - "_args": [ - [ - "process-nextick-args@1.0.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "process-nextick-args@1.0.7", - "_id": "process-nextick-args@1.0.7", - "_inBundle": false, - "_integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "_location": "/babel-cli/process-nextick-args", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "process-nextick-args@1.0.7", - "name": "process-nextick-args", - "escapedName": "process-nextick-args", - "rawSpec": "1.0.7", - "saveSpec": null, - "fetchSpec": "1.0.7" - }, - "_requiredBy": [ - "/babel-cli/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "_spec": "1.0.7", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": "", - "bugs": { - "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" - }, - "description": "process.nextTick but always with args", - "devDependencies": { - "tap": "~0.2.6" - }, - "homepage": "https://github.com/calvinmetcalf/process-nextick-args", - "license": "MIT", - "main": "index.js", "name": "process-nextick-args", - "repository": { - "type": "git", - "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" - }, + "version": "1.0.7", + "description": "process.nextTick but always with args", + "main": "index.js", "scripts": { "test": "node test.js" }, - "version": "1.0.7" + "repository": { + "type": "git", + "url": "https://github.com/calvinmetcalf/process-nextick-args.git" + }, + "author": "", + "license": "MIT", + "bugs": { + "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" + }, + "homepage": "https://github.com/calvinmetcalf/process-nextick-args", + "devDependencies": { + "tap": "~0.2.6" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/node_modules/kind-of/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/node_modules/kind-of/package.json index 6f560d40..5de879e1 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/node_modules/kind-of/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/node_modules/kind-of/package.json @@ -1,71 +1,36 @@ { - "_args": [ - [ - "kind-of@3.2.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "kind-of", + "description": "Get the native type of a value.", + "version": "3.2.2", + "homepage": "https://github.com/jonschlinkert/kind-of", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "David Fox-Powell (https://dtothefp.github.io/me)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Ken Sheedlo (kensheedlo.com)", + "laggingreflex (https://github.com/laggingreflex)", + "Miguel Mota (https://miguelmota.com)", + "Peter deHaan (http://about.me/peterdehaan)" ], - "_development": true, - "_from": "kind-of@3.2.2", - "_id": "kind-of@3.2.2", - "_inBundle": false, - "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "_location": "/babel-cli/randomatic/is-number/kind-of", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "kind-of@3.2.2", - "name": "kind-of", - "escapedName": "kind-of", - "rawSpec": "3.2.2", - "saveSpec": null, - "fetchSpec": "3.2.2" - }, - "_requiredBy": [ - "/babel-cli/randomatic/is-number" - ], - "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "_spec": "3.2.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/kind-of", "bugs": { "url": "https://github.com/jonschlinkert/kind-of/issues" }, - "contributors": [ - { - "name": "David Fox-Powell", - "url": "https://dtothefp.github.io/me" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Ken Sheedlo", - "url": "kensheedlo.com" - }, - { - "name": "laggingreflex", - "url": "https://github.com/laggingreflex" - }, - { - "name": "Miguel Mota", - "url": "https://miguelmota.com" - }, - { - "name": "Peter deHaan", - "url": "http://about.me/peterdehaan" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha", + "prepublish": "browserify -o browser.js -e index.js -s index --bare" + }, "dependencies": { "is-buffer": "^1.1.5" }, - "description": "Get the native type of a value.", "devDependencies": { "ansi-bold": "^0.1.1", "benchmarked": "^1.0.0", @@ -76,13 +41,6 @@ "type-of": "^2.0.1", "typeof": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/kind-of", "keywords": [ "arguments", "array", @@ -106,17 +64,6 @@ "typeof", "types" ], - "license": "MIT", - "main": "index.js", - "name": "kind-of", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/kind-of.git" - }, - "scripts": { - "prepublish": "browserify -o browser.js -e index.js -s index --bare", - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -139,6 +86,5 @@ "reflinks": [ "verb" ] - }, - "version": "3.2.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/package.json index ca9e27c0..8c1f9ab4 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/is-number/package.json @@ -1,71 +1,37 @@ { - "_args": [ - [ - "is-number@3.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "is-number", + "description": "Returns true if the value is a number. comprehensive tests.", + "version": "3.0.0", + "homepage": "https://github.com/jonschlinkert/is-number", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Charlike Mike Reagent (http://www.tunnckocore.tk)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)" ], - "_development": true, - "_from": "is-number@3.0.0", - "_id": "is-number@3.0.0", - "_inBundle": false, - "_integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "_location": "/babel-cli/randomatic/is-number", - "_optional": true, - "_phantomChildren": { - "is-buffer": "1.1.6" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-number@3.0.0", - "name": "is-number", - "escapedName": "is-number", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/babel-cli/randomatic" - ], - "_resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/is-number", "bugs": { "url": "https://github.com/jonschlinkert/is-number/issues" }, - "contributors": [ - { - "name": "Charlike Mike Reagent", - "url": "http://www.tunnckocore.tk" - }, - { - "name": "Jon Schlinkert", - "email": "jon.schlinkert@sellside.com", - "url": "http://twitter.com/jonschlinkert" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "kind-of": "^3.0.2" }, - "description": "Returns true if the value is a number. comprehensive tests.", "devDependencies": { "benchmarked": "^0.2.5", "chalk": "^1.1.3", "gulp-format-md": "^0.1.10", "mocha": "^3.0.2" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-number", "keywords": [ "check", "coerce", @@ -87,16 +53,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.js", - "name": "is-number", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-number.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -123,6 +79,5 @@ "verb", "verb-generate-readme" ] - }, - "version": "3.0.0" -} + } +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/kind-of/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/kind-of/package.json index dd882fde..222afc0b 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/kind-of/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/node_modules/kind-of/package.json @@ -1,71 +1,36 @@ { - "_args": [ - [ - "kind-of@4.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "kind-of", + "description": "Get the native type of a value.", + "version": "4.0.0", + "homepage": "https://github.com/jonschlinkert/kind-of", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "David Fox-Powell (https://dtothefp.github.io/me)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Ken Sheedlo (kensheedlo.com)", + "laggingreflex (https://github.com/laggingreflex)", + "Miguel Mota (https://miguelmota.com)", + "Peter deHaan (http://about.me/peterdehaan)" ], - "_development": true, - "_from": "kind-of@4.0.0", - "_id": "kind-of@4.0.0", - "_inBundle": false, - "_integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "_location": "/babel-cli/randomatic/kind-of", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "kind-of@4.0.0", - "name": "kind-of", - "escapedName": "kind-of", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/babel-cli/randomatic" - ], - "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/kind-of", "bugs": { "url": "https://github.com/jonschlinkert/kind-of/issues" }, - "contributors": [ - { - "name": "David Fox-Powell", - "url": "https://dtothefp.github.io/me" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Ken Sheedlo", - "url": "kensheedlo.com" - }, - { - "name": "laggingreflex", - "url": "https://github.com/laggingreflex" - }, - { - "name": "Miguel Mota", - "url": "https://miguelmota.com" - }, - { - "name": "Peter deHaan", - "url": "http://about.me/peterdehaan" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha", + "prepublish": "browserify -o browser.js -e index.js -s index --bare" + }, "dependencies": { "is-buffer": "^1.1.5" }, - "description": "Get the native type of a value.", "devDependencies": { "ansi-bold": "^0.1.1", "benchmarked": "^1.1.1", @@ -76,13 +41,6 @@ "type-of": "^2.0.1", "typeof": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/kind-of", "keywords": [ "arguments", "array", @@ -106,17 +64,6 @@ "typeof", "types" ], - "license": "MIT", - "main": "index.js", - "name": "kind-of", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/kind-of.git" - }, - "scripts": { - "prepublish": "browserify -o browser.js -e index.js -s index --bare", - "test": "mocha" - }, "verb": { "related": { "list": [ @@ -139,6 +86,5 @@ "reflinks": [ "verb" ] - }, - "version": "4.0.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/package.json index 17374891..acb4cd53 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/randomatic/package.json @@ -1,70 +1,35 @@ { - "_args": [ - [ - "randomatic@1.1.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "randomatic", + "description": "Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.", + "version": "1.1.7", + "homepage": "https://github.com/jonschlinkert/randomatic", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Bogdan Chadkin (https://github.com/TrySound)", + "Dragos Fotescu (http://dragosfotescu.com)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Paul Miller (paulmillr.com)", + "Sun Knudsen (http://sunknudsen.com)" ], - "_development": true, - "_from": "randomatic@1.1.7", - "_id": "randomatic@1.1.7", - "_inBundle": false, - "_integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", - "_location": "/babel-cli/randomatic", - "_optional": true, - "_phantomChildren": { - "is-buffer": "1.1.6" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "randomatic@1.1.7", - "name": "randomatic", - "escapedName": "randomatic", - "rawSpec": "1.1.7", - "saveSpec": null, - "fetchSpec": "1.1.7" - }, - "_requiredBy": [ - "/babel-cli/fill-range" - ], - "_resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", - "_spec": "1.1.7", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/randomatic", "bugs": { "url": "https://github.com/jonschlinkert/randomatic/issues" }, - "contributors": [ - { - "name": "Bogdan Chadkin", - "url": "https://github.com/TrySound" - }, - { - "name": "Dragos Fotescu", - "url": "http://dragosfotescu.com" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Paul Miller", - "url": "paulmillr.com" - }, - { - "name": "Sun Knudsen", - "url": "http://sunknudsen.com" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">= 0.10.0" + }, + "scripts": { + "test": "mocha" + }, "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" }, - "description": "Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.", "devDependencies": { "ansi-bold": "^0.1.1", "benchmarked": "^1.1.1", @@ -73,13 +38,6 @@ "mocha": "^3.4.2", "should": "^11.2.1" }, - "engines": { - "node": ">= 0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/randomatic", "keywords": [ "alpha", "alpha-numeric", @@ -93,16 +51,6 @@ "randomize", "randomized" ], - "license": "MIT", - "main": "index.js", - "name": "randomatic", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/randomatic.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -126,6 +74,5 @@ "verb", "verb-generate-readme" ] - }, - "version": "1.1.7" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/readable-stream/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/readable-stream/package.json index d0face46..5e0c78e2 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/readable-stream/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/readable-stream/package.json @@ -1,44 +1,8 @@ { - "_args": [ - [ - "readable-stream@2.3.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "readable-stream@2.3.3", - "_id": "readable-stream@2.3.3", - "_inBundle": false, - "_integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", - "_location": "/babel-cli/readable-stream", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "readable-stream@2.3.3", - "name": "readable-stream", - "escapedName": "readable-stream", - "rawSpec": "2.3.3", - "saveSpec": null, - "fetchSpec": "2.3.3" - }, - "_requiredBy": [ - "/babel-cli/readdirp" - ], - "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "_spec": "2.3.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "browser": { - "util": false, - "./readable.js": "./readable-browser.js", - "./writable.js": "./writable-browser.js", - "./duplex.js": "./duplex-browser.js", - "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" - }, - "bugs": { - "url": "https://github.com/nodejs/readable-stream/issues" - }, + "name": "readable-stream", + "version": "2.3.3", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "main": "readable.js", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -48,7 +12,6 @@ "string_decoder": "~1.0.3", "util-deprecate": "~1.0.1" }, - "description": "Streams3, a user-land copy of the stream library from Node.js", "devDependencies": { "assert": "~1.4.0", "babel-polyfill": "^6.9.1", @@ -58,31 +21,34 @@ "tape": "~4.5.1", "zuul": "~3.10.0" }, - "homepage": "https://github.com/nodejs/readable-stream#readme", + "scripts": { + "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js", + "browser": "npm run write-zuul && zuul --browser-retries 2 -- test/browser.js", + "write-zuul": "printf \"ui: tape\nbrowsers:\n - name: $BROWSER_NAME\n version: $BROWSER_VERSION\n\">.zuul.yml", + "local": "zuul --local 3000 --no-coverage -- test/browser.js", + "cover": "nyc npm test", + "report": "nyc report --reporter=lcov" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejs/readable-stream" + }, "keywords": [ "readable", "stream", "pipe" ], - "license": "MIT", - "main": "readable.js", - "name": "readable-stream", + "browser": { + "util": false, + "./readable.js": "./readable-browser.js", + "./writable.js": "./writable-browser.js", + "./duplex.js": "./duplex-browser.js", + "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" + }, "nyc": { "include": [ "lib/**.js" ] }, - "repository": { - "type": "git", - "url": "git://github.com/nodejs/readable-stream.git" - }, - "scripts": { - "browser": "npm run write-zuul && zuul --browser-retries 2 -- test/browser.js", - "cover": "nyc npm test", - "local": "zuul --local 3000 --no-coverage -- test/browser.js", - "report": "nyc report --reporter=lcov", - "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js", - "write-zuul": "printf \"ui: tape\nbrowsers:\n - name: $BROWSER_NAME\n version: $BROWSER_VERSION\n\">.zuul.yml" - }, - "version": "2.3.3" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/readdirp/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/readdirp/package.json index c19f2221..ca02cde7 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/readdirp/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/readdirp/package.json @@ -1,59 +1,16 @@ { - "_args": [ - [ - "readdirp@2.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "readdirp@2.1.0", - "_id": "readdirp@2.1.0", - "_inBundle": false, - "_integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", - "_location": "/babel-cli/readdirp", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "readdirp@2.1.0", - "name": "readdirp", - "escapedName": "readdirp", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/babel-cli/chokidar" - ], - "_resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com" - }, - "bugs": { - "url": "https://github.com/thlorenz/readdirp/issues" - }, - "dependencies": { - "graceful-fs": "^4.1.2", - "minimatch": "^3.0.2", - "readable-stream": "^2.0.2", - "set-immediate-shim": "^1.0.1" - }, + "author": "Thorsten Lorenz (thlorenz.com)", + "name": "readdirp", "description": "Recursive version of fs.readdir with streaming api.", - "devDependencies": { - "nave": "^0.5.1", - "proxyquire": "^1.7.9", - "tap": "1.3.2", - "through2": "^2.0.0" + "version": "2.1.0", + "homepage": "https://github.com/thlorenz/readdirp", + "repository": { + "type": "git", + "url": "git://github.com/thlorenz/readdirp.git" }, "engines": { "node": ">=0.6" }, - "homepage": "https://github.com/thlorenz/readdirp", "keywords": [ "recursive", "fs", @@ -64,21 +21,27 @@ "find", "filter" ], - "license": "MIT", "main": "readdirp.js", - "name": "readdirp", - "repository": { - "type": "git", - "url": "git://github.com/thlorenz/readdirp.git" - }, "scripts": { - "test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi", + "test-main": "(cd test && set -e; for t in ./*.js; do node $t; done)", "test-0.10": "nave use 0.10 npm run test-main", "test-0.12": "nave use 0.12 npm run test-main", "test-4": "nave use 4.4 npm run test-main", "test-6": "nave use 6.2 npm run test-main", "test-all": "npm run test-main && npm run test-0.10 && npm run test-0.12 && npm run test-4 && npm run test-6", - "test-main": "(cd test && set -e; for t in ./*.js; do node $t; done)" + "test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi" }, - "version": "2.1.0" + "dependencies": { + "graceful-fs": "^4.1.2", + "minimatch": "^3.0.2", + "readable-stream": "^2.0.2", + "set-immediate-shim": "^1.0.1" + }, + "devDependencies": { + "nave": "^0.5.1", + "proxyquire": "^1.7.9", + "tap": "1.3.2", + "through2": "^2.0.0" + }, + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/regenerator-runtime/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/regenerator-runtime/package.json index 0fcdc395..7dcf6c37 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/regenerator-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/regenerator-runtime/package.json @@ -1,50 +1,18 @@ { - "_args": [ - [ - "regenerator-runtime@0.11.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "regenerator-runtime@0.11.0", - "_id": "regenerator-runtime@0.11.0", - "_inBundle": false, - "_integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "_location": "/babel-cli/regenerator-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-runtime@0.11.0", - "name": "regenerator-runtime", - "escapedName": "regenerator-runtime", - "rawSpec": "0.11.0", - "saveSpec": null, - "fetchSpec": "0.11.0" - }, - "_requiredBy": [ - "/babel-cli/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "_spec": "0.11.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "regenerator-runtime", + "author": "Ben Newman ", "description": "Runtime for Regenerator-compiled generator and async functions.", + "version": "0.11.0", + "main": "runtime-module.js", "keywords": [ "regenerator", "runtime", "generator", "async" ], - "license": "MIT", - "main": "runtime-module.js", - "name": "regenerator-runtime", "repository": { "type": "git", "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" }, - "version": "0.11.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/regex-cache/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/regex-cache/package.json index d3344091..a9072f67 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/regex-cache/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/regex-cache/package.json @@ -1,55 +1,32 @@ { - "_args": [ - [ - "regex-cache@0.4.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "regex-cache", + "description": "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.", + "version": "0.4.4", + "homepage": "https://github.com/jonschlinkert/regex-cache", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Martin Kolárik (https://kolarik.sk)" ], - "_development": true, - "_from": "regex-cache@0.4.4", - "_id": "regex-cache@0.4.4", - "_inBundle": false, - "_integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "_location": "/babel-cli/regex-cache", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regex-cache@0.4.4", - "name": "regex-cache", - "escapedName": "regex-cache", - "rawSpec": "0.4.4", - "saveSpec": null, - "fetchSpec": "0.4.4" - }, - "_requiredBy": [ - "/babel-cli/micromatch" - ], - "_resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "_spec": "0.4.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/regex-cache", "bugs": { "url": "https://github.com/jonschlinkert/regex-cache/issues" }, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Martin Kolárik", - "url": "https://kolarik.sk" - } + "license": "MIT", + "files": [ + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha", + "benchmarks": "node benchmark" + }, "dependencies": { "is-equal-shallow": "^0.1.3" }, - "description": "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.", "devDependencies": { "ansi-bold": "^0.1.1", "benchmarked": "^0.1.5", @@ -57,13 +34,6 @@ "micromatch": "^2.3.7", "should": "^8.3.0" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/regex-cache", "keywords": [ "cache", "expression", @@ -74,17 +44,6 @@ "store", "to-regex" ], - "license": "MIT", - "main": "index.js", - "name": "regex-cache", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/regex-cache.git" - }, - "scripts": { - "benchmarks": "node benchmark", - "test": "mocha" - }, "verb": { "run": true, "toc": false, @@ -101,6 +60,5 @@ "lint": { "reflinks": true } - }, - "version": "0.4.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/remove-trailing-separator/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/remove-trailing-separator/package.json index cb40ffdd..47ef27a2 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/remove-trailing-separator/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/remove-trailing-separator/package.json @@ -1,68 +1,37 @@ { - "_args": [ - [ - "remove-trailing-separator@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "remove-trailing-separator@1.1.0", - "_id": "remove-trailing-separator@1.1.0", - "_inBundle": false, - "_integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "_location": "/babel-cli/remove-trailing-separator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "remove-trailing-separator@1.1.0", - "name": "remove-trailing-separator", - "escapedName": "remove-trailing-separator", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/babel-cli/normalize-path" - ], - "_resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "darsain" - }, - "bugs": { - "url": "https://github.com/darsain/remove-trailing-separator/issues" - }, + "name": "remove-trailing-separator", + "version": "1.1.0", "description": "Removes separators from the end of the string.", - "devDependencies": { - "ava": "^0.16.0", - "coveralls": "^2.11.14", - "nyc": "^8.3.0", - "xo": "^0.16.0" - }, + "main": "index.js", "files": [ "index.js" ], - "homepage": "https://github.com/darsain/remove-trailing-separator#readme", + "scripts": { + "lint": "xo", + "pretest": "npm run lint", + "test": "nyc ava", + "report": "nyc report --reporter=html" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/darsain/remove-trailing-separator.git" + }, "keywords": [ "remove", "strip", "trailing", "separator" ], + "author": "darsain", "license": "ISC", - "main": "index.js", - "name": "remove-trailing-separator", - "repository": { - "type": "git", - "url": "git+https://github.com/darsain/remove-trailing-separator.git" + "bugs": { + "url": "https://github.com/darsain/remove-trailing-separator/issues" }, - "scripts": { - "lint": "xo", - "pretest": "npm run lint", - "report": "nyc report --reporter=html", - "test": "nyc ava" - }, - "version": "1.1.0" + "homepage": "https://github.com/darsain/remove-trailing-separator#readme", + "devDependencies": { + "ava": "^0.16.0", + "coveralls": "^2.11.14", + "nyc": "^8.3.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-element/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-element/package.json index d4c18b75..5b359b09 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-element/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-element/package.json @@ -1,74 +1,44 @@ { - "_args": [ - [ - "repeat-element@1.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "repeat-element@1.1.2", - "_id": "repeat-element@1.1.2", - "_inBundle": false, - "_integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", - "_location": "/babel-cli/repeat-element", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "repeat-element@1.1.2", - "name": "repeat-element", - "escapedName": "repeat-element", - "rawSpec": "1.1.2", - "saveSpec": null, - "fetchSpec": "1.1.2" - }, - "_requiredBy": [ - "/babel-cli/braces", - "/babel-cli/fill-range" - ], - "_resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "_spec": "1.1.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "repeat-element", + "description": "Create an array by repeating the given value n times.", + "version": "1.1.2", + "homepage": "https://github.com/jonschlinkert/repeat-element", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" }, + "repository": { + "type": "git", + "url": "git://github.com/jonschlinkert/repeat-element.git" + }, "bugs": { "url": "https://github.com/jonschlinkert/repeat-element/issues" }, - "description": "Create an array by repeating the given value n times.", - "devDependencies": { - "benchmarked": "^0.1.4", - "chalk": "^1.0.0", - "glob": "^5.0.5", - "minimist": "^1.1.1", - "mocha": "^2.2.4" + "license": { + "type": "MIT", + "url": "https://github.com/jonschlinkert/repeat-element/blob/master/LICENSE" }, + "main": "index.js", "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/jonschlinkert/repeat-element", "keywords": [ "array", "element", "repeat", "string" ], - "license": { - "type": "MIT", - "url": "https://github.com/jonschlinkert/repeat-element/blob/master/LICENSE" - }, - "main": "index.js", - "name": "repeat-element", - "repository": { - "type": "git", - "url": "git://github.com/jonschlinkert/repeat-element.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "1.1.2" + "devDependencies": { + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "glob": "^5.0.5", + "minimist": "^1.1.1", + "mocha": "^2.2.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-string/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-string/package.json index cd3c76b2..09f88929 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-string/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/repeat-string/package.json @@ -1,69 +1,31 @@ { - "_args": [ - [ - "repeat-string@1.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "repeat-string", + "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "version": "1.6.1", + "homepage": "https://github.com/jonschlinkert/repeat-string", + "author": "Jon Schlinkert (http://github.com/jonschlinkert)", + "contributors": [ + "Brian Woodward (https://github.com/doowb)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Linus Unnebäck (http://linus.unnebäck.se)", + "Thijs Busser (http://tbusser.net)", + "Titus (wooorm.com)" ], - "_development": true, - "_from": "repeat-string@1.6.1", - "_id": "repeat-string@1.6.1", - "_inBundle": false, - "_integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "_location": "/babel-cli/repeat-string", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "repeat-string@1.6.1", - "name": "repeat-string", - "escapedName": "repeat-string", - "rawSpec": "1.6.1", - "saveSpec": null, - "fetchSpec": "1.6.1" - }, - "_requiredBy": [ - "/babel-cli/fill-range" - ], - "_resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "_spec": "1.6.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "http://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/repeat-string", "bugs": { "url": "https://github.com/jonschlinkert/repeat-string/issues" }, - "contributors": [ - { - "name": "Brian Woodward", - "email": "brian.woodward@gmail.com", - "url": "https://github.com/doowb" - }, - { - "name": "Jon Schlinkert", - "email": "jon.schlinkert@sellside.com", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Linus Unnebäck", - "email": "linus@folkdatorn.se", - "url": "http://linus.unnebäck.se" - }, - { - "name": "Thijs Busser", - "email": "tbusser@gmail.com", - "url": "http://tbusser.net" - }, - { - "name": "Titus", - "email": "tituswormer@gmail.com", - "url": "wooorm.com" - } + "license": "MIT", + "files": [ + "index.js" ], - "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "main": "index.js", + "engines": { + "node": ">=0.10" + }, + "scripts": { + "test": "mocha" + }, "devDependencies": { "ansi-cyan": "^0.1.1", "benchmarked": "^0.2.5", @@ -74,13 +36,6 @@ "text-table": "^0.2.0", "yargs-parser": "^4.0.2" }, - "engines": { - "node": ">=0.10" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/repeat-string", "keywords": [ "fast", "fastest", @@ -98,16 +53,6 @@ "string", "times" ], - "license": "MIT", - "main": "index.js", - "name": "repeat-string", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/repeat-string.git" - }, - "scripts": { - "test": "mocha" - }, "verb": { "toc": false, "layout": "default", @@ -128,6 +73,5 @@ "reflinks": [ "verb" ] - }, - "version": "1.6.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/repeating/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/repeating/package.json index e175c537..0247a237 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/repeating/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/repeating/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "repeating@2.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "repeating@2.0.1", - "_id": "repeating@2.0.1", - "_inBundle": false, - "_integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "_location": "/babel-cli/repeating", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "repeating@2.0.1", - "name": "repeating", - "escapedName": "repeating", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/babel-cli/detect-indent" - ], - "_resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "repeating", + "version": "2.0.1", + "description": "Repeat a string - fast", + "license": "MIT", + "repository": "sindresorhus/repeating", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/repeating/issues" - }, - "dependencies": { - "is-finite": "^1.0.0" - }, - "description": "Repeat a string - fast", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/repeating#readme", "keywords": [ "repeat", "string", @@ -60,14 +27,11 @@ "fill", "pad" ], - "license": "MIT", - "name": "repeating", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/repeating.git" + "dependencies": { + "is-finite": "^1.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.0.1" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/safe-buffer/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/safe-buffer/package.json index 7893efb9..356d8bf2 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/safe-buffer/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/safe-buffer/package.json @@ -1,34 +1,7 @@ { - "_args": [ - [ - "safe-buffer@5.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "safe-buffer@5.1.1", - "_id": "safe-buffer@5.1.1", - "_inBundle": false, - "_integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "_location": "/babel-cli/safe-buffer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "safe-buffer@5.1.1", - "name": "safe-buffer", - "escapedName": "safe-buffer", - "rawSpec": "5.1.1", - "saveSpec": null, - "fetchSpec": "5.1.1" - }, - "_requiredBy": [ - "/babel-cli/readable-stream", - "/babel-cli/string_decoder" - ], - "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "_spec": "5.1.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "safe-buffer", + "description": "Safer Node.js Buffer API", + "version": "5.1.1", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", @@ -37,7 +10,6 @@ "bugs": { "url": "https://github.com/feross/safe-buffer/issues" }, - "description": "Safer Node.js Buffer API", "devDependencies": { "standard": "*", "tape": "^4.0.0", @@ -55,13 +27,11 @@ ], "license": "MIT", "main": "index.js", - "name": "safe-buffer", "repository": { "type": "git", "url": "git://github.com/feross/safe-buffer.git" }, "scripts": { "test": "standard && tape test.js" - }, - "version": "5.1.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/set-immediate-shim/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/set-immediate-shim/package.json index 28b4038e..2e9a451b 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/set-immediate-shim/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/set-immediate-shim/package.json @@ -1,54 +1,23 @@ { - "_args": [ - [ - "set-immediate-shim@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "set-immediate-shim@1.0.1", - "_id": "set-immediate-shim@1.0.1", - "_inBundle": false, - "_integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", - "_location": "/babel-cli/set-immediate-shim", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "set-immediate-shim@1.0.1", - "name": "set-immediate-shim", - "escapedName": "set-immediate-shim", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/babel-cli/readdirp" - ], - "_resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "set-immediate-shim", + "version": "1.0.1", + "description": "Simple setImmediate shim", + "license": "MIT", + "repository": "sindresorhus/set-immediate-shim", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/set-immediate-shim/issues" - }, - "description": "Simple setImmediate shim", - "devDependencies": { - "ava": "0.0.4", - "require-uncached": "^1.0.2" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/set-immediate-shim#readme", "keywords": [ "setImmediate", "immediate", @@ -58,14 +27,8 @@ "polyfill", "ponyfill" ], - "license": "MIT", - "name": "set-immediate-shim", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/set-immediate-shim.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.0.1" + "devDependencies": { + "ava": "0.0.4", + "require-uncached": "^1.0.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/slash/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/slash/package.json index dc4ac6a1..7e744a44 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/slash/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/slash/package.json @@ -1,53 +1,7 @@ { - "_args": [ - [ - "slash@1.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "slash@1.0.0", - "_id": "slash@1.0.0", - "_inBundle": false, - "_integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "_location": "/babel-cli/slash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "slash@1.0.0", - "name": "slash", - "escapedName": "slash", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/babel-cli", - "/babel-cli/babel-core" - ], - "_resolved": "https://registry.npmjs.org/slash/-/slash-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": "http://sindresorhus.com" - }, - "bugs": { - "url": "https://github.com/sindresorhus/slash/issues" - }, + "name": "slash", + "version": "1.0.0", "description": "Convert Windows backslash paths to slash paths", - "devDependencies": { - "mocha": "*" - }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/slash#readme", "keywords": [ "path", "seperator", @@ -57,14 +11,23 @@ "windows", "win" ], - "license": "MIT", - "name": "slash", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/slash.git" + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "http://sindresorhus.com" }, + "repository": "sindresorhus/slash", "scripts": { "test": "mocha" }, - "version": "1.0.0" + "devDependencies": { + "mocha": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "license": "MIT", + "files": [ + "index.js" + ] } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map-support/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map-support/package.json index 42cb63b9..de64c253 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map-support/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map-support/package.json @@ -1,40 +1,17 @@ { - "_args": [ - [ - "source-map-support@0.4.18", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "source-map-support@0.4.18", - "_id": "source-map-support@0.4.18", - "_inBundle": false, - "_integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "_location": "/babel-cli/source-map-support", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "source-map-support@0.4.18", - "name": "source-map-support", - "escapedName": "source-map-support", - "rawSpec": "0.4.18", - "saveSpec": null, - "fetchSpec": "0.4.18" - }, - "_requiredBy": [ - "/babel-cli/babel-register" - ], - "_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "_spec": "0.4.18", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/evanw/node-source-map-support/issues" + "name": "source-map-support", + "description": "Fixes stack traces for files with source maps", + "version": "0.4.18", + "main": "./source-map-support.js", + "scripts": { + "build": "node build.js", + "serve-tests": "http-server -p 1336", + "prepublish": "npm run build", + "test": "mocha" }, "dependencies": { "source-map": "^0.5.6" }, - "description": "Fixes stack traces for files with source maps", "devDependencies": { "browserify": "3.44.2", "coffee-script": "1.7.1", @@ -42,19 +19,12 @@ "mocha": "1.18.2", "webpack": "^1.13.3" }, - "homepage": "https://github.com/evanw/node-source-map-support#readme", - "license": "MIT", - "main": "./source-map-support.js", - "name": "source-map-support", "repository": { "type": "git", - "url": "git+https://github.com/evanw/node-source-map-support.git" + "url": "https://github.com/evanw/node-source-map-support" }, - "scripts": { - "build": "node build.js", - "prepublish": "npm run build", - "serve-tests": "http-server -p 1336", - "test": "mocha" + "bugs": { + "url": "https://github.com/evanw/node-source-map-support/issues" }, - "version": "0.4.18" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map/package.json index ca2281c8..048e3ae8 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/source-map/package.json @@ -1,197 +1,52 @@ { - "_args": [ - [ - "source-map@0.5.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "source-map@0.5.7", - "_id": "source-map@0.5.7", - "_inBundle": false, - "_integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "_location": "/babel-cli/source-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "source-map@0.5.7", - "name": "source-map", - "escapedName": "source-map", - "rawSpec": "0.5.7", - "saveSpec": null, - "fetchSpec": "0.5.7" - }, - "_requiredBy": [ - "/babel-cli", - "/babel-cli/babel-core", - "/babel-cli/babel-generator", - "/babel-cli/source-map-support" - ], - "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "_spec": "0.5.7", - "_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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.5.7", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "lib/", @@ -200,19 +55,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.5.7" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/string_decoder/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/string_decoder/package.json index 94965be2..49408e87 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/string_decoder/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/string_decoder/package.json @@ -1,45 +1,22 @@ { - "_args": [ - [ - "string_decoder@1.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "string_decoder@1.0.3", - "_id": "string_decoder@1.0.3", - "_inBundle": false, - "_integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "_location": "/babel-cli/string_decoder", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "string_decoder@1.0.3", - "name": "string_decoder", - "escapedName": "string_decoder", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/babel-cli/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/rvagg/string_decoder/issues" - }, + "name": "string_decoder", + "version": "1.0.3", + "description": "The string_decoder module from Node core", + "main": "lib/string_decoder.js", "dependencies": { "safe-buffer": "~5.1.0" }, - "description": "The string_decoder module from Node core", "devDependencies": { "babel-polyfill": "^6.23.0", "tap": "~0.4.8" }, + "scripts": { + "test": "tap test/parallel/*.js && node test/verify-dependencies" + }, + "repository": { + "type": "git", + "url": "git://github.com/rvagg/string_decoder.git" + }, "homepage": "https://github.com/rvagg/string_decoder", "keywords": [ "string", @@ -47,15 +24,5 @@ "browser", "browserify" ], - "license": "MIT", - "main": "lib/string_decoder.js", - "name": "string_decoder", - "repository": { - "type": "git", - "url": "git://github.com/rvagg/string_decoder.git" - }, - "scripts": { - "test": "tap test/parallel/*.js && node test/verify-dependencies" - }, - "version": "1.0.3" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/strip-ansi/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/strip-ansi/package.json index 23b88fb2..301685ba 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/strip-ansi/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/strip-ansi/package.json @@ -1,56 +1,28 @@ { - "_args": [ - [ - "strip-ansi@3.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "strip-ansi@3.0.1", - "_id": "strip-ansi@3.0.1", - "_inBundle": false, - "_integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "_location": "/babel-cli/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@3.0.1", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/babel-cli/chalk" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "strip-ansi", + "version": "3.0.1", + "description": "Strip ANSI escape codes", + "license": "MIT", + "repository": "chalk/strip-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "description": "Strip ANSI escape codes", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -75,31 +47,11 @@ "command-line", "text" ], - "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": "JD Ballard", - "email": "i.am.qix@gmail.com", - "url": "github.com/qix-" - } - ], - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.1" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/supports-color/package.json index a3710795..3bb77ac1 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/supports-color/package.json @@ -1,53 +1,27 @@ { - "_args": [ - [ - "supports-color@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "supports-color@2.0.0", - "_id": "supports-color@2.0.0", - "_inBundle": false, - "_integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "_location": "/babel-cli/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@2.0.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-cli/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "supports-color", + "version": "2.0.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "mocha": "*", - "require-uncached": "^1.0.2" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -68,26 +42,8 @@ "capability", "detect" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Appelman", - "email": "jappelman@xebia.com", - "url": "jbnicolai.com" - } - ], - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "2.0.0" + "devDependencies": { + "mocha": "*", + "require-uncached": "^1.0.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/to-fast-properties/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/to-fast-properties/package.json index e9be8460..f1028bd4 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/to-fast-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/to-fast-properties/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "to-fast-properties@1.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "to-fast-properties@1.0.3", - "_id": "to-fast-properties@1.0.3", - "_inBundle": false, - "_integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", - "_location": "/babel-cli/to-fast-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "to-fast-properties@1.0.3", - "name": "to-fast-properties", - "escapedName": "to-fast-properties", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/babel-cli/babel-types" - ], - "_resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "to-fast-properties", + "version": "1.0.3", + "description": "Force V8 to use fast properties for an object", + "license": "MIT", + "repository": "sindresorhus/to-fast-properties", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/to-fast-properties/issues" - }, - "description": "Force V8 to use fast properties for an object", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node --allow-natives-syntax test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/to-fast-properties#readme", "keywords": [ "object", "obj", @@ -58,14 +29,7 @@ "convert", "mode" ], - "license": "MIT", - "name": "to-fast-properties", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/to-fast-properties.git" - }, - "scripts": { - "test": "node --allow-natives-syntax test.js" - }, - "version": "1.0.3" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/trim-right/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/trim-right/package.json index 80d73fd7..979bfa91 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/trim-right/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/trim-right/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "trim-right@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "trim-right@1.0.1", - "_id": "trim-right@1.0.1", - "_inBundle": false, - "_integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "_location": "/babel-cli/trim-right", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "trim-right@1.0.1", - "name": "trim-right", - "escapedName": "trim-right", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/babel-cli/babel-generator" - ], - "_resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "trim-right", + "version": "1.0.1", + "description": "Similar to String#trim() but removes only whitespace on the right", + "license": "MIT", + "repository": "sindresorhus/trim-right", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/trim-right/issues" - }, - "description": "Similar to String#trim() but removes only whitespace on the right", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/trim-right#readme", "keywords": [ "trim", "right", @@ -60,14 +31,7 @@ "remove", "delete" ], - "license": "MIT", - "name": "trim-right", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/trim-right.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.0.1" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/user-home/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/user-home/package.json index 9fd83a8c..1bfc02e6 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/user-home/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/user-home/package.json @@ -1,56 +1,27 @@ { - "_args": [ - [ - "user-home@1.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "user-home@1.1.1", - "_id": "user-home@1.1.1", - "_inBundle": false, - "_integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", - "_location": "/babel-cli/user-home", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "user-home@1.1.1", - "name": "user-home", - "escapedName": "user-home", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" + "name": "user-home", + "version": "1.1.1", + "description": "Get the path to the user home directory", + "license": "MIT", + "repository": "sindresorhus/user-home", + "bin": { + "user-home": "cli.js" }, - "_requiredBy": [ - "/babel-cli/v8flags" - ], - "_resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", - "_spec": "1.1.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "http://sindresorhus.com" }, - "bin": { - "user-home": "cli.js" - }, - "bugs": { - "url": "https://github.com/sindresorhus/user-home/issues" - }, - "description": "Get the path to the user home directory", - "devDependencies": { - "ava": "0.0.3" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js", "cli.js" ], - "homepage": "https://github.com/sindresorhus/user-home#readme", "keywords": [ "cli", "bin", @@ -62,14 +33,7 @@ "folder", "path" ], - "license": "MIT", - "name": "user-home", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/user-home.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.1" + "devDependencies": { + "ava": "0.0.3" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/util-deprecate/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/util-deprecate/package.json index 46dbb120..2e79f89a 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/util-deprecate/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/util-deprecate/package.json @@ -1,45 +1,16 @@ { - "_args": [ - [ - "util-deprecate@1.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "util-deprecate@1.0.2", - "_id": "util-deprecate@1.0.2", - "_inBundle": false, - "_integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "_location": "/babel-cli/util-deprecate", - "_optional": true, - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "util-deprecate@1.0.2", - "name": "util-deprecate", - "escapedName": "util-deprecate", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/babel-cli/readable-stream" - ], - "_resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io/" - }, - "browser": "browser.js", - "bugs": { - "url": "https://github.com/TooTallNate/util-deprecate/issues" - }, + "name": "util-deprecate", + "version": "1.0.2", "description": "The Node.js `util.deprecate()` function with browser support", - "homepage": "https://github.com/TooTallNate/util-deprecate", + "main": "node.js", + "browser": "browser.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/util-deprecate.git" + }, "keywords": [ "util", "deprecate", @@ -47,15 +18,10 @@ "browser", "node" ], + "author": "Nathan Rajlich (http://n8.io/)", "license": "MIT", - "main": "node.js", - "name": "util-deprecate", - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/util-deprecate.git" + "bugs": { + "url": "https://github.com/TooTallNate/util-deprecate/issues" }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "version": "1.0.2" + "homepage": "https://github.com/TooTallNate/util-deprecate" } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/v8flags/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/v8flags/package.json index 60b97430..b711a728 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/v8flags/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/v8flags/package.json @@ -1,71 +1,42 @@ { - "_args": [ - [ - "v8flags@2.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "v8flags@2.1.1", - "_id": "v8flags@2.1.1", - "_inBundle": false, - "_integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", - "_location": "/babel-cli/v8flags", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "v8flags@2.1.1", - "name": "v8flags", - "escapedName": "v8flags", - "rawSpec": "2.1.1", - "saveSpec": null, - "fetchSpec": "2.1.1" - }, - "_requiredBy": [ - "/babel-cli" - ], - "_resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", - "_spec": "2.1.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "v8flags", + "description": "Get available v8 flags.", + "version": "2.1.1", + "homepage": "https://github.com/tkellen/node-v8flags", "author": { "name": "Tyler Kellen", "url": "http://goingslowly.com/" }, + "repository": { + "type": "git", + "url": "git://github.com/tkellen/node-v8flags.git" + }, "bugs": { "url": "https://github.com/tkellen/node-v8flags/issues" }, - "dependencies": { - "user-home": "^1.1.1" - }, - "description": "Get available v8 flags.", - "devDependencies": { - "async": "^0.9.0", - "chai": "~1.9.1", - "mocha": "~1.21.4" - }, - "engines": { - "node": ">= 0.10.0" - }, - "homepage": "https://github.com/tkellen/node-v8flags", - "keywords": [ - "v8 flags", - "harmony flags" - ], "licenses": [ { "type": "MIT", "url": "https://github.com/tkellen/node-v8flags/blob/master/LICENSE" } ], - "main": "index.js", - "name": "v8flags", - "repository": { - "type": "git", - "url": "git://github.com/tkellen/node-v8flags.git" - }, "scripts": { "test": "_mocha -R spec test.js" }, - "version": "2.1.1" + "main": "index.js", + "engines": { + "node": ">= 0.10.0" + }, + "keywords": [ + "v8 flags", + "harmony flags" + ], + "devDependencies": { + "async": "^0.9.0", + "chai": "~1.9.1", + "mocha": "~1.21.4" + }, + "dependencies": { + "user-home": "^1.1.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-cli/node_modules/wrappy/package.json b/goTorrentWebUI/node_modules/babel-cli/node_modules/wrappy/package.json index deaf6d5b..13075204 100644 --- a/goTorrentWebUI/node_modules/babel-cli/node_modules/wrappy/package.json +++ b/goTorrentWebUI/node_modules/babel-cli/node_modules/wrappy/package.json @@ -1,63 +1,29 @@ { - "_args": [ - [ - "wrappy@1.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_development": true, - "_from": "wrappy@1.0.2", - "_id": "wrappy@1.0.2", - "_inBundle": false, - "_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "_location": "/babel-cli/wrappy", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "wrappy@1.0.2", - "name": "wrappy", - "escapedName": "wrappy", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/babel-cli/inflight", - "/babel-cli/once" - ], - "_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/npm/wrappy/issues" - }, - "dependencies": {}, + "name": "wrappy", + "version": "1.0.2", "description": "Callback wrapping utility", - "devDependencies": { - "tap": "^2.3.1" - }, - "directories": { - "test": "test" - }, + "main": "wrappy.js", "files": [ "wrappy.js" ], - "homepage": "https://github.com/npm/wrappy", - "license": "ISC", - "main": "wrappy.js", - "name": "wrappy", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/wrappy.git" + "directories": { + "test": "test" + }, + "dependencies": {}, + "devDependencies": { + "tap": "^2.3.1" }, "scripts": { "test": "tap --coverage test/*.js" }, - "version": "1.0.2" + "repository": { + "type": "git", + "url": "https://github.com/npm/wrappy" + }, + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC", + "bugs": { + "url": "https://github.com/npm/wrappy/issues" + }, + "homepage": "https://github.com/npm/wrappy" } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/big.js/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/big.js/package.json index cca33efc..d6bdc8f0 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/big.js/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/big.js/package.json @@ -1,48 +1,7 @@ { - "_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": "/babel-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": [ - "/babel-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" - }, + "name": "big.js", "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic", - "engines": { - "node": "*" - }, - "files": [ - "big.js", - "big.min.js" - ], - "homepage": "https://github.com/MikeMcl/big.js#readme", + "version": "3.2.0", "keywords": [ "arbitrary", "precision", @@ -57,16 +16,28 @@ "bigint", "bignum" ], - "license": "MIT", - "main": "big.js", - "name": "big.js", - "repository": { + "repository" : { "type": "git", - "url": "git+https://github.com/MikeMcl/big.js.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": { - "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" + "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 */\"" }, - "version": "3.2.0" + "files": [ + "big.js", + "big.min.js" + ] } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/commondir/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/commondir/package.json index 337ac434..7320d956 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/commondir/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/commondir/package.json @@ -1,49 +1,19 @@ { - "_args": [ - [ - "commondir@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "commondir@1.0.1", - "_id": "commondir@1.0.1", - "_inBundle": false, - "_integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "_location": "/babel-loader/commondir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "commondir@1.0.1", - "name": "commondir", - "escapedName": "commondir", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/babel-loader/find-cache-dir" - ], - "_resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "_spec": "1.0.1", - "_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/node-commondir/issues" - }, - "dependencies": {}, + "name": "commondir", + "version": "1.0.1", "description": "compute the closest common parent for file paths", + "main": "index.js", + "dependencies": {}, "devDependencies": { "tape": "^3.5.0" }, - "engine": { - "node": ">=0.4" + "scripts": { + "test": "tape test/*.js" + }, + "repository": { + "type": "git", + "url": "http://github.com/substack/node-commondir.git" }, - "homepage": "https://github.com/substack/node-commondir#readme", "keywords": [ "common", "path", @@ -52,15 +22,13 @@ "parent", "root" ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, "license": "MIT", - "main": "index.js", - "name": "commondir", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/substack/node-commondir.git" - }, - "scripts": { - "test": "tape test/*.js" - }, - "version": "1.0.1" + "engine": { + "node": ">=0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/emojis-list/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/emojis-list/package.json index 1b72ad79..328a1dbe 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/emojis-list/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/emojis-list/package.json @@ -1,41 +1,28 @@ { - "_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": "/babel-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" - }, - "_requiredBy": [ - "/babel-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", + "name": "emojis-list", + "description": "Complete list of standard emojis.", + "homepage": "https://github.com/Kikobeats/emojis-list", + "version": "2.1.0", + "main": "./index.js", "author": { - "name": "Kiko Beats", "email": "josefrancisco.verdu@gmail.com", + "name": "Kiko Beats", "url": "https://github.com/Kikobeats" }, + "repository": { + "type": "git", + "url": "git+https://github.com/kikobeats/emojis-list.git" + }, "bugs": { "url": "https://github.com/Kikobeats/emojis-list/issues" }, - "description": "Complete list of standard emojis.", + "keywords": [ + "archive", + "complete", + "emoji", + "list", + "standard" + ], "devDependencies": { "acho": "latest", "browserify": "latest", @@ -55,25 +42,10 @@ "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" }, - "version": "2.1.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/find-cache-dir/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/find-cache-dir/package.json index d5b0bce6..bf5a64db 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/find-cache-dir/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/find-cache-dir/package.json @@ -1,60 +1,23 @@ { - "_args": [ - [ - "find-cache-dir@1.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "find-cache-dir@1.0.0", - "_id": "find-cache-dir@1.0.0", - "_inBundle": false, - "_integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", - "_location": "/babel-loader/find-cache-dir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "find-cache-dir@1.0.0", - "name": "find-cache-dir", - "escapedName": "find-cache-dir", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/babel-loader" - ], - "_resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "find-cache-dir", + "version": "1.0.0", + "description": "My well-made module", + "license": "MIT", + "repository": "avajs/find-cache-dir", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "bugs": { - "url": "https://github.com/avajs/find-cache-dir/issues" - }, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^2.0.0" - }, - "description": "My well-made module", - "devDependencies": { - "ava": "^0.19.1", - "coveralls": "^2.11.6", - "del": "^2.2.2", - "nyc": "^10.3.2", - "xo": "^0.18.2" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && nyc ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/avajs/find-cache-dir#readme", "keywords": [ "cache", "directory", @@ -63,20 +26,22 @@ "find", "search" ], - "license": "MIT", - "name": "find-cache-dir", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^1.0.0", + "pkg-dir": "^2.0.0" + }, + "devDependencies": { + "ava": "^0.19.1", + "coveralls": "^2.11.6", + "del": "^2.2.2", + "nyc": "^10.3.2", + "xo": "^0.18.2" + }, "nyc": { "reporter": [ "lcov", "text" ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/avajs/find-cache-dir.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "1.0.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/find-up/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/find-up/package.json index 0b239df5..7ec85bb7 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/find-up/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/find-up/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "find-up@2.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "find-up@2.1.0", - "_id": "find-up@2.1.0", - "_inBundle": false, - "_integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "_location": "/babel-loader/find-up", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "find-up@2.1.0", - "name": "find-up", - "escapedName": "find-up", - "rawSpec": "2.1.0", - "saveSpec": null, - "fetchSpec": "2.1.0" - }, - "_requiredBy": [ - "/babel-loader/pkg-dir" - ], - "_resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "_spec": "2.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "find-up", + "version": "2.1.0", + "description": "Find a file by walking up parent directories", + "license": "MIT", + "repository": "sindresorhus/find-up", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/find-up/issues" - }, - "dependencies": { - "locate-path": "^2.0.0" - }, - "description": "Find a file by walking up parent directories", - "devDependencies": { - "ava": "*", - "tempfile": "^1.1.1", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/find-up#readme", "keywords": [ "find", "up", @@ -72,16 +39,14 @@ "walking", "path" ], - "license": "MIT", - "name": "find-up", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/find-up.git" + "dependencies": { + "locate-path": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "tempfile": "^1.1.1", + "xo": "*" }, - "version": "2.1.0", "xo": { "esnext": true } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/json5/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/json5/package.json index 8ae902fb..44059b49 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/json5/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/json5/package.json @@ -1,83 +1,38 @@ { - "_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": "/babel-loader/json5", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "json5@0.5.1", "name": "json5", - "escapedName": "json5", - "rawSpec": "0.5.1", - "saveSpec": null, - "fetchSpec": "0.5.1" - }, - "_requiredBy": [ - "/babel-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" + "version": "0.5.1", + "description": "JSON for the ES5 era.", + "keywords": [ + "json", + "es5" + ], + "author": "Aseem Kishore ", + "contributors": [ + "Max Nanasy ", + "Andrew Eisenberg ", + "Jordan Tucker " + ], + "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" }, - { - "name": "Andrew Eisenberg", - "email": "andrew@eisenberg.as" + "scripts": { + "build": "node ./lib/cli.js -c package.json5", + "test": "mocha --ui exports --reporter spec" }, - { - "name": "Jordan Tucker", - "email": "jordanbtucker@gmail.com" + "homepage": "http://json5.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/aseemk/json5.git" } - ], - "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" -} +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/loader-utils/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/loader-utils/package.json index 2e1e5ad2..a547e234 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/loader-utils/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/loader-utils/package.json @@ -1,44 +1,29 @@ { - "_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": "/babel-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": [ - "/babel-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" - }, + "name": "loader-utils", + "version": "1.1.0", + "author": "Tobias Koppers @sokra", + "description": "utils for webpack loaders", "dependencies": { "big.js": "^3.1.3", "emojis-list": "^2.0.0", "json5": "^0.5.0" }, - "description": "utils for webpack loaders", + "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" + }, "devDependencies": { "coveralls": "^2.11.2", "eslint": "^3.15.0", @@ -47,27 +32,8 @@ "mocha": "^1.21.4", "standard-version": "^4.0.0" }, - "engines": { - "node": ">=4.0.0" - }, + "main": "lib/index.js", "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" + ] } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/locate-path/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/locate-path/package.json index 1763fdde..17bcd7ff 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/locate-path/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/locate-path/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "locate-path@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "locate-path@2.0.0", - "_id": "locate-path@2.0.0", - "_inBundle": false, - "_integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "_location": "/babel-loader/locate-path", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "locate-path@2.0.0", - "name": "locate-path", - "escapedName": "locate-path", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-loader/find-up" - ], - "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "locate-path", + "version": "2.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "license": "MIT", + "repository": "sindresorhus/locate-path", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/locate-path/issues" - }, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "description": "Get the first path that exists on disk of multiple paths", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/locate-path#readme", "keywords": [ "locate", "path", @@ -66,16 +33,14 @@ "iterable", "iterator" ], - "license": "MIT", - "name": "locate-path", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/locate-path.git" + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "version": "2.0.0", "xo": { "esnext": true } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/make-dir/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/make-dir/package.json index 1ee68a4a..2a501da2 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/make-dir/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/make-dir/package.json @@ -1,89 +1,54 @@ { - "_args": [ - [ - "make-dir@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "make-dir@1.1.0", - "_id": "make-dir@1.1.0", - "_inBundle": false, - "_integrity": "sha512-0Pkui4wLJ7rxvmfUvs87skoEaxmu0hCUApF8nonzpl7q//FWp9zu8W61Scz4sd/kUiqDxvUhtoam2efDyiBzcA==", - "_location": "/babel-loader/make-dir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "make-dir@1.1.0", - "name": "make-dir", - "escapedName": "make-dir", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/babel-loader/find-cache-dir" - ], - "_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-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/make-dir/issues" - }, - "dependencies": { - "pify": "^3.0.0" - }, - "description": "Make a directory and its parents if needed - Think `mkdir -p`", - "devDependencies": { - "ava": "*", - "codecov": "^2.1.0", - "graceful-fs": "^4.1.11", - "nyc": "^10.2.0", - "path-type": "^3.0.0", - "tempy": "^0.2.1", - "xo": "*" - }, - "engines": { - "node": ">=4" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/sindresorhus/make-dir#readme", - "keywords": [ - "mkdir", - "mkdirp", - "make", - "directories", - "dir", - "dirs", - "folders", - "directory", - "folder", - "path", - "parent", - "parents", - "intermediate", - "recursively", - "recursive", - "create", - "fs", - "filesystem", - "file-system" - ], - "license": "MIT", - "name": "make-dir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/make-dir.git" - }, - "scripts": { - "test": "xo && nyc ava" - }, - "version": "1.1.0" + "name": "make-dir", + "version": "1.1.0", + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "license": "MIT", + "repository": "sindresorhus/make-dir", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "engines": { + "node": ">=4" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js" + ], + "keywords": [ + "mkdir", + "mkdirp", + "make", + "directories", + "dir", + "dirs", + "folders", + "directory", + "folder", + "path", + "parent", + "parents", + "intermediate", + "recursively", + "recursive", + "create", + "fs", + "filesystem", + "file-system" + ], + "dependencies": { + "pify": "^3.0.0" + }, + "devDependencies": { + "ava": "*", + "codecov": "^2.1.0", + "graceful-fs": "^4.1.11", + "nyc": "^10.2.0", + "path-type": "^3.0.0", + "tempy": "^0.2.1", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/minimist/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/minimist/package.json index af3f748c..af6250bd 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/minimist/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/minimist/package.json @@ -1,74 +1,40 @@ { - "_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": "/babel-loader/minimist", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "minimist@0.0.8", "name": "minimist", - "escapedName": "minimist", - "rawSpec": "0.0.8", - "saveSpec": null, - "fetchSpec": "0.0.8" - }, - "_requiredBy": [ - "/babel-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" + "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" } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/mkdirp/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/mkdirp/package.json index bfe9a112..863e860d 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/mkdirp/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/mkdirp/package.json @@ -1,65 +1,27 @@ { - "_args": [ - [ - "mkdirp@0.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "mkdirp@0.5.1", - "_id": "mkdirp@0.5.1", - "_inBundle": false, - "_integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "_location": "/babel-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" - }, - "_requiredBy": [ - "/babel-loader" - ], - "_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" - }, + "name": "mkdirp", "description": "Recursively mkdir, like `mkdir -p`", - "devDependencies": { - "mock-fs": "2 >=2.7.0", - "tap": "1" - }, - "homepage": "https://github.com/substack/node-mkdirp#readme", + "version": "0.5.1", + "author": "James Halliday (http://substack.net)", + "main": "index.js", "keywords": [ "mkdir", "directory" ], - "license": "MIT", - "main": "index.js", - "name": "mkdirp", "repository": { "type": "git", - "url": "git+https://github.com/substack/node-mkdirp.git" + "url": "https://github.com/substack/node-mkdirp.git" }, "scripts": { "test": "tap test/*.js" }, - "version": "0.5.1" + "dependencies": { + "minimist": "0.0.8" + }, + "devDependencies": { + "tap": "1", + "mock-fs": "2 >=2.7.0" + }, + "bin": "bin/cmd.js", + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/p-limit/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/p-limit/package.json index b5d1f994..697bfcd4 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/p-limit/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/p-limit/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "p-limit@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "p-limit@1.1.0", - "_id": "p-limit@1.1.0", - "_inBundle": false, - "_integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=", - "_location": "/babel-loader/p-limit", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-limit@1.1.0", - "name": "p-limit", - "escapedName": "p-limit", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/babel-loader/p-locate" - ], - "_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "p-limit", + "version": "1.1.0", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "license": "MIT", + "repository": "sindresorhus/p-limit", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-limit/issues" - }, - "description": "Run multiple promise-returning & async functions with limited concurrency", - "devDependencies": { - "ava": "*", - "delay": "^1.3.1", - "in-range": "^1.0.0", - "random-int": "^1.0.0", - "time-span": "^1.0.0", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/p-limit#readme", "keywords": [ "promise", "limit", @@ -68,16 +35,14 @@ "promises", "bluebird" ], - "license": "MIT", - "name": "p-limit", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-limit.git" + "devDependencies": { + "ava": "*", + "delay": "^1.3.1", + "in-range": "^1.0.0", + "random-int": "^1.0.0", + "time-span": "^1.0.0", + "xo": "*" }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.1.0", "xo": { "esnext": true } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/p-locate/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/p-locate/package.json index 1e696521..767002b3 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/p-locate/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/p-locate/package.json @@ -1,58 +1,23 @@ { - "_args": [ - [ - "p-locate@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "p-locate@2.0.0", - "_id": "p-locate@2.0.0", - "_inBundle": false, - "_integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "_location": "/babel-loader/p-locate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "p-locate@2.0.0", - "name": "p-locate", - "escapedName": "p-locate", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-loader/locate-path" - ], - "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "p-locate", + "version": "2.0.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "license": "MIT", + "repository": "sindresorhus/p-locate", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/p-locate/issues" - }, - "dependencies": { - "p-limit": "^1.1.0" - }, - "description": "Get the first fulfilled promise that satisfies the provided testing function", - "devDependencies": { - "ava": "*", - "delay": "^1.3.1", - "in-range": "^1.0.0", - "time-span": "^1.0.0", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/p-locate#readme", "keywords": [ "promise", "locate", @@ -73,16 +38,16 @@ "promises", "bluebird" ], - "license": "MIT", - "name": "p-locate", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/p-locate.git" + "dependencies": { + "p-limit": "^1.1.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "delay": "^1.3.1", + "in-range": "^1.0.0", + "time-span": "^1.0.0", + "xo": "*" }, - "version": "2.0.0", "xo": { "esnext": true } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/path-exists/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/path-exists/package.json index 7a11bb8f..efd56267 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/path-exists/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/path-exists/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "path-exists@3.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "path-exists@3.0.0", - "_id": "path-exists@3.0.0", - "_inBundle": false, - "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "_location": "/babel-loader/path-exists", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "path-exists@3.0.0", - "name": "path-exists", - "escapedName": "path-exists", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/babel-loader/locate-path" - ], - "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "path-exists", + "version": "3.0.0", + "description": "Check if a path exists", + "license": "MIT", + "repository": "sindresorhus/path-exists", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/path-exists/issues" - }, - "description": "Check if a path exists", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/path-exists#readme", "keywords": [ "path", "exists", @@ -59,16 +30,10 @@ "access", "stat" ], - "license": "MIT", - "name": "path-exists", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/path-exists.git" + "devDependencies": { + "ava": "*", + "xo": "*" }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.0", "xo": { "esnext": true } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/pify/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/pify/package.json index a513b164..468d8576 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/pify/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/pify/package.json @@ -1,54 +1,24 @@ { - "_args": [ - [ - "pify@3.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "pify@3.0.0", - "_id": "pify@3.0.0", - "_inBundle": false, - "_integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "_location": "/babel-loader/pify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pify@3.0.0", - "name": "pify", - "escapedName": "pify", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/babel-loader/make-dir" - ], - "_resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "pify", + "version": "3.0.0", + "description": "Promisify a callback-style function", + "license": "MIT", + "repository": "sindresorhus/pify", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/pify/issues" - }, - "description": "Promisify a callback-style function", - "devDependencies": { - "ava": "*", - "pinkie-promise": "^2.0.0", - "v8-natives": "^1.0.0", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava && npm run optimization-test", + "optimization-test": "node --allow-natives-syntax optimization-test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/pify#readme", "keywords": [ "promise", "promises", @@ -72,15 +42,10 @@ "es2015", "bluebird" ], - "license": "MIT", - "name": "pify", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pify.git" - }, - "scripts": { - "optimization-test": "node --allow-natives-syntax optimization-test.js", - "test": "xo && ava && npm run optimization-test" - }, - "version": "3.0.0" + "devDependencies": { + "ava": "*", + "pinkie-promise": "^2.0.0", + "v8-natives": "^1.0.0", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-loader/node_modules/pkg-dir/package.json b/goTorrentWebUI/node_modules/babel-loader/node_modules/pkg-dir/package.json index d669c556..2bb7277c 100644 --- a/goTorrentWebUI/node_modules/babel-loader/node_modules/pkg-dir/package.json +++ b/goTorrentWebUI/node_modules/babel-loader/node_modules/pkg-dir/package.json @@ -1,55 +1,23 @@ { - "_args": [ - [ - "pkg-dir@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "pkg-dir@2.0.0", - "_id": "pkg-dir@2.0.0", - "_inBundle": false, - "_integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "_location": "/babel-loader/pkg-dir", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "pkg-dir@2.0.0", - "name": "pkg-dir", - "escapedName": "pkg-dir", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-loader/find-cache-dir" - ], - "_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "pkg-dir", + "version": "2.0.0", + "description": "Find the root directory of a Node.js project or npm package", + "license": "MIT", + "repository": "sindresorhus/pkg-dir", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/pkg-dir/issues" - }, - "dependencies": { - "find-up": "^2.1.0" - }, - "description": "Find the root directory of a Node.js project or npm package", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=4" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/pkg-dir#readme", "keywords": [ "package", "json", @@ -75,14 +43,11 @@ "walking", "path" ], - "license": "MIT", - "name": "pkg-dir", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/pkg-dir.git" + "dependencies": { + "find-up": "^2.1.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.0.0" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-regex/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-regex/package.json index b4832f73..eb44fb5c 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-regex/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-regex/package.json @@ -1,53 +1,29 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/has-ansi", - "/babel-plugin-transform-class-properties/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", + "name": "ansi-regex", + "version": "2.1.1", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "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" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -75,34 +51,10 @@ "find", "pattern" ], - "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" + "devDependencies": { + "ava": "0.17.0", + "xo": "0.16.0" }, - "scripts": { - "test": "xo && ava --verbose", - "view-supported": "node fixtures/view-codes.js" - }, - "version": "2.1.1", "xo": { "rules": { "guard-for-in": 0, diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-styles/package.json index 4d873c42..78c535f7 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ansi-styles/package.json @@ -1,51 +1,27 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/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", + "name": "ansi-styles", + "version": "2.2.1", + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "mocha": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -68,26 +44,7 @@ "command-line", "text" ], - "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" + "devDependencies": { + "mocha": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-code-frame/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-code-frame/package.json index 4791d97c..7cf9346c 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-code-frame/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-code-frame/package.json @@ -1,49 +1,15 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_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" - }, + "name": "babel-code-frame", + "version": "6.26.0", + "description": "Generate errors that contain a code frame that point to source locations.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "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" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-function-name/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-function-name/package.json index eb70c017..905b401f 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-function-name/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-function-name/package.json @@ -1,46 +1,15 @@ { - "_args": [ - [ - "babel-helper-function-name@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-function-name@6.24.1", - "_id": "babel-helper-function-name@6.24.1", - "_inBundle": false, - "_integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", - "_location": "/babel-plugin-transform-class-properties/babel-helper-function-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-function-name@6.24.1", - "name": "babel-helper-function-name", - "escapedName": "babel-helper-function-name", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, + "name": "babel-helper-function-name", + "version": "6.24.1", "description": "Helper function to change the property 'name' of every function", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name", "license": "MIT", "main": "lib/index.js", - "name": "babel-helper-function-name", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" - }, - "version": "6.24.1" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-helper-get-function-arity": "^6.24.1", + "babel-template": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-get-function-arity/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-get-function-arity/package.json index 40566df0..d12fb37a 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-get-function-arity/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-helper-get-function-arity/package.json @@ -1,43 +1,12 @@ { - "_args": [ - [ - "babel-helper-get-function-arity@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-get-function-arity@6.24.1", - "_id": "babel-helper-get-function-arity@6.24.1", - "_inBundle": false, - "_integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", - "_location": "/babel-plugin-transform-class-properties/babel-helper-get-function-arity", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-get-function-arity@6.24.1", - "name": "babel-helper-get-function-arity", - "escapedName": "babel-helper-get-function-arity", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-helper-function-name" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-get-function-arity", + "version": "6.24.1", + "description": "Helper function to get function arity", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" - }, - "description": "Helper function to get function arity", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-get-function-arity", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-messages/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-messages/package.json index 7e2470b3..348dc5ee 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-messages/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-messages/package.json @@ -1,47 +1,13 @@ { - "_args": [ - [ - "babel-messages@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-messages@6.23.0", - "_id": "babel-messages@6.23.0", - "_inBundle": false, - "_integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "_location": "/babel-plugin-transform-class-properties/babel-messages", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-messages@6.23.0", - "name": "babel-messages", - "escapedName": "babel-messages", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-messages", + "version": "6.23.0", "description": "Collection of debug messages used by Babel.", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-messages", "main": "lib/index.js", - "name": "babel-messages", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-messages" - }, - "version": "6.23.0" + "dependencies": { + "babel-runtime": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-plugin-syntax-class-properties/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-plugin-syntax-class-properties/package.json index 20359c1f..5882a28e 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-plugin-syntax-class-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-plugin-syntax-class-properties/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-plugin-syntax-class-properties@6.13.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-class-properties@6.13.0", - "_id": "babel-plugin-syntax-class-properties@6.13.0", - "_inBundle": false, - "_integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=", - "_location": "/babel-plugin-transform-class-properties/babel-plugin-syntax-class-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-class-properties@6.13.0", - "name": "babel-plugin-syntax-class-properties", - "escapedName": "babel-plugin-syntax-class-properties", - "rawSpec": "6.13.0", - "saveSpec": null, - "fetchSpec": "6.13.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", - "_spec": "6.13.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-class-properties", + "version": "6.13.0", "description": "Allow parsing of class properties", - "devDependencies": {}, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-class-properties", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties" - }, - "version": "6.13.0" + "dependencies": {}, + "devDependencies": {} } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-runtime/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-runtime/package.json index 705b8d7d..c17eb9a3 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-runtime/package.json @@ -1,56 +1,16 @@ { - "_args": [ - [ - "babel-runtime@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-runtime@6.26.0", - "_id": "babel-runtime@6.26.0", - "_inBundle": false, - "_integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "_location": "/babel-plugin-transform-class-properties/babel-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-runtime@6.26.0", - "name": "babel-runtime", - "escapedName": "babel-runtime", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties", - "/babel-plugin-transform-class-properties/babel-helper-function-name", - "/babel-plugin-transform-class-properties/babel-helper-get-function-arity", - "/babel-plugin-transform-class-properties/babel-messages", - "/babel-plugin-transform-class-properties/babel-template", - "/babel-plugin-transform-class-properties/babel-traverse", - "/babel-plugin-transform-class-properties/babel-types" - ], - "_resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-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" - }, + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", + "author": "Sebastian McKenzie ", "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" }, - "description": "babel selfContained runtime", "devDependencies": { "babel-helpers": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0" - }, - "license": "MIT", - "name": "babel-runtime", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-template/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-template/package.json index 7cf5d8db..81eab1ca 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-template/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-template/package.json @@ -1,52 +1,17 @@ { - "_args": [ - [ - "babel-template@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-template@6.26.0", - "_id": "babel-template@6.26.0", - "_inBundle": false, - "_integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "_location": "/babel-plugin-transform-class-properties/babel-template", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-template@6.26.0", - "name": "babel-template", - "escapedName": "babel-template", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties", - "/babel-plugin-transform-class-properties/babel-helper-function-name" - ], - "_resolved": "https://registry.npmjs.org/babel-template/-/babel-template-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" - }, + "name": "babel-template", + "version": "6.26.0", + "description": "Generate an AST from a string template.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "babel-traverse": "^6.26.0", "babel-types": "^6.26.0", "babylon": "^6.18.0", "lodash": "^4.17.4" - }, - "description": "Generate an AST from a string template.", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-template", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-traverse/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-traverse/package.json index 2779d831..2f71a4ad 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-traverse/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-traverse/package.json @@ -1,37 +1,12 @@ { - "_args": [ - [ - "babel-traverse@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-traverse@6.26.0", - "_id": "babel-traverse@6.26.0", - "_inBundle": false, - "_integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "_location": "/babel-plugin-transform-class-properties/babel-traverse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-traverse@6.26.0", - "name": "babel-traverse", - "escapedName": "babel-traverse", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-helper-function-name", - "/babel-plugin-transform-class-properties/babel-template" - ], - "_resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-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" - }, + "name": "babel-traverse", + "version": "6.26.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "babel-code-frame": "^6.26.0", "babel-messages": "^6.23.0", @@ -43,17 +18,7 @@ "invariant": "^2.2.2", "lodash": "^4.17.4" }, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "babel-generator": "^6.26.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-traverse", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-types/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-types/package.json index 61546170..e93188af 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-types/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babel-types/package.json @@ -1,57 +1,20 @@ { - "_args": [ - [ - "babel-types@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-types@6.26.0", - "_id": "babel-types@6.26.0", - "_inBundle": false, - "_integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "_location": "/babel-plugin-transform-class-properties/babel-types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-types@6.26.0", - "name": "babel-types", - "escapedName": "babel-types", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-helper-function-name", - "/babel-plugin-transform-class-properties/babel-helper-get-function-arity", - "/babel-plugin-transform-class-properties/babel-template", - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babel-types/-/babel-types-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" - }, + "name": "babel-types", + "version": "6.26.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "esutils": "^2.0.2", "lodash": "^4.17.4", "to-fast-properties": "^1.0.3" }, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "babel-generator": "^6.26.0", "babylon": "^6.18.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-types", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babylon/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babylon/package.json index 09e93808..4023a24b 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babylon/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/babylon/package.json @@ -1,53 +1,22 @@ { - "_args": [ - [ - "babylon@6.18.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babylon@6.18.0", - "_id": "babylon@6.18.0", - "_inBundle": false, - "_integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", - "_location": "/babel-plugin-transform-class-properties/babylon", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babylon@6.18.0", - "name": "babylon", - "escapedName": "babylon", - "rawSpec": "6.18.0", - "saveSpec": null, - "fetchSpec": "6.18.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-template", - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "_spec": "6.18.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "ava": { - "files": [ - "test/*.js" - ], - "source": [ - "src/**/*.js", - "bin/**/*.js" - ] - }, - "bin": { - "babylon": "./bin/babylon.js" - }, - "bugs": { - "url": "https://github.com/babel/babylon/issues" - }, + "name": "babylon", + "version": "6.18.0", "description": "A JavaScript parser", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "keywords": [ + "babel", + "javascript", + "parser", + "babylon" + ], + "repository": "https://github.com/babel/babylon", + "main": "lib/index.js", + "files": [ + "bin", + "lib" + ], "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.14.0", @@ -73,25 +42,23 @@ "rollup-watch": "^3.2.2", "unicode-9.0.0": "~0.7.0" }, - "files": [ - "bin", - "lib" - ], - "greenkeeper": { - "ignore": [ - "cross-env" - ] + "bin": { + "babylon": "./bin/babylon.js" + }, + "scripts": { + "build": "npm run clean && rollup -c", + "coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json", + "lint": "eslint src bin", + "clean": "rimraf lib", + "flow": "flow", + "prepublish": "cross-env BABEL_ENV=production npm run build", + "preversion": "npm run test && npm run changelog", + "test": "npm run lint && npm run flow && npm run build -- -m && npm run test-only", + "test-only": "ava", + "test-ci": "nyc npm run test-only", + "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'", + "watch": "npm run clean && rollup -c --watch" }, - "homepage": "https://babeljs.io/", - "keywords": [ - "babel", - "javascript", - "parser", - "babylon" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babylon", "nyc": { "include": [ "src/**/*.js", @@ -100,23 +67,18 @@ "sourceMap": false, "instrument": false }, - "repository": { - "type": "git", - "url": "git+https://github.com/babel/babylon.git" + "ava": { + "files": [ + "test/*.js" + ], + "source": [ + "src/**/*.js", + "bin/**/*.js" + ] }, - "scripts": { - "build": "npm run clean && rollup -c", - "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'", - "clean": "rimraf lib", - "coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json", - "flow": "flow", - "lint": "eslint src bin", - "prepublish": "cross-env BABEL_ENV=production npm run build", - "preversion": "npm run test && npm run changelog", - "test": "npm run lint && npm run flow && npm run build -- -m && npm run test-only", - "test-ci": "nyc npm run test-only", - "test-only": "ava", - "watch": "npm run clean && rollup -c --watch" - }, - "version": "6.18.0" + "greenkeeper": { + "ignore": [ + "cross-env" + ] + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/chalk/package.json index 2a931ff7..2b5881e9 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/chalk/package.json @@ -1,60 +1,26 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/babel-code-frame" - ], - "_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" - }, + "name": "chalk", + "version": "1.1.3", "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": "*" - }, + "license": "MIT", + "repository": "chalk/chalk", + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -78,36 +44,23 @@ "command-line", "text" ], - "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" + "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" }, - "scripts": { - "bench": "matcha benchmark.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "test": "xo && mocha" + "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": "*" }, - "version": "1.1.3", "xo": { "envs": [ "node", diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/core-js/package.json index c9d8aff6..444bafff 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/core-js/package.json @@ -1,62 +1,45 @@ { - "_args": [ - [ - "core-js@2.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@2.5.1", - "_id": "core-js@2.5.1", - "_inBundle": false, - "_integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", - "_location": "/babel-plugin-transform-class-properties/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@2.5.1", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", - "_spec": "2.5.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "2.5.1", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "3.5.x", "LiveScript": "1.3.x", + "grunt": "1.0.x", + "grunt-cli": "1.2.x", + "grunt-livescript": "0.6.x", + "grunt-contrib-uglify": "3.0.x", + "grunt-contrib-watch": "1.0.x", + "grunt-contrib-clean": "1.1.x", + "grunt-contrib-copy": "1.0.x", + "grunt-karma": "2.0.x", + "karma": "1.7.x", + "karma-qunit": "1.2.x", + "karma-chrome-launcher": "2.2.x", + "karma-ie-launcher": "1.0.x", + "karma-firefox-launcher": "1.0.x", + "karma-phantomjs-launcher": "1.0.x", + "qunitjs": "2.4.x", + "phantomjs-prebuilt": "2.1.x", + "promises-aplus-tests": "2.1.x", "es-observable-tests": "0.2.x", "eslint": "4.5.x", "eslint-plugin-import": "2.7.x", - "grunt": "1.0.x", - "grunt-cli": "1.2.x", - "grunt-contrib-clean": "1.1.x", - "grunt-contrib-copy": "1.0.x", - "grunt-contrib-uglify": "3.0.x", - "grunt-contrib-watch": "1.0.x", - "grunt-karma": "2.0.x", - "grunt-livescript": "0.6.x", - "karma": "1.7.x", - "karma-chrome-launcher": "2.2.x", - "karma-firefox-launcher": "1.0.x", - "karma-ie-launcher": "1.0.x", - "karma-phantomjs-launcher": "1.0.x", - "karma-qunit": "1.2.x", - "phantomjs-prebuilt": "2.1.x", - "promises-aplus-tests": "2.1.x", - "qunitjs": "2.4.x", - "temp": "0.8.x", - "webpack": "3.5.x" + "temp": "0.8.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint ./", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", + "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES3", "ES5", @@ -85,20 +68,5 @@ "Dict", "polyfill", "shim" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint ./", - "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" - }, - "version": "2.5.1" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/debug/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/debug/package.json index d171f4f8..dc787ba7 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/debug/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/debug/package.json @@ -1,61 +1,25 @@ { - "_args": [ - [ - "debug@2.6.9", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "debug", + "version": "2.6.9", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" ], - "_from": "debug@2.6.9", - "_id": "debug@2.6.9", - "_inBundle": false, - "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "_location": "/babel-plugin-transform-class-properties/debug", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "debug@2.6.9", - "name": "debug", - "escapedName": "debug", - "rawSpec": "2.6.9", - "saveSpec": null, - "fetchSpec": "2.6.9" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "_spec": "2.6.9", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" - }, - "component": { - "scripts": { - "debug/index.js": "browser.js", - "debug/debug.js": "debug.js" - } - }, + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", "dependencies": { "ms": "2.0.0" }, - "description": "small debugging utility", "devDependencies": { "browserify": "9.0.3", "chai": "^3.5.0", @@ -74,18 +38,12 @@ "sinon": "^1.17.6", "sinon-chai": "^2.8.0" }, - "homepage": "https://github.com/visionmedia/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", "main": "./src/index.js", - "name": "debug", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/debug.git" - }, - "version": "2.6.9" + "browser": "./src/browser.js", + "component": { + "scripts": { + "debug/index.js": "browser.js", + "debug/debug.js": "debug.js" + } + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/escape-string-regexp/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/escape-string-regexp/package.json index 203e5151..f307df34 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/escape-string-regexp/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/escape-string-regexp/package.json @@ -1,52 +1,27 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/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", + "name": "escape-string-regexp", + "version": "1.0.5", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -59,26 +34,8 @@ "special", "characters" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/esutils/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/esutils/package.json index 700ab689..ddce20bf 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/esutils/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/esutils/package.json @@ -1,37 +1,31 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/babel-code-frame", - "/babel-plugin-transform-class-properties/babel-types" - ], - "_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" - }, + "name": "esutils", "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", @@ -40,42 +34,16 @@ "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": { - "generate-regex": "node tools/generate-identifier-regex.js", - "lint": "jshint lib/*.js", "test": "npm run-script lint && npm run-script unit-test", - "unit-test": "mocha --compilers coffee:coffee-script -R spec" - }, - "version": "2.0.2" + "lint": "jshint lib/*.js", + "unit-test": "mocha --compilers coffee:coffee-script -R spec", + "generate-regex": "node tools/generate-identifier-regex.js" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/globals/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/globals/package.json index 13b25a98..410c0765 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/globals/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/globals/package.json @@ -1,52 +1,24 @@ { - "_args": [ - [ - "globals@9.18.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "globals@9.18.0", - "_id": "globals@9.18.0", - "_inBundle": false, - "_integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", - "_location": "/babel-plugin-transform-class-properties/globals", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "globals@9.18.0", - "name": "globals", - "escapedName": "globals", - "rawSpec": "9.18.0", - "saveSpec": null, - "fetchSpec": "9.18.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "_spec": "9.18.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "globals", + "version": "9.18.0", + "description": "Global identifiers from different JavaScript environments", + "license": "MIT", + "repository": "sindresorhus/globals", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "http://sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/globals/issues" - }, - "description": "Global identifiers from different JavaScript environments", - "devDependencies": { - "mocha": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js", "globals.json" ], - "homepage": "https://github.com/sindresorhus/globals#readme", "keywords": [ "globals", "global", @@ -57,14 +29,7 @@ "eslint", "environments" ], - "license": "MIT", - "name": "globals", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globals.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "9.18.0" + "devDependencies": { + "mocha": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/has-ansi/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/has-ansi/package.json index 2514c334..01e08d4f 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/has-ansi/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/has-ansi/package.json @@ -1,54 +1,27 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/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", + "name": "has-ansi", + "version": "2.0.0", + "description": "Check if a string has ANSI escape codes", + "license": "MIT", + "repository": "sindresorhus/has-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.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" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-ansi#readme", "keywords": [ "ansi", "styles", @@ -73,26 +46,10 @@ "pattern", "has" ], - "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" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "node test.js" - }, - "version": "2.0.0" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/invariant/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/invariant/package.json index 0729fc7e..e4b96722 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/invariant/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/invariant/package.json @@ -1,73 +1,35 @@ { - "_args": [ - [ - "invariant@2.2.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "invariant@2.2.2", - "_id": "invariant@2.2.2", - "_inBundle": false, - "_integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", - "_location": "/babel-plugin-transform-class-properties/invariant", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "invariant@2.2.2", - "name": "invariant", - "escapedName": "invariant", - "rawSpec": "2.2.2", - "saveSpec": null, - "fetchSpec": "2.2.2" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", - "_spec": "2.2.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andres Suarez", - "email": "zertosh@gmail.com" - }, - "browser": "browser.js", - "browserify": { - "transform": [ - "loose-envify" - ] - }, - "bugs": { - "url": "https://github.com/zertosh/invariant/issues" - }, - "dependencies": { - "loose-envify": "^1.0.0" - }, + "name": "invariant", + "version": "2.2.2", "description": "invariant", - "devDependencies": { - "browserify": "^11.0.1", - "flow-bin": "^0.35.0", - "tap": "^1.4.0" - }, - "files": [ - "browser.js", - "invariant.js", - "invariant.js.flow" - ], - "homepage": "https://github.com/zertosh/invariant#readme", "keywords": [ "test", "invariant" ], "license": "BSD-3-Clause", - "main": "invariant.js", - "name": "invariant", - "repository": { - "type": "git", - "url": "git+https://github.com/zertosh/invariant.git" - }, + "author": "Andres Suarez ", + "files": [ + "browser.js", + "invariant.js", + "invariant.js.flow" + ], + "repository": "https://github.com/zertosh/invariant", "scripts": { "test": "NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js" }, - "version": "2.2.2" + "dependencies": { + "loose-envify": "^1.0.0" + }, + "devDependencies": { + "browserify": "^11.0.1", + "flow-bin": "^0.35.0", + "tap": "^1.4.0" + }, + "main": "invariant.js", + "browser": "browser.js", + "browserify": { + "transform": [ + "loose-envify" + ] + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/js-tokens/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/js-tokens/package.json index 79de7594..7f5bd780 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/js-tokens/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/js-tokens/package.json @@ -1,50 +1,9 @@ { - "_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": "/babel-plugin-transform-class-properties/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": [ - "/babel-plugin-transform-class-properties/babel-code-frame", - "/babel-plugin-transform-class-properties/loose-envify" - ], - "_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" - }, + "name": "js-tokens", + "version": "3.0.2", + "author": "Simon Lydell", + "license": "MIT", "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", @@ -52,17 +11,20 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "3.0.2" + "devDependencies": { + "coffee-script": "~1.12.6", + "esprima": "^4.0.0", + "everything.js": "^1.0.3", + "mocha": "^3.4.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/lodash/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/lodash/package.json index 488c1d8c..028960d1 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/lodash/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/lodash/package.json @@ -1,71 +1,17 @@ { - "_args": [ - [ - "lodash@4.17.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "lodash@4.17.4", - "_id": "lodash@4.17.4", - "_inBundle": false, - "_integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", - "_location": "/babel-plugin-transform-class-properties/lodash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash@4.17.4", - "name": "lodash", - "escapedName": "lodash", - "rawSpec": "4.17.4", - "saveSpec": null, - "fetchSpec": "4.17.4" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-template", - "/babel-plugin-transform-class-properties/babel-traverse", - "/babel-plugin-transform-class-properties/babel-types" - ], - "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "_spec": "4.17.4", - "_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": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash", + "version": "4.17.4", "description": "Lodash modular utilities.", + "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", + "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "modules", - "stdlib", - "util" - ], "license": "MIT", "main": "lodash.js", - "name": "lodash", - "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.17.4" + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/loose-envify/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/loose-envify/package.json index 87eeaee7..7952efa5 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/loose-envify/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/loose-envify/package.json @@ -1,52 +1,7 @@ { - "_args": [ - [ - "loose-envify@1.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "loose-envify@1.3.1", - "_id": "loose-envify@1.3.1", - "_inBundle": false, - "_integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", - "_location": "/babel-plugin-transform-class-properties/loose-envify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "loose-envify@1.3.1", - "name": "loose-envify", - "escapedName": "loose-envify", - "rawSpec": "1.3.1", - "saveSpec": null, - "fetchSpec": "1.3.1" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/invariant" - ], - "_resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "_spec": "1.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andres Suarez", - "email": "zertosh@gmail.com" - }, - "bin": { - "loose-envify": "cli.js" - }, - "bugs": { - "url": "https://github.com/zertosh/loose-envify/issues" - }, - "dependencies": { - "js-tokens": "^3.0.0" - }, + "name": "loose-envify", + "version": "1.3.1", "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "devDependencies": { - "browserify": "^13.1.1", - "envify": "^3.4.0", - "tap": "^8.0.0" - }, - "homepage": "https://github.com/zertosh/loose-envify", "keywords": [ "environment", "variables", @@ -56,9 +11,13 @@ "source", "configuration" ], + "homepage": "https://github.com/zertosh/loose-envify", "license": "MIT", + "author": "Andres Suarez ", "main": "index.js", - "name": "loose-envify", + "bin": { + "loose-envify": "cli.js" + }, "repository": { "type": "git", "url": "git://github.com/zertosh/loose-envify.git" @@ -66,5 +25,12 @@ "scripts": { "test": "tap test/*.js" }, - "version": "1.3.1" + "dependencies": { + "js-tokens": "^3.0.0" + }, + "devDependencies": { + "browserify": "^13.1.1", + "envify": "^3.4.0", + "tap": "^8.0.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ms/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ms/package.json index 03b0079d..6a31c81f 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ms/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/ms/package.json @@ -1,42 +1,16 @@ { - "_args": [ - [ - "ms@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "ms@2.0.0", - "_id": "ms@2.0.0", - "_inBundle": false, - "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "_location": "/babel-plugin-transform-class-properties/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.0.0", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, + "name": "ms", + "version": "2.0.0", "description": "Tiny milisecond conversion utility", - "devDependencies": { - "eslint": "3.19.0", - "expect.js": "0.3.1", - "husky": "0.13.3", - "lint-staged": "3.4.1", - "mocha": "3.4.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -45,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -57,16 +26,12 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.0.0" + "license": "MIT", + "devDependencies": { + "eslint": "3.19.0", + "expect.js": "0.3.1", + "husky": "0.13.3", + "lint-staged": "3.4.1", + "mocha": "3.4.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/regenerator-runtime/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/regenerator-runtime/package.json index 472b0581..7dcf6c37 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/regenerator-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/regenerator-runtime/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "regenerator-runtime@0.11.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerator-runtime@0.11.0", - "_id": "regenerator-runtime@0.11.0", - "_inBundle": false, - "_integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "_location": "/babel-plugin-transform-class-properties/regenerator-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-runtime@0.11.0", - "name": "regenerator-runtime", - "escapedName": "regenerator-runtime", - "rawSpec": "0.11.0", - "saveSpec": null, - "fetchSpec": "0.11.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "_spec": "0.11.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "regenerator-runtime", + "author": "Ben Newman ", "description": "Runtime for Regenerator-compiled generator and async functions.", + "version": "0.11.0", + "main": "runtime-module.js", "keywords": [ "regenerator", "runtime", "generator", "async" ], - "license": "MIT", - "main": "runtime-module.js", - "name": "regenerator-runtime", "repository": { "type": "git", "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" }, - "version": "0.11.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/strip-ansi/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/strip-ansi/package.json index cb3500ab..301685ba 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/strip-ansi/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/strip-ansi/package.json @@ -1,55 +1,28 @@ { - "_args": [ - [ - "strip-ansi@3.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "strip-ansi@3.0.1", - "_id": "strip-ansi@3.0.1", - "_inBundle": false, - "_integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "_location": "/babel-plugin-transform-class-properties/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@3.0.1", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/chalk" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "strip-ansi", + "version": "3.0.1", + "description": "Strip ANSI escape codes", + "license": "MIT", + "repository": "chalk/strip-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "description": "Strip ANSI escape codes", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -74,31 +47,11 @@ "command-line", "text" ], - "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": "JD Ballard", - "email": "i.am.qix@gmail.com", - "url": "github.com/qix-" - } - ], - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.1" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/supports-color/package.json index a31222ed..3bb77ac1 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/supports-color/package.json @@ -1,52 +1,27 @@ { - "_args": [ - [ - "supports-color@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "supports-color@2.0.0", - "_id": "supports-color@2.0.0", - "_inBundle": false, - "_integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "_location": "/babel-plugin-transform-class-properties/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@2.0.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "supports-color", + "version": "2.0.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "mocha": "*", - "require-uncached": "^1.0.2" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -67,26 +42,8 @@ "capability", "detect" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Appelman", - "email": "jappelman@xebia.com", - "url": "jbnicolai.com" - } - ], - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "2.0.0" + "devDependencies": { + "mocha": "*", + "require-uncached": "^1.0.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/to-fast-properties/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/to-fast-properties/package.json index 0ce92ba1..f1028bd4 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/to-fast-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-class-properties/node_modules/to-fast-properties/package.json @@ -1,51 +1,23 @@ { - "_args": [ - [ - "to-fast-properties@1.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "to-fast-properties@1.0.3", - "_id": "to-fast-properties@1.0.3", - "_inBundle": false, - "_integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", - "_location": "/babel-plugin-transform-class-properties/to-fast-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "to-fast-properties@1.0.3", - "name": "to-fast-properties", - "escapedName": "to-fast-properties", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/babel-plugin-transform-class-properties/babel-types" - ], - "_resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "to-fast-properties", + "version": "1.0.3", + "description": "Force V8 to use fast properties for an object", + "license": "MIT", + "repository": "sindresorhus/to-fast-properties", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/to-fast-properties/issues" - }, - "description": "Force V8 to use fast properties for an object", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node --allow-natives-syntax test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/to-fast-properties#readme", "keywords": [ "object", "obj", @@ -57,14 +29,7 @@ "convert", "mode" ], - "license": "MIT", - "name": "to-fast-properties", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/to-fast-properties.git" - }, - "scripts": { - "test": "node --allow-natives-syntax test.js" - }, - "version": "1.0.3" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-plugin-syntax-object-rest-spread/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-plugin-syntax-object-rest-spread/package.json index 4f22a20a..15554cd3 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-plugin-syntax-object-rest-spread/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-plugin-syntax-object-rest-spread/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-plugin-syntax-object-rest-spread@6.13.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-object-rest-spread@6.13.0", - "_id": "babel-plugin-syntax-object-rest-spread@6.13.0", - "_inBundle": false, - "_integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=", - "_location": "/babel-plugin-transform-object-rest-spread/babel-plugin-syntax-object-rest-spread", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-object-rest-spread@6.13.0", - "name": "babel-plugin-syntax-object-rest-spread", - "escapedName": "babel-plugin-syntax-object-rest-spread", - "rawSpec": "6.13.0", - "saveSpec": null, - "fetchSpec": "6.13.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-object-rest-spread" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", - "_spec": "6.13.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-object-rest-spread", + "version": "6.13.0", "description": "Allow parsing of object rest/spread", - "devDependencies": {}, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-object-rest-spread", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread" - }, - "version": "6.13.0" + "dependencies": {}, + "devDependencies": {} } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-runtime/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-runtime/package.json index 71095e34..c17eb9a3 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/babel-runtime/package.json @@ -1,50 +1,16 @@ { - "_args": [ - [ - "babel-runtime@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-runtime@6.26.0", - "_id": "babel-runtime@6.26.0", - "_inBundle": false, - "_integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "_location": "/babel-plugin-transform-object-rest-spread/babel-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-runtime@6.26.0", - "name": "babel-runtime", - "escapedName": "babel-runtime", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-object-rest-spread" - ], - "_resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-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" - }, + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", + "author": "Sebastian McKenzie ", "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" }, - "description": "babel selfContained runtime", "devDependencies": { "babel-helpers": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0" - }, - "license": "MIT", - "name": "babel-runtime", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/core-js/package.json index 74d47984..444bafff 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/core-js/package.json @@ -1,62 +1,45 @@ { - "_args": [ - [ - "core-js@2.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@2.5.1", - "_id": "core-js@2.5.1", - "_inBundle": false, - "_integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", - "_location": "/babel-plugin-transform-object-rest-spread/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@2.5.1", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/babel-plugin-transform-object-rest-spread/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", - "_spec": "2.5.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "2.5.1", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "3.5.x", "LiveScript": "1.3.x", + "grunt": "1.0.x", + "grunt-cli": "1.2.x", + "grunt-livescript": "0.6.x", + "grunt-contrib-uglify": "3.0.x", + "grunt-contrib-watch": "1.0.x", + "grunt-contrib-clean": "1.1.x", + "grunt-contrib-copy": "1.0.x", + "grunt-karma": "2.0.x", + "karma": "1.7.x", + "karma-qunit": "1.2.x", + "karma-chrome-launcher": "2.2.x", + "karma-ie-launcher": "1.0.x", + "karma-firefox-launcher": "1.0.x", + "karma-phantomjs-launcher": "1.0.x", + "qunitjs": "2.4.x", + "phantomjs-prebuilt": "2.1.x", + "promises-aplus-tests": "2.1.x", "es-observable-tests": "0.2.x", "eslint": "4.5.x", "eslint-plugin-import": "2.7.x", - "grunt": "1.0.x", - "grunt-cli": "1.2.x", - "grunt-contrib-clean": "1.1.x", - "grunt-contrib-copy": "1.0.x", - "grunt-contrib-uglify": "3.0.x", - "grunt-contrib-watch": "1.0.x", - "grunt-karma": "2.0.x", - "grunt-livescript": "0.6.x", - "karma": "1.7.x", - "karma-chrome-launcher": "2.2.x", - "karma-firefox-launcher": "1.0.x", - "karma-ie-launcher": "1.0.x", - "karma-phantomjs-launcher": "1.0.x", - "karma-qunit": "1.2.x", - "phantomjs-prebuilt": "2.1.x", - "promises-aplus-tests": "2.1.x", - "qunitjs": "2.4.x", - "temp": "0.8.x", - "webpack": "3.5.x" + "temp": "0.8.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint ./", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", + "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES3", "ES5", @@ -85,20 +68,5 @@ "Dict", "polyfill", "shim" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint ./", - "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" - }, - "version": "2.5.1" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/regenerator-runtime/package.json b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/regenerator-runtime/package.json index c1eb3f14..7dcf6c37 100644 --- a/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/regenerator-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-plugin-transform-object-rest-spread/node_modules/regenerator-runtime/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "regenerator-runtime@0.11.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerator-runtime@0.11.0", - "_id": "regenerator-runtime@0.11.0", - "_inBundle": false, - "_integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "_location": "/babel-plugin-transform-object-rest-spread/regenerator-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-runtime@0.11.0", - "name": "regenerator-runtime", - "escapedName": "regenerator-runtime", - "rawSpec": "0.11.0", - "saveSpec": null, - "fetchSpec": "0.11.0" - }, - "_requiredBy": [ - "/babel-plugin-transform-object-rest-spread/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "_spec": "0.11.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "regenerator-runtime", + "author": "Ben Newman ", "description": "Runtime for Regenerator-compiled generator and async functions.", + "version": "0.11.0", + "main": "runtime-module.js", "keywords": [ "regenerator", "runtime", "generator", "async" ], - "license": "MIT", - "main": "runtime-module.js", - "name": "regenerator-runtime", "repository": { "type": "git", "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" }, - "version": "0.11.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-regex/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-regex/package.json index 9aa953b6..eb44fb5c 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-regex/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-regex/package.json @@ -1,53 +1,29 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/has-ansi", - "/babel-preset-env/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", + "name": "ansi-regex", + "version": "2.1.1", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "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" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -75,34 +51,10 @@ "find", "pattern" ], - "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" + "devDependencies": { + "ava": "0.17.0", + "xo": "0.16.0" }, - "scripts": { - "test": "xo && ava --verbose", - "view-supported": "node fixtures/view-codes.js" - }, - "version": "2.1.1", "xo": { "rules": { "guard-for-in": 0, diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-styles/package.json index 043a39f4..78c535f7 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ansi-styles/package.json @@ -1,51 +1,27 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/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", + "name": "ansi-styles", + "version": "2.2.1", + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "mocha": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -68,26 +44,7 @@ "command-line", "text" ], - "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" + "devDependencies": { + "mocha": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-code-frame/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-code-frame/package.json index fec24997..7cf9346c 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-code-frame/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-code-frame/package.json @@ -1,49 +1,15 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/babel-traverse" - ], - "_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" - }, + "name": "babel-code-frame", + "version": "6.26.0", + "description": "Generate errors that contain a code frame that point to source locations.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "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" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-builder-binary-assignment-operator-visitor/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-builder-binary-assignment-operator-visitor/package.json index b2073989..30be7946 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-builder-binary-assignment-operator-visitor/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-builder-binary-assignment-operator-visitor/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-helper-builder-binary-assignment-operator-visitor@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-builder-binary-assignment-operator-visitor@6.24.1", - "_id": "babel-helper-builder-binary-assignment-operator-visitor@6.24.1", - "_inBundle": false, - "_integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", - "_location": "/babel-preset-env/babel-helper-builder-binary-assignment-operator-visitor", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-builder-binary-assignment-operator-visitor@6.24.1", - "name": "babel-helper-builder-binary-assignment-operator-visitor", - "escapedName": "babel-helper-builder-binary-assignment-operator-visitor", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-exponentiation-operator" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-builder-binary-assignment-operator-visitor", + "version": "6.24.1", + "description": "Helper function to build binary assignment operator visitors", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-helper-explode-assignable-expression": "^6.24.1", "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" - }, - "description": "Helper function to build binary assignment operator visitors", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-builder-binary-assignment-operator-visitor", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-call-delegate/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-call-delegate/package.json index 57734eac..8662c3f0 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-call-delegate/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-call-delegate/package.json @@ -1,45 +1,14 @@ { - "_args": [ - [ - "babel-helper-call-delegate@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-call-delegate@6.24.1", - "_id": "babel-helper-call-delegate@6.24.1", - "_inBundle": false, - "_integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", - "_location": "/babel-preset-env/babel-helper-call-delegate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-call-delegate@6.24.1", - "name": "babel-helper-call-delegate", - "escapedName": "babel-helper-call-delegate", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-es2015-parameters" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, + "name": "babel-helper-call-delegate", + "version": "6.24.1", "description": "Helper function to call delegate", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate", "license": "MIT", "main": "lib/index.js", - "name": "babel-helper-call-delegate", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate" - }, - "version": "6.24.1" + "dependencies": { + "babel-traverse": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1", + "babel-helper-hoist-variables": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-define-map/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-define-map/package.json index f7dc3f8b..f0492976 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-define-map/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-define-map/package.json @@ -1,45 +1,14 @@ { - "_args": [ - [ - "babel-helper-define-map@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-define-map@6.26.0", - "_id": "babel-helper-define-map@6.26.0", - "_inBundle": false, - "_integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", - "_location": "/babel-preset-env/babel-helper-define-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-define-map@6.26.0", - "name": "babel-helper-define-map", - "escapedName": "babel-helper-define-map", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-es2015-classes" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz", - "_spec": "6.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-define-map", + "version": "6.26.0", + "description": "Helper function to define a map", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-helper-function-name": "^6.24.1", "babel-runtime": "^6.26.0", "babel-types": "^6.26.0", "lodash": "^4.17.4" - }, - "description": "Helper function to define a map", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-define-map", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-explode-assignable-expression/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-explode-assignable-expression/package.json index 3a08fcd3..264e806b 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-explode-assignable-expression/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-explode-assignable-expression/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-helper-explode-assignable-expression@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-explode-assignable-expression@6.24.1", - "_id": "babel-helper-explode-assignable-expression@6.24.1", - "_inBundle": false, - "_integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", - "_location": "/babel-preset-env/babel-helper-explode-assignable-expression", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-explode-assignable-expression@6.24.1", - "name": "babel-helper-explode-assignable-expression", - "escapedName": "babel-helper-explode-assignable-expression", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-builder-binary-assignment-operator-visitor" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, + "name": "babel-helper-explode-assignable-expression", + "version": "6.24.1", "description": "Helper function to explode an assignable expression", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression", "license": "MIT", "main": "lib/index.js", - "name": "babel-helper-explode-assignable-expression", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression" - }, - "version": "6.24.1" + "dependencies": { + "babel-traverse": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-function-name/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-function-name/package.json index 272292d4..905b401f 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-function-name/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-function-name/package.json @@ -1,49 +1,15 @@ { - "_args": [ - [ - "babel-helper-function-name@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-function-name@6.24.1", - "_id": "babel-helper-function-name@6.24.1", - "_inBundle": false, - "_integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", - "_location": "/babel-preset-env/babel-helper-function-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-function-name@6.24.1", - "name": "babel-helper-function-name", - "escapedName": "babel-helper-function-name", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-define-map", - "/babel-preset-env/babel-helper-remap-async-to-generator", - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-plugin-transform-es2015-function-name" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, + "name": "babel-helper-function-name", + "version": "6.24.1", "description": "Helper function to change the property 'name' of every function", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name", "license": "MIT", "main": "lib/index.js", - "name": "babel-helper-function-name", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" - }, - "version": "6.24.1" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-helper-get-function-arity": "^6.24.1", + "babel-template": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-get-function-arity/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-get-function-arity/package.json index b3f97bc8..d12fb37a 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-get-function-arity/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-get-function-arity/package.json @@ -1,44 +1,12 @@ { - "_args": [ - [ - "babel-helper-get-function-arity@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-get-function-arity@6.24.1", - "_id": "babel-helper-get-function-arity@6.24.1", - "_inBundle": false, - "_integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", - "_location": "/babel-preset-env/babel-helper-get-function-arity", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-get-function-arity@6.24.1", - "name": "babel-helper-get-function-arity", - "escapedName": "babel-helper-get-function-arity", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-function-name", - "/babel-preset-env/babel-plugin-transform-es2015-parameters" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-get-function-arity", + "version": "6.24.1", + "description": "Helper function to get function arity", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" - }, - "description": "Helper function to get function arity", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-get-function-arity", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-hoist-variables/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-hoist-variables/package.json index 0eea9f7e..7d62a4f7 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-hoist-variables/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-hoist-variables/package.json @@ -1,44 +1,12 @@ { - "_args": [ - [ - "babel-helper-hoist-variables@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-hoist-variables@6.24.1", - "_id": "babel-helper-hoist-variables@6.24.1", - "_inBundle": false, - "_integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", - "_location": "/babel-preset-env/babel-helper-hoist-variables", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-hoist-variables@6.24.1", - "name": "babel-helper-hoist-variables", - "escapedName": "babel-helper-hoist-variables", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-call-delegate", - "/babel-preset-env/babel-plugin-transform-es2015-modules-systemjs" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-hoist-variables", + "version": "6.24.1", + "description": "Helper function to hoist variables", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" - }, - "description": "Helper function to hoist variables", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-hoist-variables", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-optimise-call-expression/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-optimise-call-expression/package.json index 3375b4c3..a34efda7 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-optimise-call-expression/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-optimise-call-expression/package.json @@ -1,44 +1,12 @@ { - "_args": [ - [ - "babel-helper-optimise-call-expression@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-optimise-call-expression@6.24.1", - "_id": "babel-helper-optimise-call-expression@6.24.1", - "_inBundle": false, - "_integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", - "_location": "/babel-preset-env/babel-helper-optimise-call-expression", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-optimise-call-expression@6.24.1", - "name": "babel-helper-optimise-call-expression", - "escapedName": "babel-helper-optimise-call-expression", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-replace-supers", - "/babel-preset-env/babel-plugin-transform-es2015-classes" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-optimise-call-expression", + "version": "6.24.1", + "description": "Helper function to optimise call expression", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" - }, - "description": "Helper function to optimise call expression", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-optimise-call-expression", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-regex/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-regex/package.json index 92fe0540..140fe5ef 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-regex/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-regex/package.json @@ -1,45 +1,13 @@ { - "_args": [ - [ - "babel-helper-regex@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-regex@6.26.0", - "_id": "babel-helper-regex@6.26.0", - "_inBundle": false, - "_integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", - "_location": "/babel-preset-env/babel-helper-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-regex@6.26.0", - "name": "babel-helper-regex", - "escapedName": "babel-helper-regex", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-es2015-sticky-regex", - "/babel-preset-env/babel-plugin-transform-es2015-unicode-regex" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz", - "_spec": "6.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-regex", + "version": "6.26.0", + "description": "Helper function to check for literal RegEx", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "babel-types": "^6.26.0", "lodash": "^4.17.4" - }, - "description": "Helper function to check for literal RegEx", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-regex", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-remap-async-to-generator/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-remap-async-to-generator/package.json index a073f262..be9907c9 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-remap-async-to-generator/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-remap-async-to-generator/package.json @@ -1,46 +1,15 @@ { - "_args": [ - [ - "babel-helper-remap-async-to-generator@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-remap-async-to-generator@6.24.1", - "_id": "babel-helper-remap-async-to-generator@6.24.1", - "_inBundle": false, - "_integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", - "_location": "/babel-preset-env/babel-helper-remap-async-to-generator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-remap-async-to-generator@6.24.1", - "name": "babel-helper-remap-async-to-generator", - "escapedName": "babel-helper-remap-async-to-generator", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-async-to-generator" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, + "name": "babel-helper-remap-async-to-generator", + "version": "6.24.1", "description": "Helper function to remap async functions to generators", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator", "license": "MIT", "main": "lib/index.js", - "name": "babel-helper-remap-async-to-generator", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator" - }, - "version": "6.24.1" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-types": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-helper-function-name": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-replace-supers/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-replace-supers/package.json index 9a9c15c4..c5bed94d 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-replace-supers/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-helper-replace-supers/package.json @@ -1,48 +1,16 @@ { - "_args": [ - [ - "babel-helper-replace-supers@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-replace-supers@6.24.1", - "_id": "babel-helper-replace-supers@6.24.1", - "_inBundle": false, - "_integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", - "_location": "/babel-preset-env/babel-helper-replace-supers", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-replace-supers@6.24.1", - "name": "babel-helper-replace-supers", - "escapedName": "babel-helper-replace-supers", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-plugin-transform-es2015-object-super" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, + "name": "babel-helper-replace-supers", + "version": "6.24.1", "description": "Helper function to replace supers", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers", "license": "MIT", "main": "lib/index.js", - "name": "babel-helper-replace-supers", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers" - }, - "version": "6.24.1" + "dependencies": { + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-template": "^6.24.1", + "babel-types": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-messages/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-messages/package.json index 26463f0e..348dc5ee 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-messages/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-messages/package.json @@ -1,49 +1,13 @@ { - "_args": [ - [ - "babel-messages@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-messages@6.23.0", - "_id": "babel-messages@6.23.0", - "_inBundle": false, - "_integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "_location": "/babel-preset-env/babel-messages", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-messages@6.23.0", - "name": "babel-messages", - "escapedName": "babel-messages", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-replace-supers", - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-messages", + "version": "6.23.0", "description": "Collection of debug messages used by Babel.", + "author": "Sebastian McKenzie ", "homepage": "https://babeljs.io/", "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-messages", "main": "lib/index.js", - "name": "babel-messages", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-messages" - }, - "version": "6.23.0" + "dependencies": { + "babel-runtime": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-check-es2015-constants/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-check-es2015-constants/package.json index 15b10633..b335fbf3 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-check-es2015-constants/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-check-es2015-constants/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-check-es2015-constants@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-check-es2015-constants@6.22.0", - "_id": "babel-plugin-check-es2015-constants@6.22.0", - "_inBundle": false, - "_integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", - "_location": "/babel-preset-env/babel-plugin-check-es2015-constants", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-check-es2015-constants@6.22.0", - "name": "babel-plugin-check-es2015-constants", - "escapedName": "babel-plugin-check-es2015-constants", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-check-es2015-constants", + "version": "6.22.0", "description": "Compile ES2015 constants to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-check-es2015-constants", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-check-es2015-constants", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-check-es2015-constants" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-async-functions/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-async-functions/package.json index 7e407cde..ef46b578 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-async-functions/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-async-functions/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-plugin-syntax-async-functions@6.13.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-async-functions@6.13.0", - "_id": "babel-plugin-syntax-async-functions@6.13.0", - "_inBundle": false, - "_integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=", - "_location": "/babel-preset-env/babel-plugin-syntax-async-functions", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-async-functions@6.13.0", - "name": "babel-plugin-syntax-async-functions", - "escapedName": "babel-plugin-syntax-async-functions", - "rawSpec": "6.13.0", - "saveSpec": null, - "fetchSpec": "6.13.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-async-to-generator" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", - "_spec": "6.13.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-async-functions", + "version": "6.13.0", "description": "Allow parsing of async functions", - "devDependencies": {}, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-functions", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-async-functions", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-functions" - }, - "version": "6.13.0" + "dependencies": {}, + "devDependencies": {} } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-exponentiation-operator/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-exponentiation-operator/package.json index e5a3c788..94c1d041 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-exponentiation-operator/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-exponentiation-operator/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-plugin-syntax-exponentiation-operator@6.13.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-exponentiation-operator@6.13.0", - "_id": "babel-plugin-syntax-exponentiation-operator@6.13.0", - "_inBundle": false, - "_integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=", - "_location": "/babel-preset-env/babel-plugin-syntax-exponentiation-operator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-exponentiation-operator@6.13.0", - "name": "babel-plugin-syntax-exponentiation-operator", - "escapedName": "babel-plugin-syntax-exponentiation-operator", - "rawSpec": "6.13.0", - "saveSpec": null, - "fetchSpec": "6.13.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-exponentiation-operator" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", - "_spec": "6.13.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-exponentiation-operator", + "version": "6.13.0", "description": "Allow parsing of the exponentiation operator", - "devDependencies": {}, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-exponentation-operator", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-exponentiation-operator", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-exponentation-operator" - }, - "version": "6.13.0" + "dependencies": {}, + "devDependencies": {} } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-trailing-function-commas/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-trailing-function-commas/package.json index a68afb89..174e92d0 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-trailing-function-commas/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-syntax-trailing-function-commas/package.json @@ -1,46 +1,15 @@ { - "_args": [ - [ - "babel-plugin-syntax-trailing-function-commas@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-trailing-function-commas@6.22.0", - "_id": "babel-plugin-syntax-trailing-function-commas@6.22.0", - "_inBundle": false, - "_integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=", - "_location": "/babel-preset-env/babel-plugin-syntax-trailing-function-commas", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-trailing-function-commas@6.22.0", - "name": "babel-plugin-syntax-trailing-function-commas", - "escapedName": "babel-plugin-syntax-trailing-function-commas", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-trailing-function-commas", + "version": "6.22.0", "description": "Compile trailing function commas to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-trailing-function-commas", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-trailing-function-commas", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-trailing-function-commas" - }, - "version": "6.22.0" + "dependencies": {}, + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-async-to-generator/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-async-to-generator/package.json index 32051d0d..762003f8 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-async-to-generator/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-async-to-generator/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-async-to-generator@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-plugin-transform-async-to-generator", + "version": "6.24.1", + "description": "Turn async functions into ES2015 generators", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator", + "license": "MIT", + "main": "lib/index.js", + "keywords": [ + "babel-plugin" ], - "_from": "babel-plugin-transform-async-to-generator@6.24.1", - "_id": "babel-plugin-transform-async-to-generator@6.24.1", - "_inBundle": false, - "_integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", - "_location": "/babel-preset-env/babel-plugin-transform-async-to-generator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-async-to-generator@6.24.1", - "name": "babel-plugin-transform-async-to-generator", - "escapedName": "babel-plugin-transform-async-to-generator", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "dependencies": { "babel-helper-remap-async-to-generator": "^6.24.1", "babel-plugin-syntax-async-functions": "^6.8.0", "babel-runtime": "^6.22.0" }, - "description": "Turn async functions into ES2015 generators", "devDependencies": { "babel-helper-plugin-test-runner": "^6.24.1" - }, - "keywords": [ - "babel-plugin" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-async-to-generator", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-arrow-functions/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-arrow-functions/package.json index 4de46365..0db0959e 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-arrow-functions/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-arrow-functions/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-arrow-functions@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-arrow-functions@6.22.0", - "_id": "babel-plugin-transform-es2015-arrow-functions@6.22.0", - "_inBundle": false, - "_integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-arrow-functions", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-arrow-functions@6.22.0", - "name": "babel-plugin-transform-es2015-arrow-functions", - "escapedName": "babel-plugin-transform-es2015-arrow-functions", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-arrow-functions", + "version": "6.22.0", "description": "Compile ES2015 arrow functions to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-arrow-functions", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-arrow-functions", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-arrow-functions" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoped-functions/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoped-functions/package.json index a80f49a9..922e7118 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoped-functions/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoped-functions/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-block-scoped-functions@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-block-scoped-functions@6.22.0", - "_id": "babel-plugin-transform-es2015-block-scoped-functions@6.22.0", - "_inBundle": false, - "_integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-block-scoped-functions", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-block-scoped-functions@6.22.0", - "name": "babel-plugin-transform-es2015-block-scoped-functions", - "escapedName": "babel-plugin-transform-es2015-block-scoped-functions", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-block-scoped-functions", + "version": "6.22.0", "description": "Babel plugin to ensure function declarations at the block level are block scoped", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoped-functions", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-block-scoped-functions", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoped-functions" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoping/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoping/package.json index fe895c72..5425c7f1 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoping/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-block-scoping/package.json @@ -1,32 +1,10 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-block-scoping@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-block-scoping@6.26.0", - "_id": "babel-plugin-transform-es2015-block-scoping@6.26.0", - "_inBundle": false, - "_integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-block-scoping", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-block-scoping@6.26.0", - "name": "babel-plugin-transform-es2015-block-scoping", - "escapedName": "babel-plugin-transform-es2015-block-scoping", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", - "_spec": "6.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-plugin-transform-es2015-block-scoping", + "version": "6.26.0", + "description": "Compile ES2015 block scoping (const and let) to ES5", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "babel-template": "^6.26.0", @@ -34,19 +12,10 @@ "babel-types": "^6.26.0", "lodash": "^4.17.4" }, - "description": "Compile ES2015 block scoping (const and let) to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-block-scoping", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping" - }, - "version": "6.26.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-classes/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-classes/package.json index 5be29874..a559e795 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-classes/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-classes/package.json @@ -1,56 +1,25 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-classes@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-classes@6.24.1", - "_id": "babel-plugin-transform-es2015-classes@6.24.1", - "_inBundle": false, - "_integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-classes", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-classes@6.24.1", - "name": "babel-plugin-transform-es2015-classes", - "escapedName": "babel-plugin-transform-es2015-classes", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-plugin-transform-es2015-classes", + "version": "6.24.1", + "description": "Compile ES2015 classes to ES5", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-classes", + "license": "MIT", + "main": "lib/index.js", "dependencies": { - "babel-helper-define-map": "^6.24.1", - "babel-helper-function-name": "^6.24.1", "babel-helper-optimise-call-expression": "^6.24.1", + "babel-helper-function-name": "^6.24.1", "babel-helper-replace-supers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", "babel-template": "^6.24.1", "babel-traverse": "^6.24.1", + "babel-helper-define-map": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" }, - "description": "Compile ES2015 classes to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-classes", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-classes" - }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-computed-properties/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-computed-properties/package.json index 746f6c70..46ddea01 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-computed-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-computed-properties/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-computed-properties@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-computed-properties@6.24.1", - "_id": "babel-plugin-transform-es2015-computed-properties@6.24.1", - "_inBundle": false, - "_integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-computed-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-computed-properties@6.24.1", - "name": "babel-plugin-transform-es2015-computed-properties", - "escapedName": "babel-plugin-transform-es2015-computed-properties", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - }, + "name": "babel-plugin-transform-es2015-computed-properties", + "version": "6.24.1", "description": "Compile ES2015 computed properties to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-computed-properties", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-computed-properties", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-computed-properties" + "dependencies": { + "babel-template": "^6.24.1", + "babel-runtime": "^6.22.0" }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-destructuring/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-destructuring/package.json index 091b1e14..93ab9d2b 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-destructuring/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-destructuring/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-destructuring@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-destructuring@6.23.0", - "_id": "babel-plugin-transform-es2015-destructuring@6.23.0", - "_inBundle": false, - "_integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-destructuring", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-destructuring@6.23.0", - "name": "babel-plugin-transform-es2015-destructuring", - "escapedName": "babel-plugin-transform-es2015-destructuring", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-destructuring", + "version": "6.23.0", "description": "Compile ES2015 destructuring to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-destructuring", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-destructuring", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-destructuring" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.23.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-duplicate-keys/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-duplicate-keys/package.json index 51bd0d58..ee574a4f 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-duplicate-keys/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-duplicate-keys/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-duplicate-keys@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-plugin-transform-es2015-duplicate-keys", + "version": "6.24.1", + "description": "Compile objects with duplicate keys to valid strict ES5", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-duplicate-keys", + "license": "MIT", + "main": "lib/index.js", + "keywords": [ + "babel-plugin" ], - "_from": "babel-plugin-transform-es2015-duplicate-keys@6.24.1", - "_id": "babel-plugin-transform-es2015-duplicate-keys@6.24.1", - "_inBundle": false, - "_integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-duplicate-keys", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-duplicate-keys@6.24.1", - "name": "babel-plugin-transform-es2015-duplicate-keys", - "escapedName": "babel-plugin-transform-es2015-duplicate-keys", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "dependencies": { "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" }, - "description": "Compile objects with duplicate keys to valid strict ES5", "devDependencies": { "babel-helper-plugin-test-runner": "^6.24.1" - }, - "keywords": [ - "babel-plugin" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-duplicate-keys", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-duplicate-keys" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-for-of/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-for-of/package.json index be0631a8..470a7f99 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-for-of/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-for-of/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-for-of@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-for-of@6.23.0", - "_id": "babel-plugin-transform-es2015-for-of@6.23.0", - "_inBundle": false, - "_integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-for-of", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-for-of@6.23.0", - "name": "babel-plugin-transform-es2015-for-of", - "escapedName": "babel-plugin-transform-es2015-for-of", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-for-of", + "version": "6.23.0", "description": "Compile ES2015 for...of to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-for-of", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-for-of", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-for-of" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.23.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-function-name/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-function-name/package.json index 5724541e..4d96d97f 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-function-name/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-function-name/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-function-name@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-function-name@6.24.1", - "_id": "babel-plugin-transform-es2015-function-name@6.24.1", - "_inBundle": false, - "_integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-function-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-function-name@6.24.1", - "name": "babel-plugin-transform-es2015-function-name", - "escapedName": "babel-plugin-transform-es2015-function-name", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - }, + "name": "babel-plugin-transform-es2015-function-name", + "version": "6.24.1", "description": "Apply ES2015 function.name semantics to all functions", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-function-name", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-function-name", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-function-name" + "dependencies": { + "babel-helper-function-name": "^6.24.1", + "babel-types": "^6.24.1", + "babel-runtime": "^6.22.0" }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-literals/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-literals/package.json index 104267db..f99175fe 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-literals/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-literals/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-literals@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-literals@6.22.0", - "_id": "babel-plugin-transform-es2015-literals@6.22.0", - "_inBundle": false, - "_integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-literals", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-literals@6.22.0", - "name": "babel-plugin-transform-es2015-literals", - "escapedName": "babel-plugin-transform-es2015-literals", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-literals", + "version": "6.22.0", "description": "Compile ES2015 unicode string and number literals to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-literals", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-literals", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-literals" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-amd/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-amd/package.json index 2bc85b50..816b5699 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-amd/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-amd/package.json @@ -1,51 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-modules-amd@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-modules-amd@6.24.1", - "_id": "babel-plugin-transform-es2015-modules-amd@6.24.1", - "_inBundle": false, - "_integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-modules-amd", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-modules-amd@6.24.1", - "name": "babel-plugin-transform-es2015-modules-amd", - "escapedName": "babel-plugin-transform-es2015-modules-amd", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env", - "/babel-preset-env/babel-plugin-transform-es2015-modules-umd" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-plugin-transform-es2015-modules-amd", + "version": "6.24.1", + "description": "This plugin transforms ES2015 modules to AMD", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-amd", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - }, - "description": "This plugin transforms ES2015 modules to AMD", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" + "babel-template": "^6.24.1", + "babel-runtime": "^6.22.0" }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-modules-amd", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-amd" - }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-commonjs/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-commonjs/package.json index 0b6bff19..ddd7fb71 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-commonjs/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-commonjs/package.json @@ -1,53 +1,21 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-modules-commonjs@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-modules-commonjs@6.26.0", - "_id": "babel-plugin-transform-es2015-modules-commonjs@6.26.0", - "_inBundle": false, - "_integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-modules-commonjs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-modules-commonjs@6.26.0", - "name": "babel-plugin-transform-es2015-modules-commonjs", - "escapedName": "babel-plugin-transform-es2015-modules-commonjs", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env", - "/babel-preset-env/babel-plugin-transform-es2015-modules-amd" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz", - "_spec": "6.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-plugin-transform-es2015-modules-commonjs", + "version": "6.26.0", + "description": "This plugin transforms ES2015 modules to CommonJS", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-plugin-transform-strict-mode": "^6.24.1", "babel-runtime": "^6.26.0", "babel-template": "^6.26.0", "babel-types": "^6.26.0" }, - "description": "This plugin transforms ES2015 modules to CommonJS", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1", - "babel-plugin-syntax-object-rest-spread": "^6.13.0" - }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-modules-commonjs", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs" - }, - "version": "6.26.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-systemjs/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-systemjs/package.json index ecca498c..c5e28273 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-systemjs/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-systemjs/package.json @@ -1,51 +1,20 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-modules-systemjs@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-modules-systemjs@6.24.1", - "_id": "babel-plugin-transform-es2015-modules-systemjs@6.24.1", - "_inBundle": false, - "_integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-modules-systemjs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-modules-systemjs@6.24.1", - "name": "babel-plugin-transform-es2015-modules-systemjs", - "escapedName": "babel-plugin-transform-es2015-modules-systemjs", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - }, + "name": "babel-plugin-transform-es2015-modules-systemjs", + "version": "6.24.1", "description": "This plugin transforms ES2015 modules to SystemJS", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1", - "babel-plugin-syntax-dynamic-import": "^6.18.0" + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-systemjs", + "license": "MIT", + "main": "lib/index.js", + "dependencies": { + "babel-template": "^6.24.1", + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0" }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-modules-systemjs", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-systemjs" - }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1", + "babel-plugin-syntax-dynamic-import": "^6.18.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-umd/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-umd/package.json index c59eed92..ea38e91b 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-umd/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-modules-umd/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-modules-umd@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-modules-umd@6.24.1", - "_id": "babel-plugin-transform-es2015-modules-umd@6.24.1", - "_inBundle": false, - "_integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-modules-umd", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-modules-umd@6.24.1", - "name": "babel-plugin-transform-es2015-modules-umd", - "escapedName": "babel-plugin-transform-es2015-modules-umd", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-plugin-transform-es2015-modules-umd", + "version": "6.24.1", + "description": "This plugin transforms ES2015 modules to UMD", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-umd", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - }, - "description": "This plugin transforms ES2015 modules to UMD", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" + "babel-template": "^6.24.1", + "babel-runtime": "^6.22.0" }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-modules-umd", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-umd" - }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-object-super/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-object-super/package.json index 4d077065..c0bc4a9f 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-object-super/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-object-super/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-object-super@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-plugin-transform-es2015-object-super", + "version": "6.24.1", + "description": "Compile ES2015 object super to ES5", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-object-super", + "license": "MIT", + "main": "lib/index.js", + "keywords": [ + "babel-plugin" ], - "_from": "babel-plugin-transform-es2015-object-super@6.24.1", - "_id": "babel-plugin-transform-es2015-object-super@6.24.1", - "_inBundle": false, - "_integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-object-super", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-object-super@6.24.1", - "name": "babel-plugin-transform-es2015-object-super", - "escapedName": "babel-plugin-transform-es2015-object-super", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "dependencies": { "babel-helper-replace-supers": "^6.24.1", "babel-runtime": "^6.22.0" }, - "description": "Compile ES2015 object super to ES5", "devDependencies": { "babel-helper-plugin-test-runner": "^6.24.1" - }, - "keywords": [ - "babel-plugin" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-object-super", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-object-super" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-parameters/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-parameters/package.json index 49759bd6..6d27af9a 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-parameters/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-parameters/package.json @@ -1,53 +1,22 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-parameters@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-parameters@6.24.1", - "_id": "babel-plugin-transform-es2015-parameters@6.24.1", - "_inBundle": false, - "_integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-parameters", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-parameters@6.24.1", - "name": "babel-plugin-transform-es2015-parameters", - "escapedName": "babel-plugin-transform-es2015-parameters", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-plugin-transform-es2015-parameters", + "version": "6.24.1", + "description": "Compile ES2015 default and rest parameters to ES5", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-parameters", + "license": "MIT", + "main": "lib/index.js", "dependencies": { + "babel-traverse": "^6.24.1", "babel-helper-call-delegate": "^6.24.1", "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - }, - "description": "Compile ES2015 default and rest parameters to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" + "babel-types": "^6.24.1", + "babel-runtime": "^6.22.0" }, "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-parameters", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-parameters" - }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-shorthand-properties/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-shorthand-properties/package.json index d75d44c5..dba2f277 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-shorthand-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-shorthand-properties/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-shorthand-properties@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-shorthand-properties@6.24.1", - "_id": "babel-plugin-transform-es2015-shorthand-properties@6.24.1", - "_inBundle": false, - "_integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-shorthand-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-shorthand-properties@6.24.1", - "name": "babel-plugin-transform-es2015-shorthand-properties", - "escapedName": "babel-plugin-transform-es2015-shorthand-properties", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - }, + "name": "babel-plugin-transform-es2015-shorthand-properties", + "version": "6.24.1", "description": "Compile ES2015 shorthand properties to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-shorthand-properties", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-shorthand-properties", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-shorthand-properties" + "dependencies": { + "babel-types": "^6.24.1", + "babel-runtime": "^6.22.0" }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-spread/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-spread/package.json index 1556c9ac..f852ac31 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-spread/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-spread/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-spread@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-spread@6.22.0", - "_id": "babel-plugin-transform-es2015-spread@6.22.0", - "_inBundle": false, - "_integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-spread", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-spread@6.22.0", - "name": "babel-plugin-transform-es2015-spread", - "escapedName": "babel-plugin-transform-es2015-spread", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-spread", + "version": "6.22.0", "description": "Compile ES2015 spread to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-spread", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-spread", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-spread" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-sticky-regex/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-sticky-regex/package.json index 0051b663..068c7e0e 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-sticky-regex/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-sticky-regex/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-sticky-regex@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-sticky-regex@6.24.1", - "_id": "babel-plugin-transform-es2015-sticky-regex@6.24.1", - "_inBundle": false, - "_integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-sticky-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-sticky-regex@6.24.1", - "name": "babel-plugin-transform-es2015-sticky-regex", - "escapedName": "babel-plugin-transform-es2015-sticky-regex", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - }, + "name": "babel-plugin-transform-es2015-sticky-regex", + "version": "6.24.1", "description": "Compile ES2015 sticky regex to an ES5 RegExp constructor", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-sticky-regex", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-sticky-regex", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-sticky-regex" + "dependencies": { + "babel-helper-regex": "^6.24.1", + "babel-types": "^6.24.1", + "babel-runtime": "^6.22.0" }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-template-literals/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-template-literals/package.json index 44fc4e7f..e24bb6d9 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-template-literals/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-template-literals/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-template-literals@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-template-literals@6.22.0", - "_id": "babel-plugin-transform-es2015-template-literals@6.22.0", - "_inBundle": false, - "_integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-template-literals", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-template-literals@6.22.0", - "name": "babel-plugin-transform-es2015-template-literals", - "escapedName": "babel-plugin-transform-es2015-template-literals", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-template-literals", + "version": "6.22.0", "description": "Compile ES2015 template literals to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-template-literals", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-template-literals", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-template-literals" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-typeof-symbol/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-typeof-symbol/package.json index c6f1d707..7a4f2842 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-typeof-symbol/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-typeof-symbol/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-typeof-symbol@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-es2015-typeof-symbol@6.23.0", - "_id": "babel-plugin-transform-es2015-typeof-symbol@6.23.0", - "_inBundle": false, - "_integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-typeof-symbol", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-typeof-symbol@6.23.0", - "name": "babel-plugin-transform-es2015-typeof-symbol", - "escapedName": "babel-plugin-transform-es2015-typeof-symbol", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-es2015-typeof-symbol", + "version": "6.23.0", "description": "This transformer wraps all typeof expressions with a method that replicates native behaviour. (ie. returning “symbol” for symbols)", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-typeof-symbol", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-typeof-symbol", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-typeof-symbol" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.23.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-unicode-regex/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-unicode-regex/package.json index 57578871..0a02d878 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-unicode-regex/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-es2015-unicode-regex/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-es2015-unicode-regex@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-plugin-transform-es2015-unicode-regex", + "version": "6.24.1", + "description": "Compile ES2015 Unicode regex to ES5", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-unicode-regex", + "license": "MIT", + "main": "lib/index.js", + "keywords": [ + "babel-plugin" ], - "_from": "babel-plugin-transform-es2015-unicode-regex@6.24.1", - "_id": "babel-plugin-transform-es2015-unicode-regex@6.24.1", - "_inBundle": false, - "_integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", - "_location": "/babel-preset-env/babel-plugin-transform-es2015-unicode-regex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-es2015-unicode-regex@6.24.1", - "name": "babel-plugin-transform-es2015-unicode-regex", - "escapedName": "babel-plugin-transform-es2015-unicode-regex", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "dependencies": { "babel-helper-regex": "^6.24.1", "babel-runtime": "^6.22.0", "regexpu-core": "^2.0.0" }, - "description": "Compile ES2015 Unicode regex to ES5", "devDependencies": { "babel-helper-plugin-test-runner": "^6.24.1" - }, - "keywords": [ - "babel-plugin" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-es2015-unicode-regex", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-unicode-regex" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-exponentiation-operator/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-exponentiation-operator/package.json index 944b3a2b..8055d381 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-exponentiation-operator/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-exponentiation-operator/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-exponentiation-operator@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-exponentiation-operator@6.24.1", - "_id": "babel-plugin-transform-exponentiation-operator@6.24.1", - "_inBundle": false, - "_integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", - "_location": "/babel-preset-env/babel-plugin-transform-exponentiation-operator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-exponentiation-operator@6.24.1", - "name": "babel-plugin-transform-exponentiation-operator", - "escapedName": "babel-plugin-transform-exponentiation-operator", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", - "babel-plugin-syntax-exponentiation-operator": "^6.8.0", - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-exponentiation-operator", + "version": "6.24.1", "description": "Compile exponentiation operator to ES5", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-exponentiation-operator", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator" + "dependencies": { + "babel-plugin-syntax-exponentiation-operator": "^6.8.0", + "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", + "babel-runtime": "^6.22.0" }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-regenerator/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-regenerator/package.json index 58e542c9..f69aa3d8 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-regenerator/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-regenerator/package.json @@ -1,50 +1,16 @@ { - "_args": [ - [ - "babel-plugin-transform-regenerator@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-regenerator@6.26.0", - "_id": "babel-plugin-transform-regenerator@6.26.0", - "_inBundle": false, - "_integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", - "_location": "/babel-preset-env/babel-plugin-transform-regenerator", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-regenerator@6.26.0", - "name": "babel-plugin-transform-regenerator", - "escapedName": "babel-plugin-transform-regenerator", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz", - "_spec": "6.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "babel-plugin-transform-regenerator", + "author": "Ben Newman ", + "description": "Explode async and generator functions into a state machine.", + "version": "6.26.0", + "homepage": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", + "main": "lib/index.js", "dependencies": { "regenerator-transform": "^0.10.0" }, - "description": "Explode async and generator functions into a state machine.", + "license": "MIT", "devDependencies": { "babel-helper-plugin-test-runner": "^6.24.1" - }, - "homepage": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-regenerator", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-strict-mode/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-strict-mode/package.json index e26ff782..da1f8717 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-strict-mode/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-plugin-transform-strict-mode/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-strict-mode@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "babel-plugin-transform-strict-mode", + "version": "6.24.1", + "description": "This plugin places a 'use strict'; directive at the top of all files to enable strict mode", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode", + "license": "MIT", + "main": "lib/index.js", + "keywords": [ + "babel-plugin" ], - "_from": "babel-plugin-transform-strict-mode@6.24.1", - "_id": "babel-plugin-transform-strict-mode@6.24.1", - "_inBundle": false, - "_integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", - "_location": "/babel-preset-env/babel-plugin-transform-strict-mode", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-strict-mode@6.24.1", - "name": "babel-plugin-transform-strict-mode", - "escapedName": "babel-plugin-transform-strict-mode", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-es2015-modules-commonjs" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "dependencies": { "babel-runtime": "^6.22.0", "babel-types": "^6.24.1" }, - "description": "This plugin places a 'use strict'; directive at the top of all files to enable strict mode", "devDependencies": { "babel-helper-plugin-test-runner": "^6.24.1" - }, - "keywords": [ - "babel-plugin" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-strict-mode", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode" - }, - "version": "6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-runtime/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-runtime/package.json index 1496ad3c..c17eb9a3 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-runtime/package.json @@ -1,91 +1,16 @@ { - "_args": [ - [ - "babel-runtime@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-runtime@6.26.0", - "_id": "babel-runtime@6.26.0", - "_inBundle": false, - "_integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "_location": "/babel-preset-env/babel-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-runtime@6.26.0", - "name": "babel-runtime", - "escapedName": "babel-runtime", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-builder-binary-assignment-operator-visitor", - "/babel-preset-env/babel-helper-call-delegate", - "/babel-preset-env/babel-helper-define-map", - "/babel-preset-env/babel-helper-explode-assignable-expression", - "/babel-preset-env/babel-helper-function-name", - "/babel-preset-env/babel-helper-get-function-arity", - "/babel-preset-env/babel-helper-hoist-variables", - "/babel-preset-env/babel-helper-optimise-call-expression", - "/babel-preset-env/babel-helper-regex", - "/babel-preset-env/babel-helper-remap-async-to-generator", - "/babel-preset-env/babel-helper-replace-supers", - "/babel-preset-env/babel-messages", - "/babel-preset-env/babel-plugin-check-es2015-constants", - "/babel-preset-env/babel-plugin-transform-async-to-generator", - "/babel-preset-env/babel-plugin-transform-es2015-arrow-functions", - "/babel-preset-env/babel-plugin-transform-es2015-block-scoped-functions", - "/babel-preset-env/babel-plugin-transform-es2015-block-scoping", - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-plugin-transform-es2015-computed-properties", - "/babel-preset-env/babel-plugin-transform-es2015-destructuring", - "/babel-preset-env/babel-plugin-transform-es2015-duplicate-keys", - "/babel-preset-env/babel-plugin-transform-es2015-for-of", - "/babel-preset-env/babel-plugin-transform-es2015-function-name", - "/babel-preset-env/babel-plugin-transform-es2015-literals", - "/babel-preset-env/babel-plugin-transform-es2015-modules-amd", - "/babel-preset-env/babel-plugin-transform-es2015-modules-commonjs", - "/babel-preset-env/babel-plugin-transform-es2015-modules-systemjs", - "/babel-preset-env/babel-plugin-transform-es2015-modules-umd", - "/babel-preset-env/babel-plugin-transform-es2015-object-super", - "/babel-preset-env/babel-plugin-transform-es2015-parameters", - "/babel-preset-env/babel-plugin-transform-es2015-shorthand-properties", - "/babel-preset-env/babel-plugin-transform-es2015-spread", - "/babel-preset-env/babel-plugin-transform-es2015-sticky-regex", - "/babel-preset-env/babel-plugin-transform-es2015-template-literals", - "/babel-preset-env/babel-plugin-transform-es2015-typeof-symbol", - "/babel-preset-env/babel-plugin-transform-es2015-unicode-regex", - "/babel-preset-env/babel-plugin-transform-exponentiation-operator", - "/babel-preset-env/babel-plugin-transform-strict-mode", - "/babel-preset-env/babel-template", - "/babel-preset-env/babel-traverse", - "/babel-preset-env/babel-types", - "/babel-preset-env/regenerator-transform" - ], - "_resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-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" - }, + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", + "author": "Sebastian McKenzie ", "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" }, - "description": "babel selfContained runtime", "devDependencies": { "babel-helpers": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0" - }, - "license": "MIT", - "name": "babel-runtime", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-template/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-template/package.json index d2187160..81eab1ca 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-template/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-template/package.json @@ -1,61 +1,17 @@ { - "_args": [ - [ - "babel-template@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-template@6.26.0", - "_id": "babel-template@6.26.0", - "_inBundle": false, - "_integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "_location": "/babel-preset-env/babel-template", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-template@6.26.0", - "name": "babel-template", - "escapedName": "babel-template", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-function-name", - "/babel-preset-env/babel-helper-remap-async-to-generator", - "/babel-preset-env/babel-helper-replace-supers", - "/babel-preset-env/babel-plugin-transform-es2015-block-scoping", - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-plugin-transform-es2015-computed-properties", - "/babel-preset-env/babel-plugin-transform-es2015-modules-amd", - "/babel-preset-env/babel-plugin-transform-es2015-modules-commonjs", - "/babel-preset-env/babel-plugin-transform-es2015-modules-systemjs", - "/babel-preset-env/babel-plugin-transform-es2015-modules-umd", - "/babel-preset-env/babel-plugin-transform-es2015-parameters" - ], - "_resolved": "https://registry.npmjs.org/babel-template/-/babel-template-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" - }, + "name": "babel-template", + "version": "6.26.0", + "description": "Generate an AST from a string template.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-template", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "babel-traverse": "^6.26.0", "babel-types": "^6.26.0", "babylon": "^6.18.0", "lodash": "^4.17.4" - }, - "description": "Generate an AST from a string template.", - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-template", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-template" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-traverse/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-traverse/package.json index b4bc30ed..2f71a4ad 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-traverse/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-traverse/package.json @@ -1,44 +1,12 @@ { - "_args": [ - [ - "babel-traverse@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-traverse@6.26.0", - "_id": "babel-traverse@6.26.0", - "_inBundle": false, - "_integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "_location": "/babel-preset-env/babel-traverse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-traverse@6.26.0", - "name": "babel-traverse", - "escapedName": "babel-traverse", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-call-delegate", - "/babel-preset-env/babel-helper-explode-assignable-expression", - "/babel-preset-env/babel-helper-function-name", - "/babel-preset-env/babel-helper-remap-async-to-generator", - "/babel-preset-env/babel-helper-replace-supers", - "/babel-preset-env/babel-plugin-transform-es2015-block-scoping", - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-plugin-transform-es2015-parameters", - "/babel-preset-env/babel-template" - ], - "_resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-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" - }, + "name": "babel-traverse", + "version": "6.26.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-traverse", + "main": "lib/index.js", "dependencies": { "babel-code-frame": "^6.26.0", "babel-messages": "^6.23.0", @@ -50,17 +18,7 @@ "invariant": "^2.2.2", "lodash": "^4.17.4" }, - "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "devDependencies": { "babel-generator": "^6.26.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-traverse", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-types/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-types/package.json index ee4170aa..e93188af 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-types/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babel-types/package.json @@ -1,76 +1,20 @@ { - "_args": [ - [ - "babel-types@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-types@6.26.0", - "_id": "babel-types@6.26.0", - "_inBundle": false, - "_integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "_location": "/babel-preset-env/babel-types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-types@6.26.0", - "name": "babel-types", - "escapedName": "babel-types", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-builder-binary-assignment-operator-visitor", - "/babel-preset-env/babel-helper-call-delegate", - "/babel-preset-env/babel-helper-define-map", - "/babel-preset-env/babel-helper-explode-assignable-expression", - "/babel-preset-env/babel-helper-function-name", - "/babel-preset-env/babel-helper-get-function-arity", - "/babel-preset-env/babel-helper-hoist-variables", - "/babel-preset-env/babel-helper-optimise-call-expression", - "/babel-preset-env/babel-helper-regex", - "/babel-preset-env/babel-helper-remap-async-to-generator", - "/babel-preset-env/babel-helper-replace-supers", - "/babel-preset-env/babel-plugin-transform-es2015-block-scoping", - "/babel-preset-env/babel-plugin-transform-es2015-classes", - "/babel-preset-env/babel-plugin-transform-es2015-duplicate-keys", - "/babel-preset-env/babel-plugin-transform-es2015-function-name", - "/babel-preset-env/babel-plugin-transform-es2015-modules-commonjs", - "/babel-preset-env/babel-plugin-transform-es2015-parameters", - "/babel-preset-env/babel-plugin-transform-es2015-shorthand-properties", - "/babel-preset-env/babel-plugin-transform-es2015-sticky-regex", - "/babel-preset-env/babel-plugin-transform-strict-mode", - "/babel-preset-env/babel-template", - "/babel-preset-env/babel-traverse", - "/babel-preset-env/regenerator-transform" - ], - "_resolved": "https://registry.npmjs.org/babel-types/-/babel-types-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" - }, + "name": "babel-types", + "version": "6.26.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "esutils": "^2.0.2", "lodash": "^4.17.4", "to-fast-properties": "^1.0.3" }, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "babel-generator": "^6.26.0", "babylon": "^6.18.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-types", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babylon/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babylon/package.json index 80dba42e..4023a24b 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babylon/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/babylon/package.json @@ -1,53 +1,22 @@ { - "_args": [ - [ - "babylon@6.18.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babylon@6.18.0", - "_id": "babylon@6.18.0", - "_inBundle": false, - "_integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", - "_location": "/babel-preset-env/babylon", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babylon@6.18.0", - "name": "babylon", - "escapedName": "babylon", - "rawSpec": "6.18.0", - "saveSpec": null, - "fetchSpec": "6.18.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-template", - "/babel-preset-env/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "_spec": "6.18.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Sebastian McKenzie", - "email": "sebmck@gmail.com" - }, - "ava": { - "files": [ - "test/*.js" - ], - "source": [ - "src/**/*.js", - "bin/**/*.js" - ] - }, - "bin": { - "babylon": "./bin/babylon.js" - }, - "bugs": { - "url": "https://github.com/babel/babylon/issues" - }, + "name": "babylon", + "version": "6.18.0", "description": "A JavaScript parser", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "keywords": [ + "babel", + "javascript", + "parser", + "babylon" + ], + "repository": "https://github.com/babel/babylon", + "main": "lib/index.js", + "files": [ + "bin", + "lib" + ], "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.14.0", @@ -73,25 +42,23 @@ "rollup-watch": "^3.2.2", "unicode-9.0.0": "~0.7.0" }, - "files": [ - "bin", - "lib" - ], - "greenkeeper": { - "ignore": [ - "cross-env" - ] + "bin": { + "babylon": "./bin/babylon.js" + }, + "scripts": { + "build": "npm run clean && rollup -c", + "coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json", + "lint": "eslint src bin", + "clean": "rimraf lib", + "flow": "flow", + "prepublish": "cross-env BABEL_ENV=production npm run build", + "preversion": "npm run test && npm run changelog", + "test": "npm run lint && npm run flow && npm run build -- -m && npm run test-only", + "test-only": "ava", + "test-ci": "nyc npm run test-only", + "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'", + "watch": "npm run clean && rollup -c --watch" }, - "homepage": "https://babeljs.io/", - "keywords": [ - "babel", - "javascript", - "parser", - "babylon" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "babylon", "nyc": { "include": [ "src/**/*.js", @@ -100,23 +67,18 @@ "sourceMap": false, "instrument": false }, - "repository": { - "type": "git", - "url": "git+https://github.com/babel/babylon.git" + "ava": { + "files": [ + "test/*.js" + ], + "source": [ + "src/**/*.js", + "bin/**/*.js" + ] }, - "scripts": { - "build": "npm run clean && rollup -c", - "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'", - "clean": "rimraf lib", - "coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json", - "flow": "flow", - "lint": "eslint src bin", - "prepublish": "cross-env BABEL_ENV=production npm run build", - "preversion": "npm run test && npm run changelog", - "test": "npm run lint && npm run flow && npm run build -- -m && npm run test-only", - "test-ci": "nyc npm run test-only", - "test-only": "ava", - "watch": "npm run clean && rollup -c --watch" - }, - "version": "6.18.0" + "greenkeeper": { + "ignore": [ + "cross-env" + ] + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/browserslist/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/browserslist/package.json index a5add43c..08213753 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/browserslist/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/browserslist/package.json @@ -1,51 +1,20 @@ { - "_args": [ - [ - "browserslist@2.8.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "browserslist", + "version": "2.8.0", + "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "keywords": [ + "caniuse", + "browsers", + "target" ], - "_from": "browserslist@2.8.0", - "_id": "browserslist@2.8.0", - "_inBundle": false, - "_integrity": "sha512-iiWHM1Et6Q4TQpB7Ar6pxuM3TNMXasVJY4Y/oh3q38EwR3Z+IdZ9MyVf7PI4MJFB4xpwMcZgs9bEUnPG2E3TCA==", - "_location": "/babel-preset-env/browserslist", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "browserslist@2.8.0", - "name": "browserslist", - "escapedName": "browserslist", - "rawSpec": "2.8.0", - "saveSpec": null, - "fetchSpec": "2.8.0" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.8.0.tgz", - "_spec": "2.8.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andrey Sitnik", - "email": "andrey@sitnik.ru" - }, - "bin": { - "browserslist": "./cli.js" - }, - "browser": { - "path": false, - "fs": false - }, - "bugs": { - "url": "https://github.com/ai/browserslist/issues" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "repository": "ai/browserslist", "dependencies": { "caniuse-lite": "^1.0.30000758", "electron-to-chromium": "^1.3.27" }, - "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "bin": "./cli.js", "devDependencies": { "cross-spawn": "^5.1.0", "eslint": "^4.10.0", @@ -79,7 +48,6 @@ } } }, - "homepage": "https://github.com/ai/browserslist#readme", "jest": { "coverageThreshold": { "global": { @@ -90,35 +58,27 @@ "test/fixtures" ] }, - "keywords": [ - "caniuse", - "browsers", - "target" - ], - "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": "eslint *.js test/*.js __mocks__/*.js", - "lint-staged": "lint-staged", - "spellcheck": "yaspeller-ci README.md CHANGELOG.md", - "test": "jest --coverage && yarn lint && yarn spellcheck && size-limit" - }, "size-limit": [ { "path": "index.js", "limit": "155 KB" } ], - "version": "2.8.0" + "scripts": { + "lint-staged": "lint-staged", + "spellcheck": "yaspeller-ci README.md CHANGELOG.md", + "lint": "eslint *.js test/*.js __mocks__/*.js", + "test": "jest --coverage && yarn lint && yarn spellcheck && size-limit" + }, + "lint-staged": { + "*.md": "yaspeller-ci", + "*.js": "eslint" + }, + "browser": { + "path": false, + "fs": false + }, + "pre-commit": [ + "lint-staged" + ] } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/caniuse-lite/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/caniuse-lite/package.json index c3fa05b0..8326a795 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/caniuse-lite/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/caniuse-lite/package.json @@ -1,46 +1,32 @@ { - "_args": [ - [ - "caniuse-lite@1.0.30000760", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "caniuse-lite@1.0.30000760", - "_id": "caniuse-lite@1.0.30000760", - "_inBundle": false, - "_integrity": "sha1-7HIDlXQvHH7IlH/W3SYE53qPmP8=", - "_location": "/babel-preset-env/caniuse-lite", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "caniuse-lite@1.0.30000760", - "name": "caniuse-lite", - "escapedName": "caniuse-lite", - "rawSpec": "1.0.30000760", - "saveSpec": null, - "fetchSpec": "1.0.30000760" + "name": "caniuse-lite", + "version": "1.0.30000760", + "description": "A smaller version of caniuse-db, with only the essentials!", + "main": "dist/unpacker/index.js", + "scripts": { + "prepublish": "del-cli dist && babel src/unpacker -d dist/unpacker && mkdir dist/lib && babel src/lib/statuses.js -o dist/lib/statuses.js && babel src/lib/supported.js -o dist/lib/supported.js", + "size": "size-limit consumer.js", + "pack": "del-cli data && babel-node src/packer/index.js", + "test": "jest src" }, - "_requiredBy": [ - "/babel-preset-env/browserslist" + "files": [ + "data", + "dist" + ], + "keywords": [ + "support", + "css", + "js", + "html5", + "svg" ], - "_resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000760.tgz", - "_spec": "1.0.30000760", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Ben Briggs", "email": "beneb.info@gmail.com", "url": "http://beneb.info" }, - "babel": { - "presets": [ - "env" - ] - }, - "bugs": { - "url": "https://github.com/ben-eb/caniuse-lite/issues" - }, - "description": "A smaller version of caniuse-db, with only the essentials!", + "repository": "ben-eb/caniuse-lite", + "license": "CC-BY-4.0", "devDependencies": { "all-contributors-cli": "^3.0.7", "any-observable": "^0.2.0", @@ -67,30 +53,9 @@ "unist-builder": "^1.0.2", "write-file-promise": "^1.0.0" }, - "files": [ - "data", - "dist" - ], - "homepage": "https://github.com/ben-eb/caniuse-lite#readme", - "keywords": [ - "support", - "css", - "js", - "html5", - "svg" - ], - "license": "CC-BY-4.0", - "main": "dist/unpacker/index.js", - "name": "caniuse-lite", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/caniuse-lite.git" - }, - "scripts": { - "pack": "del-cli data && babel-node src/packer/index.js", - "prepublish": "del-cli dist && babel src/unpacker -d dist/unpacker && mkdir dist/lib && babel src/lib/statuses.js -o dist/lib/statuses.js && babel src/lib/supported.js -o dist/lib/supported.js", - "size": "size-limit consumer.js", - "test": "jest src" - }, - "version": "1.0.30000760" + "babel": { + "presets": [ + "env" + ] + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/chalk/package.json index 6d6d8f6b..2b5881e9 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/chalk/package.json @@ -1,60 +1,26 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/babel-code-frame" - ], - "_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" - }, + "name": "chalk", + "version": "1.1.3", "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": "*" - }, + "license": "MIT", + "repository": "chalk/chalk", + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -78,36 +44,23 @@ "command-line", "text" ], - "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" + "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" }, - "scripts": { - "bench": "matcha benchmark.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "test": "xo && mocha" + "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": "*" }, - "version": "1.1.3", "xo": { "envs": [ "node", diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/core-js/package.json index 5b0607a8..444bafff 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/core-js/package.json @@ -1,62 +1,45 @@ { - "_args": [ - [ - "core-js@2.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@2.5.1", - "_id": "core-js@2.5.1", - "_inBundle": false, - "_integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", - "_location": "/babel-preset-env/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@2.5.1", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/babel-preset-env/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", - "_spec": "2.5.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "2.5.1", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "3.5.x", "LiveScript": "1.3.x", + "grunt": "1.0.x", + "grunt-cli": "1.2.x", + "grunt-livescript": "0.6.x", + "grunt-contrib-uglify": "3.0.x", + "grunt-contrib-watch": "1.0.x", + "grunt-contrib-clean": "1.1.x", + "grunt-contrib-copy": "1.0.x", + "grunt-karma": "2.0.x", + "karma": "1.7.x", + "karma-qunit": "1.2.x", + "karma-chrome-launcher": "2.2.x", + "karma-ie-launcher": "1.0.x", + "karma-firefox-launcher": "1.0.x", + "karma-phantomjs-launcher": "1.0.x", + "qunitjs": "2.4.x", + "phantomjs-prebuilt": "2.1.x", + "promises-aplus-tests": "2.1.x", "es-observable-tests": "0.2.x", "eslint": "4.5.x", "eslint-plugin-import": "2.7.x", - "grunt": "1.0.x", - "grunt-cli": "1.2.x", - "grunt-contrib-clean": "1.1.x", - "grunt-contrib-copy": "1.0.x", - "grunt-contrib-uglify": "3.0.x", - "grunt-contrib-watch": "1.0.x", - "grunt-karma": "2.0.x", - "grunt-livescript": "0.6.x", - "karma": "1.7.x", - "karma-chrome-launcher": "2.2.x", - "karma-firefox-launcher": "1.0.x", - "karma-ie-launcher": "1.0.x", - "karma-phantomjs-launcher": "1.0.x", - "karma-qunit": "1.2.x", - "phantomjs-prebuilt": "2.1.x", - "promises-aplus-tests": "2.1.x", - "qunitjs": "2.4.x", - "temp": "0.8.x", - "webpack": "3.5.x" + "temp": "0.8.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint ./", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", + "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES3", "ES5", @@ -85,20 +68,5 @@ "Dict", "polyfill", "shim" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint ./", - "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" - }, - "version": "2.5.1" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/debug/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/debug/package.json index be09552f..dc787ba7 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/debug/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/debug/package.json @@ -1,61 +1,25 @@ { - "_args": [ - [ - "debug@2.6.9", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "debug", + "version": "2.6.9", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "description": "small debugging utility", + "keywords": [ + "debug", + "log", + "debugger" ], - "_from": "debug@2.6.9", - "_id": "debug@2.6.9", - "_inBundle": false, - "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "_location": "/babel-preset-env/debug", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "debug@2.6.9", - "name": "debug", - "escapedName": "debug", - "rawSpec": "2.6.9", - "saveSpec": null, - "fetchSpec": "2.6.9" - }, - "_requiredBy": [ - "/babel-preset-env/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "_spec": "2.6.9", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "TJ Holowaychuk", - "email": "tj@vision-media.ca" - }, - "browser": "./src/browser.js", - "bugs": { - "url": "https://github.com/visionmedia/debug/issues" - }, - "component": { - "scripts": { - "debug/index.js": "browser.js", - "debug/debug.js": "debug.js" - } - }, + "author": "TJ Holowaychuk ", "contributors": [ - { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io" - }, - { - "name": "Andrew Rhyne", - "email": "rhyneandrew@gmail.com" - } + "Nathan Rajlich (http://n8.io)", + "Andrew Rhyne " ], + "license": "MIT", "dependencies": { "ms": "2.0.0" }, - "description": "small debugging utility", "devDependencies": { "browserify": "9.0.3", "chai": "^3.5.0", @@ -74,18 +38,12 @@ "sinon": "^1.17.6", "sinon-chai": "^2.8.0" }, - "homepage": "https://github.com/visionmedia/debug#readme", - "keywords": [ - "debug", - "log", - "debugger" - ], - "license": "MIT", "main": "./src/index.js", - "name": "debug", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/debug.git" - }, - "version": "2.6.9" + "browser": "./src/browser.js", + "component": { + "scripts": { + "debug/index.js": "browser.js", + "debug/debug.js": "debug.js" + } + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/electron-to-chromium/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/electron-to-chromium/package.json index d69ec4c6..7a22b9b2 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/electron-to-chromium/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/electron-to-chromium/package.json @@ -1,70 +1,36 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/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" - }, + "name": "electron-to-chromium", + "version": "1.3.27", "description": "Provides a list of electron-to-chromium version mappings", - "devDependencies": { - "ava": "^0.18.2", - "codecov": "^2.1.0", - "nyc": "^10.2.0", - "request": "^2.79.0", - "shelljs": "^0.7.6" - }, + "main": "index.js", "files": [ "versions.js", "full-versions.js", "chromium-versions.js", "full-chromium-versions.js" ], - "homepage": "https://github.com/kilian/electron-to-chromium#readme", + "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", - "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" + "devDependencies": { + "ava": "^0.18.2", + "codecov": "^2.1.0", + "nyc": "^10.2.0", + "request": "^2.79.0", + "shelljs": "^0.7.6" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/escape-string-regexp/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/escape-string-regexp/package.json index aa253b76..f307df34 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/escape-string-regexp/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/escape-string-regexp/package.json @@ -1,52 +1,27 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/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", + "name": "escape-string-regexp", + "version": "1.0.5", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -59,26 +34,8 @@ "special", "characters" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/esutils/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/esutils/package.json index f5377889..ddce20bf 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/esutils/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/esutils/package.json @@ -1,37 +1,31 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/babel-code-frame", - "/babel-preset-env/babel-types" - ], - "_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" - }, + "name": "esutils", "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", @@ -40,42 +34,16 @@ "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": { - "generate-regex": "node tools/generate-identifier-regex.js", - "lint": "jshint lib/*.js", "test": "npm run-script lint && npm run-script unit-test", - "unit-test": "mocha --compilers coffee:coffee-script -R spec" - }, - "version": "2.0.2" + "lint": "jshint lib/*.js", + "unit-test": "mocha --compilers coffee:coffee-script -R spec", + "generate-regex": "node tools/generate-identifier-regex.js" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/globals/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/globals/package.json index 6b288e58..410c0765 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/globals/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/globals/package.json @@ -1,52 +1,24 @@ { - "_args": [ - [ - "globals@9.18.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "globals@9.18.0", - "_id": "globals@9.18.0", - "_inBundle": false, - "_integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", - "_location": "/babel-preset-env/globals", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "globals@9.18.0", - "name": "globals", - "escapedName": "globals", - "rawSpec": "9.18.0", - "saveSpec": null, - "fetchSpec": "9.18.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "_spec": "9.18.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "globals", + "version": "9.18.0", + "description": "Global identifiers from different JavaScript environments", + "license": "MIT", + "repository": "sindresorhus/globals", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "http://sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/globals/issues" - }, - "description": "Global identifiers from different JavaScript environments", - "devDependencies": { - "mocha": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js", "globals.json" ], - "homepage": "https://github.com/sindresorhus/globals#readme", "keywords": [ "globals", "global", @@ -57,14 +29,7 @@ "eslint", "environments" ], - "license": "MIT", - "name": "globals", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/globals.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "9.18.0" + "devDependencies": { + "mocha": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/has-ansi/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/has-ansi/package.json index cd7336bb..01e08d4f 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/has-ansi/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/has-ansi/package.json @@ -1,54 +1,27 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/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", + "name": "has-ansi", + "version": "2.0.0", + "description": "Check if a string has ANSI escape codes", + "license": "MIT", + "repository": "sindresorhus/has-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.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" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-ansi#readme", "keywords": [ "ansi", "styles", @@ -73,26 +46,10 @@ "pattern", "has" ], - "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" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "node test.js" - }, - "version": "2.0.0" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/invariant/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/invariant/package.json index 453cefe7..e4b96722 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/invariant/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/invariant/package.json @@ -1,74 +1,35 @@ { - "_args": [ - [ - "invariant@2.2.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "invariant@2.2.2", - "_id": "invariant@2.2.2", - "_inBundle": false, - "_integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", - "_location": "/babel-preset-env/invariant", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "invariant@2.2.2", - "name": "invariant", - "escapedName": "invariant", - "rawSpec": "2.2.2", - "saveSpec": null, - "fetchSpec": "2.2.2" - }, - "_requiredBy": [ - "/babel-preset-env", - "/babel-preset-env/babel-traverse" - ], - "_resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", - "_spec": "2.2.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andres Suarez", - "email": "zertosh@gmail.com" - }, - "browser": "browser.js", - "browserify": { - "transform": [ - "loose-envify" - ] - }, - "bugs": { - "url": "https://github.com/zertosh/invariant/issues" - }, - "dependencies": { - "loose-envify": "^1.0.0" - }, + "name": "invariant", + "version": "2.2.2", "description": "invariant", - "devDependencies": { - "browserify": "^11.0.1", - "flow-bin": "^0.35.0", - "tap": "^1.4.0" - }, - "files": [ - "browser.js", - "invariant.js", - "invariant.js.flow" - ], - "homepage": "https://github.com/zertosh/invariant#readme", "keywords": [ "test", "invariant" ], "license": "BSD-3-Clause", - "main": "invariant.js", - "name": "invariant", - "repository": { - "type": "git", - "url": "git+https://github.com/zertosh/invariant.git" - }, + "author": "Andres Suarez ", + "files": [ + "browser.js", + "invariant.js", + "invariant.js.flow" + ], + "repository": "https://github.com/zertosh/invariant", "scripts": { "test": "NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js" }, - "version": "2.2.2" + "dependencies": { + "loose-envify": "^1.0.0" + }, + "devDependencies": { + "browserify": "^11.0.1", + "flow-bin": "^0.35.0", + "tap": "^1.4.0" + }, + "main": "invariant.js", + "browser": "browser.js", + "browserify": { + "transform": [ + "loose-envify" + ] + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/js-tokens/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/js-tokens/package.json index e2ead2c5..7f5bd780 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/js-tokens/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/js-tokens/package.json @@ -1,50 +1,9 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/babel-code-frame", - "/babel-preset-env/loose-envify" - ], - "_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" - }, + "name": "js-tokens", + "version": "3.0.2", + "author": "Simon Lydell", + "license": "MIT", "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", @@ -52,17 +11,20 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "3.0.2" + "devDependencies": { + "coffee-script": "~1.12.6", + "esprima": "^4.0.0", + "everything.js": "^1.0.3", + "mocha": "^3.4.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/jsesc/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/jsesc/package.json index 60676288..1216eefd 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/jsesc/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/jsesc/package.json @@ -1,87 +1,55 @@ { - "_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": "/babel-preset-env/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": [ - "/babel-preset-env/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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/lodash/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/lodash/package.json index 6b996ae5..028960d1 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/lodash/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/lodash/package.json @@ -1,74 +1,17 @@ { - "_args": [ - [ - "lodash@4.17.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "lodash@4.17.4", - "_id": "lodash@4.17.4", - "_inBundle": false, - "_integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", - "_location": "/babel-preset-env/lodash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash@4.17.4", - "name": "lodash", - "escapedName": "lodash", - "rawSpec": "4.17.4", - "saveSpec": null, - "fetchSpec": "4.17.4" - }, - "_requiredBy": [ - "/babel-preset-env/babel-helper-define-map", - "/babel-preset-env/babel-helper-regex", - "/babel-preset-env/babel-plugin-transform-es2015-block-scoping", - "/babel-preset-env/babel-template", - "/babel-preset-env/babel-traverse", - "/babel-preset-env/babel-types" - ], - "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "_spec": "4.17.4", - "_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": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash", + "version": "4.17.4", "description": "Lodash modular utilities.", + "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", + "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "modules", - "stdlib", - "util" - ], "license": "MIT", "main": "lodash.js", - "name": "lodash", - "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.17.4" + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/loose-envify/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/loose-envify/package.json index 68c2c47e..7952efa5 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/loose-envify/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/loose-envify/package.json @@ -1,52 +1,7 @@ { - "_args": [ - [ - "loose-envify@1.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "loose-envify@1.3.1", - "_id": "loose-envify@1.3.1", - "_inBundle": false, - "_integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", - "_location": "/babel-preset-env/loose-envify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "loose-envify@1.3.1", - "name": "loose-envify", - "escapedName": "loose-envify", - "rawSpec": "1.3.1", - "saveSpec": null, - "fetchSpec": "1.3.1" - }, - "_requiredBy": [ - "/babel-preset-env/invariant" - ], - "_resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "_spec": "1.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andres Suarez", - "email": "zertosh@gmail.com" - }, - "bin": { - "loose-envify": "cli.js" - }, - "bugs": { - "url": "https://github.com/zertosh/loose-envify/issues" - }, - "dependencies": { - "js-tokens": "^3.0.0" - }, + "name": "loose-envify", + "version": "1.3.1", "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "devDependencies": { - "browserify": "^13.1.1", - "envify": "^3.4.0", - "tap": "^8.0.0" - }, - "homepage": "https://github.com/zertosh/loose-envify", "keywords": [ "environment", "variables", @@ -56,9 +11,13 @@ "source", "configuration" ], + "homepage": "https://github.com/zertosh/loose-envify", "license": "MIT", + "author": "Andres Suarez ", "main": "index.js", - "name": "loose-envify", + "bin": { + "loose-envify": "cli.js" + }, "repository": { "type": "git", "url": "git://github.com/zertosh/loose-envify.git" @@ -66,5 +25,12 @@ "scripts": { "test": "tap test/*.js" }, - "version": "1.3.1" + "dependencies": { + "js-tokens": "^3.0.0" + }, + "devDependencies": { + "browserify": "^13.1.1", + "envify": "^3.4.0", + "tap": "^8.0.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ms/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ms/package.json index 1585431f..6a31c81f 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ms/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/ms/package.json @@ -1,42 +1,16 @@ { - "_args": [ - [ - "ms@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "ms@2.0.0", - "_id": "ms@2.0.0", - "_inBundle": false, - "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "_location": "/babel-preset-env/ms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ms@2.0.0", - "name": "ms", - "escapedName": "ms", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-preset-env/debug" - ], - "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zeit/ms/issues" - }, + "name": "ms", + "version": "2.0.0", "description": "Tiny milisecond conversion utility", - "devDependencies": { - "eslint": "3.19.0", - "expect.js": "0.3.1", - "husky": "0.13.3", - "lint-staged": "3.4.1", - "mocha": "3.4.1" + "repository": "zeit/ms", + "main": "./index", + "files": [ + "index.js" + ], + "scripts": { + "precommit": "lint-staged", + "lint": "eslint lib/* bin/*", + "test": "mocha tests.js" }, "eslintConfig": { "extends": "eslint:recommended", @@ -45,11 +19,6 @@ "es6": true } }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/zeit/ms#readme", - "license": "MIT", "lint-staged": { "*.js": [ "npm run lint", @@ -57,16 +26,12 @@ "git add" ] }, - "main": "./index", - "name": "ms", - "repository": { - "type": "git", - "url": "git+https://github.com/zeit/ms.git" - }, - "scripts": { - "lint": "eslint lib/* bin/*", - "precommit": "lint-staged", - "test": "mocha tests.js" - }, - "version": "2.0.0" + "license": "MIT", + "devDependencies": { + "eslint": "3.19.0", + "expect.js": "0.3.1", + "husky": "0.13.3", + "lint-staged": "3.4.1", + "mocha": "3.4.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/private/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/private/package.json index 2e95596f..6f2b4570 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/private/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/private/package.json @@ -1,50 +1,10 @@ { - "_args": [ - [ - "private@0.1.8", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "private@0.1.8", - "_id": "private@0.1.8", - "_inBundle": false, - "_integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "_location": "/babel-preset-env/private", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "private@0.1.8", - "name": "private", - "escapedName": "private", - "rawSpec": "0.1.8", - "saveSpec": null, - "fetchSpec": "0.1.8" - }, - "_requiredBy": [ - "/babel-preset-env/regenerator-transform" - ], - "_resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "_spec": "0.1.8", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Ben Newman", "email": "bn@cs.stanford.edu" }, - "bugs": { - "url": "https://github.com/benjamn/private/issues" - }, + "name": "private", "description": "Utility for associating truly private state with any JavaScript object", - "devDependencies": { - "mocha": "^4.0.1" - }, - "engines": { - "node": ">= 0.6" - }, - "files": [ - "private.js" - ], - "homepage": "http://github.com/benjamn/private", "keywords": [ "private", "access control", @@ -56,15 +16,24 @@ "scope", "es5" ], - "license": "MIT", - "main": "private.js", - "name": "private", + "version": "0.1.8", + "homepage": "http://github.com/benjamn/private", "repository": { "type": "git", "url": "git://github.com/benjamn/private.git" }, + "license": "MIT", + "main": "private.js", + "files": [ + "private.js" + ], "scripts": { "test": "mocha --reporter spec --full-trace test/run.js" }, - "version": "0.1.8" + "engines": { + "node": ">= 0.6" + }, + "devDependencies": { + "mocha": "^4.0.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerate/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerate/package.json index 08e8427b..5c1a6a6e 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerate/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerate/package.json @@ -1,50 +1,9 @@ { - "_args": [ - [ - "regenerate@1.3.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerate@1.3.3", - "_id": "regenerate@1.3.3", - "_inBundle": false, - "_integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==", - "_location": "/babel-preset-env/regenerate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerate@1.3.3", - "name": "regenerate", - "escapedName": "regenerate", - "rawSpec": "1.3.3", - "saveSpec": null, - "fetchSpec": "1.3.3" - }, - "_requiredBy": [ - "/babel-preset-env/regexpu-core" - ], - "_resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz", - "_spec": "1.3.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/regenerate/issues" - }, + "name": "regenerate", + "version": "1.3.3", "description": "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.", - "devDependencies": { - "codecov": "^1.0.1", - "grunt": "^0.4.5", - "grunt-shell": "^1.1.1", - "istanbul": "^0.4.3", - "qunit-extras": "^1.1.0", - "qunitjs": "~1.11.0", - "requirejs": "^2.1.15" - }, "homepage": "https://mths.be/regenerate", + "main": "regenerate.js", "keywords": [ "regex", "regexp", @@ -54,15 +13,26 @@ "tool" ], "license": "MIT", - "main": "regenerate.js", - "name": "regenerate", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, "repository": { "type": "git", - "url": "git+https://github.com/mathiasbynens/regenerate.git" + "url": "https://github.com/mathiasbynens/regenerate.git" }, + "bugs": "https://github.com/mathiasbynens/regenerate/issues", "scripts": { "cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js", "test": "node tests/tests.js" }, - "version": "1.3.3" + "devDependencies": { + "codecov": "^1.0.1", + "grunt": "^0.4.5", + "grunt-shell": "^1.1.1", + "istanbul": "^0.4.3", + "qunit-extras": "^1.1.0", + "qunitjs": "~1.11.0", + "requirejs": "^2.1.15" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-runtime/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-runtime/package.json index f855966c..7dcf6c37 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-runtime/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "regenerator-runtime@0.11.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerator-runtime@0.11.0", - "_id": "regenerator-runtime@0.11.0", - "_inBundle": false, - "_integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "_location": "/babel-preset-env/regenerator-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-runtime@0.11.0", - "name": "regenerator-runtime", - "escapedName": "regenerator-runtime", - "rawSpec": "0.11.0", - "saveSpec": null, - "fetchSpec": "0.11.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "_spec": "0.11.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "regenerator-runtime", + "author": "Ben Newman ", "description": "Runtime for Regenerator-compiled generator and async functions.", + "version": "0.11.0", + "main": "runtime-module.js", "keywords": [ "regenerator", "runtime", "generator", "async" ], - "license": "MIT", - "main": "runtime-module.js", - "name": "regenerator-runtime", "repository": { "type": "git", "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" }, - "version": "0.11.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-transform/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-transform/package.json index 24defec8..afc56f02 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-transform/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regenerator-transform/package.json @@ -1,35 +1,22 @@ { - "_args": [ - [ - "regenerator-transform@0.10.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "regenerator-transform", + "author": "Ben Newman ", + "description": "Explode async and generator functions into a state machine.", + "version": "0.10.1", + "main": "lib/index.js", + "keywords": [ + "regenerator", + "runtime", + "generator", + "async" ], - "_from": "regenerator-transform@0.10.1", - "_id": "regenerator-transform@0.10.1", - "_inBundle": false, - "_integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==", - "_location": "/babel-preset-env/regenerator-transform", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-transform@0.10.1", - "name": "regenerator-transform", - "escapedName": "regenerator-transform", - "rawSpec": "0.10.1", - "saveSpec": null, - "fetchSpec": "0.10.1" + "repository": { + "type": "git", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform" }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-regenerator" - ], - "_resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz", - "_spec": "0.10.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" + "license": "BSD", + "scripts": { + "prepublish": "babel src/ --out-dir lib/" }, "babel": { "presets": [ @@ -49,27 +36,9 @@ "babel-types": "^6.19.0", "private": "^0.1.6" }, - "description": "Explode async and generator functions into a state machine.", "devDependencies": { "babel-cli": "^6.9.0", "babel-plugin-transform-runtime": "^6.9.0", "babel-preset-env": "^1.2.2" - }, - "keywords": [ - "regenerator", - "runtime", - "generator", - "async" - ], - "license": "BSD", - "main": "lib/index.js", - "name": "regenerator-transform", - "repository": { - "type": "git", - "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform" - }, - "scripts": { - "prepublish": "babel src/ --out-dir lib/" - }, - "version": "0.10.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regexpu-core/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regexpu-core/package.json index f26aba0d..ef69fa30 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regexpu-core/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regexpu-core/package.json @@ -1,91 +1,61 @@ { - "_args": [ - [ - "regexpu-core@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regexpu-core@2.0.0", - "_id": "regexpu-core@2.0.0", - "_inBundle": false, - "_integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", - "_location": "/babel-preset-env/regexpu-core", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regexpu-core@2.0.0", - "name": "regexpu-core", - "escapedName": "regexpu-core", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-preset-env/babel-plugin-transform-es2015-unicode-regex" - ], - "_resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/regexpu-core/issues" - }, - "dependencies": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - }, - "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", - "devDependencies": { - "coveralls": "^2.11.2", - "istanbul": "^0.4.0", - "jsesc": "^0.5.0", - "lodash": "^3.6.0", - "mocha": "^2.2.1", - "regexpu-fixtures": "^2.0.0", - "unicode-8.0.0": "^0.1.5" - }, - "files": [ - "LICENSE-MIT.txt", - "rewrite-pattern.js", - "data/character-class-escape-sets.js", - "data/iu-mappings.json" - ], - "homepage": "https://mths.be/regexpu", - "keywords": [ - "codegen", - "desugaring", - "ecmascript", - "es5", - "es6", - "harmony", - "javascript", - "refactoring", - "regex", - "regexp", - "regular expressions", - "rewriting", - "syntax", - "transformation", - "transpile", - "transpiler", - "unicode" - ], - "license": "MIT", - "main": "rewrite-pattern.js", - "name": "regexpu-core", - "repository": { - "type": "git", - "url": "git+https://github.com/mathiasbynens/regexpu-core.git" - }, - "scripts": { - "build": "node scripts/iu-mappings.js && node scripts/character-class-escape-sets.js", - "coverage": "istanbul cover --report html node_modules/.bin/_mocha tests/tests.js -- -u exports -R spec", - "test": "mocha tests" - }, - "version": "2.0.0" + "name": "regexpu-core", + "version": "2.0.0", + "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", + "homepage": "https://mths.be/regexpu", + "main": "rewrite-pattern.js", + "keywords": [ + "codegen", + "desugaring", + "ecmascript", + "es5", + "es6", + "harmony", + "javascript", + "refactoring", + "regex", + "regexp", + "regular expressions", + "rewriting", + "syntax", + "transformation", + "transpile", + "transpiler", + "unicode" + ], + "license": "MIT", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "repository": { + "type": "git", + "url": "https://github.com/mathiasbynens/regexpu-core.git" + }, + "bugs": "https://github.com/mathiasbynens/regexpu-core/issues", + "files": [ + "LICENSE-MIT.txt", + "rewrite-pattern.js", + "data/character-class-escape-sets.js", + "data/iu-mappings.json" + ], + "scripts": { + "build": "node scripts/iu-mappings.js && node scripts/character-class-escape-sets.js", + "test": "mocha tests", + "coverage": "istanbul cover --report html node_modules/.bin/_mocha tests/tests.js -- -u exports -R spec" + }, + "dependencies": { + "regenerate": "^1.2.1", + "regjsgen": "^0.2.0", + "regjsparser": "^0.1.4" + }, + "devDependencies": { + "coveralls": "^2.11.2", + "istanbul": "^0.4.0", + "jsesc": "^0.5.0", + "lodash": "^3.6.0", + "mocha": "^2.2.1", + "regexpu-fixtures": "^2.0.0", + "unicode-8.0.0": "^0.1.5" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsgen/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsgen/package.json index 98a9db34..a62b80ec 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsgen/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsgen/package.json @@ -1,63 +1,10 @@ { - "_args": [ - [ - "regjsgen@0.2.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regjsgen@0.2.0", - "_id": "regjsgen@0.2.0", - "_inBundle": false, - "_integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", - "_location": "/babel-preset-env/regjsgen", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regjsgen@0.2.0", - "name": "regjsgen", - "escapedName": "regjsgen", - "rawSpec": "0.2.0", - "saveSpec": null, - "fetchSpec": "0.2.0" - }, - "_requiredBy": [ - "/babel-preset-env/regexpu-core" - ], - "_resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "_spec": "0.2.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Benjamin Tan", - "email": "demoneaux@gmail.com", - "url": "https://d10.github.io/" - }, - "bugs": { - "url": "https://github.com/d10/regjsgen/issues" - }, - "contributors": [ - { - "name": "Benjamin Tan", - "email": "demoneaux@gmail.com", - "url": "https://d10.github.io/" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "regjsgen", + "version": "0.2.0", "description": "Generate `RegExp`s from RegJSParser’s AST", - "devDependencies": { - "got": "~1.2.0", - "jsesc": "~0.5.0" - }, - "files": [ - "LICENSE.txt", - "regjsgen.js", - "README.md" - ], "homepage": "https://github.com/d10/regjsgen", + "license": "MIT", + "main": "regjsgen.js", "keywords": [ "ast", "generate", @@ -65,15 +12,22 @@ "regexp", "regular expressions" ], - "license": "MIT", - "main": "regjsgen.js", - "name": "regjsgen", - "repository": { - "type": "git", - "url": "git+https://github.com/d10/regjsgen.git" - }, + "author": "Benjamin Tan (https://d10.github.io/)", + "contributors": [ + "Benjamin Tan (https://d10.github.io/)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "d10/regjsgen", "scripts": { "test": "node test/test.js" }, - "version": "0.2.0" + "files": [ + "LICENSE.txt", + "regjsgen.js", + "README.md" + ], + "devDependencies": { + "got": "~1.2.0", + "jsesc": "~0.5.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsparser/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsparser/package.json index aa0c7240..5c5e65f8 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsparser/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/regjsparser/package.json @@ -1,49 +1,17 @@ { - "_args": [ - [ - "regjsparser@0.1.5", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regjsparser@0.1.5", - "_id": "regjsparser@0.1.5", - "_inBundle": false, - "_integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "_location": "/babel-preset-env/regjsparser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regjsparser@0.1.5", - "name": "regjsparser", - "escapedName": "regjsparser", - "rawSpec": "0.1.5", - "saveSpec": null, - "fetchSpec": "0.1.5" + "name": "regjsparser", + "version": "0.1.5", + "author": "'Julian Viereck' ", + "license": "BSD", + "main": "./parser", + "bin": "bin/parser", + "homepage": "https://github.com/jviereck/regjsparser", + "repository": { + "type": "git", + "url": "git@github.com:jviereck/regjsparser.git" }, - "_requiredBy": [ - "/babel-preset-env/regexpu-core" - ], - "_resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "_spec": "0.1.5", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "'Julian Viereck'", - "email": "julian.viereck@gmail.com" - }, - "bin": { - "regjsparser": "bin/parser" - }, - "bugs": { - "url": "https://github.com/jviereck/regjsparser/issues" - }, - "dependencies": { - "jsesc": "~0.5.0" - }, - "description": "Parsing the JavaScript's RegExp in JavaScript.", - "devDependencies": { - "regenerate": "~1.0.1", - "unicode-7.0.0": "~0.1.5" + "scripts": { + "test": "node test/index.js" }, "files": [ "bin/", @@ -51,16 +19,11 @@ "parser.js", "README.md" ], - "homepage": "https://github.com/jviereck/regjsparser", - "license": "BSD", - "main": "./parser", - "name": "regjsparser", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/jviereck/regjsparser.git" + "dependencies": { + "jsesc": "~0.5.0" }, - "scripts": { - "test": "node test/index.js" - }, - "version": "0.1.5" + "devDependencies": { + "regenerate": "~1.0.1", + "unicode-7.0.0": "~0.1.5" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/semver/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/semver/package.json index f950f545..ca7e4b41 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/semver/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/semver/package.json @@ -1,57 +1,22 @@ { - "_args": [ - [ - "semver@5.4.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "semver@5.4.1", - "_id": "semver@5.4.1", - "_inBundle": false, - "_integrity": "sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==", - "_location": "/babel-preset-env/semver", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "semver@5.4.1", - "name": "semver", - "escapedName": "semver", - "rawSpec": "5.4.1", - "saveSpec": null, - "fetchSpec": "5.4.1" - }, - "_requiredBy": [ - "/babel-preset-env" - ], - "_resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", - "_spec": "5.4.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bin": { - "semver": "./bin/semver" - }, - "bugs": { - "url": "https://github.com/npm/node-semver/issues" - }, + "name": "semver", + "version": "5.4.1", "description": "The semantic version parser used by npm.", + "main": "semver.js", + "scripts": { + "test": "tap test/*.js --cov -J" + }, "devDependencies": { "tap": "^10.7.0" }, + "license": "ISC", + "repository": "https://github.com/npm/node-semver", + "bin": { + "semver": "./bin/semver" + }, "files": [ "bin", "range.bnf", "semver.js" - ], - "homepage": "https://github.com/npm/node-semver#readme", - "license": "ISC", - "main": "semver.js", - "name": "semver", - "repository": { - "type": "git", - "url": "git+https://github.com/npm/node-semver.git" - }, - "scripts": { - "test": "tap test/*.js --cov -J" - }, - "version": "5.4.1" + ] } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/strip-ansi/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/strip-ansi/package.json index 47dbbf08..301685ba 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/strip-ansi/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/strip-ansi/package.json @@ -1,55 +1,28 @@ { - "_args": [ - [ - "strip-ansi@3.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "strip-ansi@3.0.1", - "_id": "strip-ansi@3.0.1", - "_inBundle": false, - "_integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "_location": "/babel-preset-env/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@3.0.1", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/babel-preset-env/chalk" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "strip-ansi", + "version": "3.0.1", + "description": "Strip ANSI escape codes", + "license": "MIT", + "repository": "chalk/strip-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "description": "Strip ANSI escape codes", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -74,31 +47,11 @@ "command-line", "text" ], - "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": "JD Ballard", - "email": "i.am.qix@gmail.com", - "url": "github.com/qix-" - } - ], - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.1" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/supports-color/package.json index 6f77fd3d..3bb77ac1 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/supports-color/package.json @@ -1,52 +1,27 @@ { - "_args": [ - [ - "supports-color@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "supports-color@2.0.0", - "_id": "supports-color@2.0.0", - "_inBundle": false, - "_integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "_location": "/babel-preset-env/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@2.0.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/babel-preset-env/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "supports-color", + "version": "2.0.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "mocha": "*", - "require-uncached": "^1.0.2" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -67,26 +42,8 @@ "capability", "detect" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Appelman", - "email": "jappelman@xebia.com", - "url": "jbnicolai.com" - } - ], - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "2.0.0" + "devDependencies": { + "mocha": "*", + "require-uncached": "^1.0.2" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/to-fast-properties/package.json b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/to-fast-properties/package.json index 3102dbcf..f1028bd4 100644 --- a/goTorrentWebUI/node_modules/babel-preset-env/node_modules/to-fast-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-env/node_modules/to-fast-properties/package.json @@ -1,51 +1,23 @@ { - "_args": [ - [ - "to-fast-properties@1.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "to-fast-properties@1.0.3", - "_id": "to-fast-properties@1.0.3", - "_inBundle": false, - "_integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", - "_location": "/babel-preset-env/to-fast-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "to-fast-properties@1.0.3", - "name": "to-fast-properties", - "escapedName": "to-fast-properties", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/babel-preset-env/babel-types" - ], - "_resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "to-fast-properties", + "version": "1.0.3", + "description": "Force V8 to use fast properties for an object", + "license": "MIT", + "repository": "sindresorhus/to-fast-properties", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/to-fast-properties/issues" - }, - "description": "Force V8 to use fast properties for an object", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node --allow-natives-syntax test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/to-fast-properties#readme", "keywords": [ "object", "obj", @@ -57,14 +29,7 @@ "convert", "mode" ], - "license": "MIT", - "name": "to-fast-properties", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/to-fast-properties.git" - }, - "scripts": { - "test": "node --allow-natives-syntax test.js" - }, - "version": "1.0.3" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-helper-builder-react-jsx/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-helper-builder-react-jsx/package.json index a1355b36..7cca2922 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-helper-builder-react-jsx/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-helper-builder-react-jsx/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-helper-builder-react-jsx@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-helper-builder-react-jsx@6.26.0", - "_id": "babel-helper-builder-react-jsx@6.26.0", - "_inBundle": false, - "_integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=", - "_location": "/babel-preset-react/babel-helper-builder-react-jsx", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-helper-builder-react-jsx@6.26.0", - "name": "babel-helper-builder-react-jsx", - "escapedName": "babel-helper-builder-react-jsx", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-react/babel-plugin-transform-react-jsx" - ], - "_resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz", - "_spec": "6.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "babel-helper-builder-react-jsx", + "version": "6.26.0", + "description": "Helper function to build react jsx", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx", + "license": "MIT", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "babel-types": "^6.26.0", "esutils": "^2.0.2" - }, - "description": "Helper function to build react jsx", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-helper-builder-react-jsx", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-flow/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-flow/package.json index 8abf8783..2a701dd8 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-flow/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-flow/package.json @@ -1,44 +1,13 @@ { - "_args": [ - [ - "babel-plugin-syntax-flow@6.18.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-flow@6.18.0", - "_id": "babel-plugin-syntax-flow@6.18.0", - "_inBundle": false, - "_integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=", - "_location": "/babel-preset-react/babel-plugin-syntax-flow", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-flow@6.18.0", - "name": "babel-plugin-syntax-flow", - "escapedName": "babel-plugin-syntax-flow", - "rawSpec": "6.18.0", - "saveSpec": null, - "fetchSpec": "6.18.0" - }, - "_requiredBy": [ - "/babel-preset-react/babel-plugin-transform-flow-strip-types" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz", - "_spec": "6.18.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-flow", + "version": "6.18.0", "description": "Allow parsing of the flow syntax", - "devDependencies": {}, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-flow", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-flow", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-flow" - }, - "version": "6.18.0" + "dependencies": {}, + "devDependencies": {} } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-jsx/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-jsx/package.json index 9683afbf..d9a604d0 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-jsx/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-syntax-jsx/package.json @@ -1,47 +1,13 @@ { - "_args": [ - [ - "babel-plugin-syntax-jsx@6.18.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-syntax-jsx@6.18.0", - "_id": "babel-plugin-syntax-jsx@6.18.0", - "_inBundle": false, - "_integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=", - "_location": "/babel-preset-react/babel-plugin-syntax-jsx", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-syntax-jsx@6.18.0", - "name": "babel-plugin-syntax-jsx", - "escapedName": "babel-plugin-syntax-jsx", - "rawSpec": "6.18.0", - "saveSpec": null, - "fetchSpec": "6.18.0" - }, - "_requiredBy": [ - "/babel-preset-react", - "/babel-preset-react/babel-plugin-transform-react-jsx", - "/babel-preset-react/babel-plugin-transform-react-jsx-self", - "/babel-preset-react/babel-plugin-transform-react-jsx-source" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "_spec": "6.18.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": {}, + "name": "babel-plugin-syntax-jsx", + "version": "6.18.0", "description": "Allow parsing of jsx", - "devDependencies": {}, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-syntax-jsx", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx" - }, - "version": "6.18.0" + "dependencies": {}, + "devDependencies": {} } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-flow-strip-types/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-flow-strip-types/package.json index 8d19993f..58647d44 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-flow-strip-types/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-flow-strip-types/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-flow-strip-types@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-flow-strip-types@6.22.0", - "_id": "babel-plugin-transform-flow-strip-types@6.22.0", - "_inBundle": false, - "_integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", - "_location": "/babel-preset-react/babel-plugin-transform-flow-strip-types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-flow-strip-types@6.22.0", - "name": "babel-plugin-transform-flow-strip-types", - "escapedName": "babel-plugin-transform-flow-strip-types", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-react/babel-preset-flow" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-plugin-syntax-flow": "^6.18.0", - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-flow-strip-types", + "version": "6.22.0", "description": "Strip flow type annotations from your output code.", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-flow-strip-types", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-flow-strip-types", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-flow-strip-types" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-plugin-syntax-flow": "^6.18.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-display-name/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-display-name/package.json index b68e3f22..ebf43652 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-display-name/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-display-name/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "babel-plugin-transform-react-display-name@6.25.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-react-display-name@6.25.0", - "_id": "babel-plugin-transform-react-display-name@6.25.0", - "_inBundle": false, - "_integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", - "_location": "/babel-preset-react/babel-plugin-transform-react-display-name", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-react-display-name@6.25.0", - "name": "babel-plugin-transform-react-display-name", - "escapedName": "babel-plugin-transform-react-display-name", - "rawSpec": "6.25.0", - "saveSpec": null, - "fetchSpec": "6.25.0" - }, - "_requiredBy": [ - "/babel-preset-react" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz", - "_spec": "6.25.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-react-display-name", + "version": "6.25.0", "description": "Add displayName to React.createClass calls", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-display-name", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-react-display-name", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-display-name" + "dependencies": { + "babel-runtime": "^6.22.0" }, - "version": "6.25.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-self/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-self/package.json index 64598c72..45f1018b 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-self/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-self/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-react-jsx-self@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-react-jsx-self@6.22.0", - "_id": "babel-plugin-transform-react-jsx-self@6.22.0", - "_inBundle": false, - "_integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", - "_location": "/babel-preset-react/babel-plugin-transform-react-jsx-self", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-react-jsx-self@6.22.0", - "name": "babel-plugin-transform-react-jsx-self", - "escapedName": "babel-plugin-transform-react-jsx-self", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-react" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-react-jsx-self", + "version": "6.22.0", "description": "Add a __self prop to all JSX Elements", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx-self", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-react-jsx-self", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx-self" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-plugin-syntax-jsx": "^6.8.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-source/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-source/package.json index 53e997c0..e7e5c877 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-source/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx-source/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "babel-plugin-transform-react-jsx-source@6.22.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-react-jsx-source@6.22.0", - "_id": "babel-plugin-transform-react-jsx-source@6.22.0", - "_inBundle": false, - "_integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", - "_location": "/babel-preset-react/babel-plugin-transform-react-jsx-source", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-react-jsx-source@6.22.0", - "name": "babel-plugin-transform-react-jsx-source", - "escapedName": "babel-plugin-transform-react-jsx-source", - "rawSpec": "6.22.0", - "saveSpec": null, - "fetchSpec": "6.22.0" - }, - "_requiredBy": [ - "/babel-preset-react" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz", - "_spec": "6.22.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-react-jsx-source", + "version": "6.22.0", "description": "Add a __source prop to all JSX Elements", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.22.0" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx-source", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-react-jsx-source", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx-source" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-plugin-syntax-jsx": "^6.8.0" }, - "version": "6.22.0" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx/package.json index f17af7ec..cf5e7cce 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-plugin-transform-react-jsx/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "babel-plugin-transform-react-jsx@6.24.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-plugin-transform-react-jsx@6.24.1", - "_id": "babel-plugin-transform-react-jsx@6.24.1", - "_inBundle": false, - "_integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", - "_location": "/babel-preset-react/babel-plugin-transform-react-jsx", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-plugin-transform-react-jsx@6.24.1", - "name": "babel-plugin-transform-react-jsx", - "escapedName": "babel-plugin-transform-react-jsx", - "rawSpec": "6.24.1", - "saveSpec": null, - "fetchSpec": "6.24.1" - }, - "_requiredBy": [ - "/babel-preset-react" - ], - "_resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz", - "_spec": "6.24.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "dependencies": { - "babel-helper-builder-react-jsx": "^6.24.1", - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - }, + "name": "babel-plugin-transform-react-jsx", + "version": "6.24.1", "description": "Turn JSX into React function calls", - "devDependencies": { - "babel-helper-plugin-test-runner": "^6.24.1" - }, + "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-plugin" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-plugin-transform-react-jsx", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx" + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-helper-builder-react-jsx": "^6.24.1", + "babel-plugin-syntax-jsx": "^6.8.0" }, - "version": "6.24.1" + "devDependencies": { + "babel-helper-plugin-test-runner": "^6.24.1" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-preset-flow/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-preset-flow/package.json index 1e056c07..e9f4cb59 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-preset-flow/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-preset-flow/package.json @@ -1,52 +1,18 @@ { - "_args": [ - [ - "babel-preset-flow@6.23.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-preset-flow@6.23.0", - "_id": "babel-preset-flow@6.23.0", - "_inBundle": false, - "_integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", - "_location": "/babel-preset-react/babel-preset-flow", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-preset-flow@6.23.0", - "name": "babel-preset-flow", - "escapedName": "babel-preset-flow", - "rawSpec": "6.23.0", - "saveSpec": null, - "fetchSpec": "6.23.0" - }, - "_requiredBy": [ - "/babel-preset-react" - ], - "_resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz", - "_spec": "6.23.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "James Kyle", - "email": "me@thejameskyle.com" - }, - "dependencies": { - "babel-plugin-transform-flow-strip-types": "^6.22.0" - }, + "name": "babel-preset-flow", + "version": "6.23.0", "description": "Babel preset for all Flow plugins.", + "author": "James Kyle ", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-preset-flow", + "license": "MIT", + "main": "lib/index.js", "keywords": [ "babel-preset", "flowtype", "flow", "types" ], - "license": "MIT", - "main": "lib/index.js", - "name": "babel-preset-flow", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-preset-flow" - }, - "version": "6.23.0" + "dependencies": { + "babel-plugin-transform-flow-strip-types": "^6.22.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-runtime/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-runtime/package.json index e90e137b..c17eb9a3 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-runtime/package.json @@ -1,56 +1,16 @@ { - "_args": [ - [ - "babel-runtime@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-runtime@6.26.0", - "_id": "babel-runtime@6.26.0", - "_inBundle": false, - "_integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "_location": "/babel-preset-react/babel-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-runtime@6.26.0", - "name": "babel-runtime", - "escapedName": "babel-runtime", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-react/babel-helper-builder-react-jsx", - "/babel-preset-react/babel-plugin-transform-flow-strip-types", - "/babel-preset-react/babel-plugin-transform-react-display-name", - "/babel-preset-react/babel-plugin-transform-react-jsx", - "/babel-preset-react/babel-plugin-transform-react-jsx-self", - "/babel-preset-react/babel-plugin-transform-react-jsx-source", - "/babel-preset-react/babel-types" - ], - "_resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-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" - }, + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", + "author": "Sebastian McKenzie ", "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" }, - "description": "babel selfContained runtime", "devDependencies": { "babel-helpers": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0" - }, - "license": "MIT", - "name": "babel-runtime", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-types/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-types/package.json index 1ec7c3c7..e93188af 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-types/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/babel-types/package.json @@ -1,54 +1,20 @@ { - "_args": [ - [ - "babel-types@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-types@6.26.0", - "_id": "babel-types@6.26.0", - "_inBundle": false, - "_integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "_location": "/babel-preset-react/babel-types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-types@6.26.0", - "name": "babel-types", - "escapedName": "babel-types", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/babel-preset-react/babel-helper-builder-react-jsx" - ], - "_resolved": "https://registry.npmjs.org/babel-types/-/babel-types-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" - }, + "name": "babel-types", + "version": "6.26.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-types", + "main": "lib/index.js", "dependencies": { "babel-runtime": "^6.26.0", "esutils": "^2.0.2", "lodash": "^4.17.4", "to-fast-properties": "^1.0.3" }, - "description": "Babel Types is a Lodash-esque utility library for AST nodes", "devDependencies": { "babel-generator": "^6.26.0", "babylon": "^6.18.0" - }, - "homepage": "https://babeljs.io/", - "license": "MIT", - "main": "lib/index.js", - "name": "babel-types", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-types" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/core-js/package.json index f8fe949c..444bafff 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/core-js/package.json @@ -1,62 +1,45 @@ { - "_args": [ - [ - "core-js@2.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@2.5.1", - "_id": "core-js@2.5.1", - "_inBundle": false, - "_integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", - "_location": "/babel-preset-react/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@2.5.1", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/babel-preset-react/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", - "_spec": "2.5.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "2.5.1", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "3.5.x", "LiveScript": "1.3.x", + "grunt": "1.0.x", + "grunt-cli": "1.2.x", + "grunt-livescript": "0.6.x", + "grunt-contrib-uglify": "3.0.x", + "grunt-contrib-watch": "1.0.x", + "grunt-contrib-clean": "1.1.x", + "grunt-contrib-copy": "1.0.x", + "grunt-karma": "2.0.x", + "karma": "1.7.x", + "karma-qunit": "1.2.x", + "karma-chrome-launcher": "2.2.x", + "karma-ie-launcher": "1.0.x", + "karma-firefox-launcher": "1.0.x", + "karma-phantomjs-launcher": "1.0.x", + "qunitjs": "2.4.x", + "phantomjs-prebuilt": "2.1.x", + "promises-aplus-tests": "2.1.x", "es-observable-tests": "0.2.x", "eslint": "4.5.x", "eslint-plugin-import": "2.7.x", - "grunt": "1.0.x", - "grunt-cli": "1.2.x", - "grunt-contrib-clean": "1.1.x", - "grunt-contrib-copy": "1.0.x", - "grunt-contrib-uglify": "3.0.x", - "grunt-contrib-watch": "1.0.x", - "grunt-karma": "2.0.x", - "grunt-livescript": "0.6.x", - "karma": "1.7.x", - "karma-chrome-launcher": "2.2.x", - "karma-firefox-launcher": "1.0.x", - "karma-ie-launcher": "1.0.x", - "karma-phantomjs-launcher": "1.0.x", - "karma-qunit": "1.2.x", - "phantomjs-prebuilt": "2.1.x", - "promises-aplus-tests": "2.1.x", - "qunitjs": "2.4.x", - "temp": "0.8.x", - "webpack": "3.5.x" + "temp": "0.8.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint ./", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", + "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES3", "ES5", @@ -85,20 +68,5 @@ "Dict", "polyfill", "shim" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint ./", - "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" - }, - "version": "2.5.1" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/esutils/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/esutils/package.json index 1bc77afe..ddce20bf 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/esutils/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/esutils/package.json @@ -1,37 +1,31 @@ { - "_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": "/babel-preset-react/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": [ - "/babel-preset-react/babel-helper-builder-react-jsx", - "/babel-preset-react/babel-types" - ], - "_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" - }, + "name": "esutils", "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", @@ -40,42 +34,16 @@ "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": { - "generate-regex": "node tools/generate-identifier-regex.js", - "lint": "jshint lib/*.js", "test": "npm run-script lint && npm run-script unit-test", - "unit-test": "mocha --compilers coffee:coffee-script -R spec" - }, - "version": "2.0.2" + "lint": "jshint lib/*.js", + "unit-test": "mocha --compilers coffee:coffee-script -R spec", + "generate-regex": "node tools/generate-identifier-regex.js" + } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/lodash/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/lodash/package.json index ae77b3d6..028960d1 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/lodash/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/lodash/package.json @@ -1,69 +1,17 @@ { - "_args": [ - [ - "lodash@4.17.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "lodash@4.17.4", - "_id": "lodash@4.17.4", - "_inBundle": false, - "_integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", - "_location": "/babel-preset-react/lodash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash@4.17.4", - "name": "lodash", - "escapedName": "lodash", - "rawSpec": "4.17.4", - "saveSpec": null, - "fetchSpec": "4.17.4" - }, - "_requiredBy": [ - "/babel-preset-react/babel-types" - ], - "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "_spec": "4.17.4", - "_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": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash", + "version": "4.17.4", "description": "Lodash modular utilities.", + "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", + "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "modules", - "stdlib", - "util" - ], "license": "MIT", "main": "lodash.js", - "name": "lodash", - "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.17.4" + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/regenerator-runtime/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/regenerator-runtime/package.json index 43983dc9..7dcf6c37 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/regenerator-runtime/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/regenerator-runtime/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "regenerator-runtime@0.11.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerator-runtime@0.11.0", - "_id": "regenerator-runtime@0.11.0", - "_inBundle": false, - "_integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "_location": "/babel-preset-react/regenerator-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-runtime@0.11.0", - "name": "regenerator-runtime", - "escapedName": "regenerator-runtime", - "rawSpec": "0.11.0", - "saveSpec": null, - "fetchSpec": "0.11.0" - }, - "_requiredBy": [ - "/babel-preset-react/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "_spec": "0.11.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "regenerator-runtime", + "author": "Ben Newman ", "description": "Runtime for Regenerator-compiled generator and async functions.", + "version": "0.11.0", + "main": "runtime-module.js", "keywords": [ "regenerator", "runtime", "generator", "async" ], - "license": "MIT", - "main": "runtime-module.js", - "name": "regenerator-runtime", "repository": { "type": "git", "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" }, - "version": "0.11.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/to-fast-properties/package.json b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/to-fast-properties/package.json index 1c90d343..f1028bd4 100644 --- a/goTorrentWebUI/node_modules/babel-preset-react/node_modules/to-fast-properties/package.json +++ b/goTorrentWebUI/node_modules/babel-preset-react/node_modules/to-fast-properties/package.json @@ -1,51 +1,23 @@ { - "_args": [ - [ - "to-fast-properties@1.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "to-fast-properties@1.0.3", - "_id": "to-fast-properties@1.0.3", - "_inBundle": false, - "_integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", - "_location": "/babel-preset-react/to-fast-properties", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "to-fast-properties@1.0.3", - "name": "to-fast-properties", - "escapedName": "to-fast-properties", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/babel-preset-react/babel-types" - ], - "_resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "to-fast-properties", + "version": "1.0.3", + "description": "Force V8 to use fast properties for an object", + "license": "MIT", + "repository": "sindresorhus/to-fast-properties", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/to-fast-properties/issues" - }, - "description": "Force V8 to use fast properties for an object", - "devDependencies": { - "ava": "0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node --allow-natives-syntax test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/to-fast-properties#readme", "keywords": [ "object", "obj", @@ -57,14 +29,7 @@ "convert", "mode" ], - "license": "MIT", - "name": "to-fast-properties", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/to-fast-properties.git" - }, - "scripts": { - "test": "node --allow-natives-syntax test.js" - }, - "version": "1.0.3" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/alphanum-sort/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/alphanum-sort/package.json index 078af0ee..ee92678d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/alphanum-sort/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/alphanum-sort/package.json @@ -1,51 +1,29 @@ { - "_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" - }, + "name": "alphanum-sort", + "version": "1.0.2", "description": "Alphanumeric sorting algorithm", + "main": "lib/index.js", + "files": [ + "lib" + ], "devDependencies": { "eslint": "^1.5.1", "javascript-natural-sort": "^0.7.1", "tap-spec": "^4.1.0", "tape": "^4.2.0" }, - "files": [ - "lib" - ], + "scripts": { + "test": "eslint lib test.js && tape test.js | tap-spec" + }, + "author": "Bogdan Chadkin ", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/TrySound/alphanum-sort.git" + }, + "bugs": { + "url": "https://github.com/TrySound/alphanum-sort/issues" + }, "homepage": "https://github.com/TrySound/alphanum-sort", "keywords": [ "sort", @@ -53,16 +31,5 @@ "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" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-regex/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-regex/package.json index 2b0d3660..eb44fb5c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-regex/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-regex/package.json @@ -1,53 +1,29 @@ { - "_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", + "name": "ansi-regex", + "version": "2.1.1", + "description": "Regular expression for matching ANSI escape codes", + "license": "MIT", + "repository": "chalk/ansi-regex", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "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" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -75,34 +51,10 @@ "find", "pattern" ], - "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" + "devDependencies": { + "ava": "0.17.0", + "xo": "0.16.0" }, - "scripts": { - "test": "xo && ava --verbose", - "view-supported": "node fixtures/view-codes.js" - }, - "version": "2.1.1", "xo": { "rules": { "guard-for-in": 0, diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-styles/package.json index 5b886b57..78c535f7 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/ansi-styles/package.json @@ -1,51 +1,27 @@ { - "_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", + "name": "ansi-styles", + "version": "2.2.1", + "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" }, - "bugs": { - "url": "https://github.com/chalk/ansi-styles/issues" - }, - "description": "ANSI escape codes for styling strings in the terminal", - "devDependencies": { - "mocha": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/ansi-styles#readme", "keywords": [ "ansi", "styles", @@ -68,26 +44,7 @@ "command-line", "text" ], - "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" + "devDependencies": { + "mocha": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/argparse/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/argparse/package.json index ace58a4a..1f9bdb4e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/argparse/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/argparse/package.json @@ -1,58 +1,7 @@ { - "_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" - }, + "name": "argparse", "description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library", - "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", + "version": "1.0.9", "keywords": [ "cli", "parser", @@ -60,14 +9,26 @@ "option", "args" ], + "contributors": [ + "Eugene Shkuropat", + "Paul Jacobson" + ], + "files": [ + "index.js", + "lib/" + ], "license": "MIT", - "name": "argparse", - "repository": { - "type": "git", - "url": "git+https://github.com/nodeca/argparse.git" - }, + "repository": "nodeca/argparse", "scripts": { "test": "make test" }, - "version": "1.0.9" + "dependencies": { + "sprintf-js": "~1.0.2" + }, + "devDependencies": { + "eslint": "^2.13.1", + "istanbul": "^0.4.5", + "mocha": "^3.1.0", + "ndoc": "^5.0.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/autoprefixer/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/autoprefixer/package.json index dd9f8fd3..aa18b9f4 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/autoprefixer/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/autoprefixer/package.json @@ -1,491 +1,17 @@ { - "_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" - } + "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" ], + "author": "Andrey Sitnik ", + "license": "MIT", + "repository": "postcss/autoprefixer", "dependencies": { "browserslist": "^1.7.6", "caniuse-db": "^1.0.30000634", @@ -494,10 +20,8 @@ "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", @@ -508,28 +32,14 @@ "gulp-replace": "^0.5.4", "mocha": "^3.2.0", "should": "^11.2.1", - "vinyl-source-stream": "^1.1.0" - }, - "eslintConfig": { - "extends": "eslint-config-postcss/es5" - }, - "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" + "vinyl-source-stream": "^1.1.0", + "coffee-script": "^1.12.4" }, "scripts": { "test": "gulp" }, - "version": "6.7.7" -} + "eslintConfig": { + "extends": "eslint-config-postcss/es5" + }, + "main": "lib/autoprefixer" +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/babel-code-frame/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/babel-code-frame/package.json index d678643b..7cf9346c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/babel-code-frame/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/babel-code-frame/package.json @@ -1,49 +1,15 @@ { - "_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" - }, + "name": "babel-code-frame", + "version": "6.26.0", + "description": "Generate errors that contain a code frame that point to source locations.", + "author": "Sebastian McKenzie ", + "homepage": "https://babeljs.io/", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", + "main": "lib/index.js", "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/balanced-match/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/balanced-match/package.json index 6f8ecfca..720eb4d1 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/balanced-match/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/balanced-match/package.json @@ -1,47 +1,20 @@ { - "_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" + "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" }, - "_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" + "homepage": "https://github.com/juliangruber/balanced-match", + "main": "index.js", + "scripts": { + "test": "make test" }, "dependencies": {}, - "description": "Match balanced character pairs, like \"{\" and \"}\"", "devDependencies": { "tape": "^4.6.0" }, - "homepage": "https://github.com/juliangruber/balanced-match", "keywords": [ "match", "regexp", @@ -49,16 +22,12 @@ "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": [ @@ -74,6 +43,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "0.4.2" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/big.js/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/big.js/package.json index 2e7a9bdd..d6bdc8f0 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/big.js/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/big.js/package.json @@ -1,48 +1,7 @@ { - "_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" - }, + "name": "big.js", "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic", - "engines": { - "node": "*" - }, - "files": [ - "big.js", - "big.min.js" - ], - "homepage": "https://github.com/MikeMcl/big.js#readme", + "version": "3.2.0", "keywords": [ "arbitrary", "precision", @@ -57,16 +16,28 @@ "bigint", "bignum" ], - "license": "MIT", - "main": "big.js", - "name": "big.js", - "repository": { + "repository" : { "type": "git", - "url": "git+https://github.com/MikeMcl/big.js.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": { - "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" + "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 */\"" }, - "version": "3.2.0" + "files": [ + "big.js", + "big.min.js" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/browserslist/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/browserslist/package.json index 39b3dd3d..56d7529a 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/browserslist/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/browserslist/package.json @@ -1,49 +1,19 @@ { - "_args": [ - [ - "browserslist@1.7.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "repository": "ai/browserslist", "dependencies": { "caniuse-db": "^1.0.30000639", "electron-to-chromium": "^1.2.7" }, - "description": "Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "bin": "./cli.js", "devDependencies": { "eslint": "^3.18.0", "eslint-config-postcss": "^2.0.2", @@ -63,7 +33,6 @@ "valid-jsdoc": "error" } }, - "homepage": "https://github.com/ai/browserslist#readme", "jest": { "coverageThreshold": { "global": { @@ -71,26 +40,15 @@ } } }, - "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" + "lint-staged": { + "*.md": "yaspeller-ci", + "*.js": "eslint" + }, + "pre-commit": [ + "lint-staged" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-api/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-api/package.json index 03e2e4aa..0b7f5e56 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-api/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-api/package.json @@ -1,51 +1,27 @@ { - "_args": [ - [ - "caniuse-api@1.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" ], - "babel": { - "presets": [ - "babel-preset-latest" - ] - }, - "bugs": { - "url": "https://github.com/nyalab/caniuse-api/issues" - }, + "license": "MIT", + "main": "dist/index.js", + "files": [ + "dist" + ], "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", @@ -56,27 +32,16 @@ "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", - "release": "npmpub", - "test": "npm run lint && babel-tape-runner test/*.js | tap-spec" + "test": "npm run lint && babel-tape-runner test/*.js | tap-spec", + "release": "npmpub" }, - "version": "1.6.1" + "babel": { + "presets":[ + "babel-preset-latest" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-db/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-db/package.json index 04f0c1c2..98f51734 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-db/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/caniuse-db/package.json @@ -1,43 +1,7 @@ { - "_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" - }, + "name": "caniuse-db", + "version": "1.0.30000760", "description": "Raw browser/feature support data from caniuse.com", - "homepage": "https://github.com/Fyrd/caniuse#readme", "keywords": [ "support", "css", @@ -45,11 +9,10 @@ "html5", "svg" ], + "author": "Alexis Deveria ", "license": "CC-BY-4.0", - "name": "caniuse-db", "repository": { "type": "git", - "url": "git+https://github.com/Fyrd/caniuse.git" - }, - "version": "1.0.30000760" + "url": "https://github.com/Fyrd/caniuse.git" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/chalk/package.json index 94c4a2ad..2b5881e9 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/chalk/package.json @@ -1,62 +1,26 @@ { - "_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" - }, + "name": "chalk", + "version": "1.1.3", "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": "*" - }, + "license": "MIT", + "repository": "chalk/chalk", + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "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", @@ -80,36 +44,23 @@ "command-line", "text" ], - "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" + "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" }, - "scripts": { - "bench": "matcha benchmark.js", - "coverage": "nyc npm test && nyc report", - "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls", - "test": "xo && mocha" + "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": "*" }, - "version": "1.1.3", "xo": { "envs": [ "node", diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/clap/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/clap/package.json index 4a0fc366..64502c47 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/clap/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/clap/package.json @@ -1,56 +1,10 @@ { - "_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" - }, + "name": "clap", + "title": "Command line argument parser", "description": "Command line argument parser", - "devDependencies": { - "mocha": "^2.4.5" - }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.js", - "HISTORY.md", - "LICENSE", - "README.md" - ], - "homepage": "https://github.com/lahmatiy/clap", + "author": "Roman Dvornov ", + "license": "MIT", + "version": "1.2.3", "keywords": [ "cli", "command", @@ -58,16 +12,25 @@ "argument", "completion" ], - "license": "MIT", + "homepage": "https://github.com/lahmatiy/clap", + "repository": "lahmatiy/clap", "main": "index.js", - "name": "clap", - "repository": { - "type": "git", - "url": "git+https://github.com/lahmatiy/clap.git" + "files": [ + "index.js", + "HISTORY.md", + "LICENSE", + "README.md" + ], + "engines": { + "node": ">=0.10.0" + }, + "dependencies": { + "chalk": "^1.1.3" + }, + "devDependencies": { + "mocha": "^2.4.5" }, "scripts": { "test": "mocha test -R spec" - }, - "title": "Command line argument parser", - "version": "1.2.3" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/clone/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/clone/package.json index 915094a4..687fa645 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/clone/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/clone/package.json @@ -1,134 +1,6 @@ { - "_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" - }, + "description": "deep cloning of objects and arrays", "tags": [ "clone", "object", @@ -136,5 +8,44 @@ "function", "date" ], - "version": "1.0.3" + "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 (http://paul.vorba.ch/)", + "contributors": [ + "Blake Miner (http://www.blakeminer.com/)", + "Tian You (http://blog.axqd.net/)", + "George Stagas (http://stagas.com/)", + "Tobiasz Cudnik (https://github.com/TobiaszCudnik)", + "Pavel Lang (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 (http://macinn.es/)", + "Benjamin E. Coe (https://twitter.com/benjamincoe)", + "Nathan Zadoks (https://github.com/nathan7)", + "Róbert Oroszi (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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/coa/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/coa/package.json index 32bc126b..925b4859 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/coa/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/coa/package.json @@ -1,91 +1,44 @@ { - "_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": [ - { - "name": "Sergey Belov", - "email": "peimei@ya.ru", - "url": "http://github.com/arikon" - } - ], - "dependencies": { - "q": "^1.1.2" - }, + "name": "coa", "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": "*" + "version": "1.0.4", + "homepage": "http://github.com/veged/coa", + "author": "Sergey Berezhnoy (http://github.com/veged)", + "maintainers": [ + "Sergey Berezhnoy (http://github.com/veged)", + "Sergey Belov (http://github.com/arikon)" + ], + "contributors": [ + "Sergey Belov (http://github.com/arikon)" + ], + "repository": { + "type": "git", + "url": "git://github.com/veged/coa.git" }, "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" } ], - "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" + "optionalDependencies": {} } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/color-convert/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/color-convert/package.json index 9fc0fe7d..f1a3edc6 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/color-convert/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/color-convert/package.json @@ -1,59 +1,14 @@ { - "_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" - }, + "name": "color-convert", "description": "Plain color conversion functions", - "devDependencies": { - "chalk": "^1.1.1", - "xo": "^0.11.2" + "version": "1.9.1", + "author": "Heather Arthur ", + "license": "MIT", + "repository": "Qix-/color-convert", + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" }, - "files": [ - "index.js", - "conversions.js", - "css-keywords.js", - "route.js" - ], - "homepage": "https://github.com/Qix-/color-convert#readme", "keywords": [ "color", "colour", @@ -68,22 +23,24 @@ "ansi", "ansi16" ], - "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", + "files": [ + "index.js", + "conversions.js", + "css-keywords.js", + "route.js" + ], "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" } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/color-name/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/color-name/package.json index 89bfff54..d061123e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/color-name/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/color-name/package.json @@ -1,57 +1,25 @@ { - "_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" - }, + "name": "color-name", + "version": "1.1.3", "description": "A list of color names and its values", - "homepage": "https://github.com/dfcreative/color-name", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:dfcreative/color-name.git" + }, "keywords": [ "color-name", "color", "color-keyword", "keyword" ], + "author": "DY ", "license": "MIT", - "main": "index.js", - "name": "color-name", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/dfcreative/color-name.git" + "bugs": { + "url": "https://github.com/dfcreative/color-name/issues" }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.3" + "homepage": "https://github.com/dfcreative/color-name" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/color-string/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/color-string/package.json index 01b5bc54..2095c7cd 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/color-string/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/color-string/package.json @@ -1,69 +1,30 @@ { - "_args": [ - [ - "color-string@0.3.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_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" - }, - "bugs": { - "url": "https://github.com/harthur/color-string/issues" - }, + "name": "color-string", + "description": "Parser and generator for CSS color strings", + "version": "0.3.0", + "author": "Heather Arthur ", "contributors": [ - { - "name": "Maxime Thirouin" - }, - { - "name": "Dyma Ywanov", - "email": "dfcreative@gmail.com" - } + "Maxime Thirouin", + "Dyma Ywanov " ], + "repository": { + "type": "git", + "url": "http://github.com/harthur/color-string.git" + }, + "scripts": { + "test": "node test/basic.js" + }, + "license": "MIT", + "main": "./color-string", "dependencies": { "color-name": "^1.0.0" }, - "description": "Parser and generator for CSS color strings", - "devDependencies": {}, - "homepage": "https://github.com/harthur/color-string#readme", + "devDependencies": { + }, "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" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/color/package.json index 73abcc81..8a7cb9a0 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/color/package.json @@ -1,76 +1,41 @@ { - "_args": [ - [ - "color@0.11.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "color", + "version": "0.11.4", + "description": "Color conversion and manipulation with CSS string support", + "keywords": [ + "color", + "colour", + "css" ], - "_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 ", "Maxime Thirouin", "Josh Junon" ], - "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" + "license": "MIT", + "repository": "Qix-/color", + "xo": { + "rules": { + "no-cond-assign": 0, + "new-cap": 0 + } }, "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 - } + "dependencies": { + "clone": "^1.0.2", + "color-convert": "^1.3.0", + "color-string": "^0.3.0" + }, + "devDependencies": { + "mocha": "^2.2.5", + "xo": "^0.12.1" } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/colormin/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/colormin/package.json index 64252f7c..b5d17476 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/colormin/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/colormin/package.json @@ -1,49 +1,37 @@ { - "_args": [ - [ - "colormin@1.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "colormin", + "version": "1.1.2", + "description": "Turn a CSS color into its smallest representation.", + "main": "dist/index.js", + "files": [ + "LICENSE-MIT", + "dist" ], - "_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" + "scripts": { + "pretest": "eslint src", + "prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/", + "test": "ava src/__tests__", + "test-012": "ava src/__tests__" }, - "_requiredBy": [ - "/css-loader/postcss-colormin" + "homepage": "https://github.com/ben-eb/colormin", + "keywords": [ + "color", + "colors", + "compression", + "css", + "minify" ], - "_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" }, - "ava": { - "require": "babel-register" - }, - "bugs": { - "url": "https://github.com/ben-eb/colormin/issues" - }, + "license": "MIT", "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", @@ -59,33 +47,11 @@ "eslint-plugin-babel": "^3.3.0", "eslint-plugin-import": "^1.10.2" }, + "repository": "ben-eb/colormin", "eslintConfig": { "extends": "cssnano" }, - "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" + "ava": { + "require": "babel-register" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/colors/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/colors/package.json index 83a2ae9f..c3650644 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/colors/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/colors/package.json @@ -1,64 +1,28 @@ { - "_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" + "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" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/css-color-names/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/css-color-names/package.json index b799cff3..283f9395 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/css-color-names/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/css-color-names/package.json @@ -1,60 +1,10 @@ { - "_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": {}, + "description": "A JSON Object of css color names mapped to their hex value", + "version": "0.0.4", + "author": "Dave Eddy (http://www.daveeddy.com)", + "contributors": [], + "main": "./css-color-names.json", "repository": { "type": "git", "url": "git://github.com/bahamas10/css-color-names.git" @@ -62,5 +12,17 @@ "scripts": { "test": "for f in tests/*.js; do echo \"$f\"; node \"$f\" || exit 1; done; echo 'Passed!'" }, - "version": "0.0.4" + "dependencies": {}, + "devDependencies": {}, + "optionalDependencies": {}, + "engines": { + "node": "*" + }, + "license": "MIT", + "keywords": [ + "css", "colors", "names" + ], + "files": [ + "css-color-names.json" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/css-selector-tokenizer/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/css-selector-tokenizer/package.json index 810b23d4..6bcbe780 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/css-selector-tokenizer/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/css-selector-tokenizer/package.json @@ -1,46 +1,40 @@ { - "_args": [ - [ - "css-selector-tokenizer@0.7.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" + "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" }, - "_requiredBy": [ - "/css-loader", - "/css-loader/postcss-modules-local-by-default", - "/css-loader/postcss-modules-scope" - ], - "_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" + "repository": { + "type": "git", + "url": "https://github.com/css-modules/css-selector-tokenizer.git" }, + "keywords": [ + "css-modules", + "selectors" + ], + "files": [ + "lib" + ], + "author": "Tobias Koppers @sokra", + "license": "MIT", "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", @@ -51,31 +45,5 @@ }, "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/cssesc/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/cssesc/package.json index 6e9939e4..284dbe8e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/cssesc/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/cssesc/package.json @@ -1,88 +1,56 @@ { - "_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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/cssnano/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/cssnano/package.json index 552c91e1..6b73242d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/cssnano/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/cssnano/package.json @@ -1,43 +1,27 @@ { - "_args": [ - [ - "cssnano@3.10.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" - }, + "license": "MIT", "dependencies": { "autoprefixer": "^6.3.1", "decamelize": "^1.1.2", @@ -72,7 +56,6 @@ "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", @@ -100,46 +83,29 @@ "webpack": "^1.12.13", "webpack-bundle-size-analyzer": "^2.0.2" }, - "eslintConfig": { - "extends": "cssnano" + "homepage": "https://github.com/ben-eb/cssnano", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" }, + "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__" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/cssnano.git" + "ava": { + "require": "babel-core/register" }, - "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" + "eslintConfig": { + "extends": "cssnano" }, - "tonicExampleFilename": "quickstart.js", - "version": "3.10.0" + "tonicExampleFilename": "quickstart.js" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/csso/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/csso/package.json index 303ed5c0..d821132d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/csso/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/csso/package.json @@ -1,48 +1,60 @@ { - "_args": [ - [ - "csso@2.3.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "csso", + "version": "2.3.2", + "description": "CSSO (CSS Optimizer) is a CSS minifier with structural optimisations", + "keywords": [ + "css", + "minifier", + "minify", + "compress", + "optimisation" ], - "_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" + "homepage": "https://github.com/css/csso", + "author": "Sergey Kryzhanovsky (https://github.com/afelix)", + "maintainers": [ + { + "name": "Roman Dvornov", + "email": "rdvornov@gmail.com", + "github-username": "lahmatiy" + } ], - "_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" + "license": "MIT", + "repository": "css/csso", + "bugs": { + "url": "https://github.com/css/csso/issues" }, "bin": { "csso": "./bin/csso" }, - "bugs": { - "url": "https://github.com/css/csso/issues" + "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" }, "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", @@ -55,24 +67,6 @@ "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", @@ -80,39 +74,5 @@ "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" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/decamelize/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/decamelize/package.json index be3a57ea..ca357903 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/decamelize/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/decamelize/package.json @@ -1,52 +1,23 @@ { - "_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", + "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", "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", @@ -60,14 +31,8 @@ "text", "convert" ], - "license": "MIT", - "name": "decamelize", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/decamelize.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.2.0" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/defined/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/defined/package.json index 638c10a6..7f699760 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/defined/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/defined/package.json @@ -1,93 +1,46 @@ { - "_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" + "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" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/electron-to-chromium/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/electron-to-chromium/package.json index 81fc701e..7a22b9b2 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/electron-to-chromium/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/electron-to-chromium/package.json @@ -1,70 +1,36 @@ { - "_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" - }, + "name": "electron-to-chromium", + "version": "1.3.27", "description": "Provides a list of electron-to-chromium version mappings", - "devDependencies": { - "ava": "^0.18.2", - "codecov": "^2.1.0", - "nyc": "^10.2.0", - "request": "^2.79.0", - "shelljs": "^0.7.6" - }, + "main": "index.js", "files": [ "versions.js", "full-versions.js", "chromium-versions.js", "full-chromium-versions.js" ], - "homepage": "https://github.com/kilian/electron-to-chromium#readme", + "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", - "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" + "devDependencies": { + "ava": "^0.18.2", + "codecov": "^2.1.0", + "nyc": "^10.2.0", + "request": "^2.79.0", + "shelljs": "^0.7.6" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/emojis-list/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/emojis-list/package.json index 0f2c82d9..328a1dbe 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/emojis-list/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/emojis-list/package.json @@ -1,41 +1,28 @@ { - "_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" - }, - "_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", + "name": "emojis-list", + "description": "Complete list of standard emojis.", + "homepage": "https://github.com/Kikobeats/emojis-list", + "version": "2.1.0", + "main": "./index.js", "author": { - "name": "Kiko Beats", "email": "josefrancisco.verdu@gmail.com", + "name": "Kiko Beats", "url": "https://github.com/Kikobeats" }, + "repository": { + "type": "git", + "url": "git+https://github.com/kikobeats/emojis-list.git" + }, "bugs": { "url": "https://github.com/Kikobeats/emojis-list/issues" }, - "description": "Complete list of standard emojis.", + "keywords": [ + "archive", + "complete", + "emoji", + "list", + "standard" + ], "devDependencies": { "acho": "latest", "browserify": "latest", @@ -55,25 +42,10 @@ "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" }, - "version": "2.1.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/escape-string-regexp/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/escape-string-regexp/package.json index fdd02cbe..f307df34 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/escape-string-regexp/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/escape-string-regexp/package.json @@ -1,57 +1,27 @@ { - "_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", + "name": "escape-string-regexp", + "version": "1.0.5", + "description": "Escape RegExp special characters", + "license": "MIT", + "repository": "sindresorhus/escape-string-regexp", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/escape-string-regexp/issues" - }, - "description": "Escape RegExp special characters", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", "keywords": [ "escape", "regex", @@ -64,26 +34,8 @@ "special", "characters" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/esprima/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/esprima/package.json index 4778f3ec..f2d59120 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/esprima/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/esprima/package.json @@ -1,44 +1,40 @@ { - "_args": [ - [ - "esprima@2.7.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, + "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" + ], + "engines": { + "node": ">=0.10.0" + }, + "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" + }, "bugs": { "url": "https://github.com/jquery/esprima/issues" }, - "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "license": "BSD-2-Clause", "devDependencies": { "codecov.io": "~0.1.6", "escomplex-js": "1.2.0", @@ -63,15 +59,6 @@ "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", @@ -79,49 +66,34 @@ "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", - "appveyor": "npm run all-tests && npm run browser-tests && npm run dynamic-analysis", + "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", "benchmark": "node test/benchmarks.js", "benchmark-quick": "node test/benchmarks.js quick", - "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", - "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", - "complexity": "node test/check-complexity.js", + "codecov" : "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", "downstream": "node test/downstream.js", - "droneio": "npm test && npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", - "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" + "circleci": "npm test && npm run codecov && npm run downstream", + "appveyor": "npm run all-tests && npm run browser-tests && npm run dynamic-analysis", + "droneio": "npm test && npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", + "generate-regex": "node tools/generate-identifier-regex.js" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/esutils/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/esutils/package.json index 30490f60..ddce20bf 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/esutils/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/esutils/package.json @@ -1,36 +1,31 @@ { - "_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" - }, + "name": "esutils", "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", @@ -39,42 +34,16 @@ "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": { - "generate-regex": "node tools/generate-identifier-regex.js", - "lint": "jshint lib/*.js", "test": "npm run-script lint && npm run-script unit-test", - "unit-test": "mocha --compilers coffee:coffee-script -R spec" - }, - "version": "2.0.2" + "lint": "jshint lib/*.js", + "unit-test": "mocha --compilers coffee:coffee-script -R spec", + "generate-regex": "node tools/generate-identifier-regex.js" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/fastparse/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/fastparse/package.json index b9d7952e..1149b42c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/fastparse/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/fastparse/package.json @@ -1,66 +1,36 @@ { - "_args": [ - [ - "fastparse@1.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" + "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" }, - "_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" + "repository": { + "type": "git", + "url": "https://github.com/webpack/fastparse.git" }, + "keywords": [ + "parser", + "regexp" + ], + "author": "Tobias Koppers @sokra", + "license": "MIT", "bugs": { "url": "https://github.com/webpack/fastparse/issues" }, - "description": "A very simple and stupid parser, based on a statemachine and regular expressions.", + "homepage": "https://github.com/webpack/fastparse", "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/flatten/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/flatten/package.json index d3bca82d..855f892f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/flatten/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/flatten/package.json @@ -1,57 +1,21 @@ { - "_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", - "devDependencies": {}, - "engines": { - "node": "*" - }, - "homepage": "https://github.com/jesusabdullah/node-flatten#readme", - "license": "MIT", - "main": "./index.js", + "author": "Joshua Holbrook (http://jesusabdullah.net)", "name": "flatten", - "optionalDependencies": {}, + "description": "Flatten arbitrarily nested arrays into a non-nested list of non-array items", + "version": "1.0.2", "repository": { "type": "git", "url": "git://github.com/jesusabdullah/node-flatten.git" }, + "main": "./index.js", "scripts": { "test": "node ./test.js" }, - "version": "1.0.2" + "license": "MIT", + "dependencies": {}, + "devDependencies": {}, + "optionalDependencies": {}, + "engines": { + "node": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/function-bind/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/function-bind/package.json index a70ad79f..20a1727c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/function-bind/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/function-bind/package.json @@ -1,40 +1,17 @@ { - "_args": [ - [ - "function-bind@1.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "function-bind", + "version": "1.1.1", + "description": "Implementation of Function.prototype.bind", + "keywords": [ + "function", + "bind", + "shim", + "es5" ], - "_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" - }, + "author": "Raynos ", + "repository": "git://github.com/Raynos/function-bind.git", + "main": "index", + "homepage": "https://github.com/Raynos/function-bind", "contributors": [ { "name": "Raynos" @@ -44,8 +21,11 @@ "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", @@ -53,29 +33,16 @@ "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", - "tests-only": "node test" + "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" }, "testling": { "files": "test/index.js", @@ -92,6 +59,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "1.1.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/has-ansi/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/has-ansi/package.json index effaf6d1..01e08d4f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/has-ansi/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/has-ansi/package.json @@ -1,54 +1,27 @@ { - "_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", + "name": "has-ansi", + "version": "2.0.0", + "description": "Check if a string has ANSI escape codes", + "license": "MIT", + "repository": "sindresorhus/has-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.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" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-ansi#readme", "keywords": [ "ansi", "styles", @@ -73,26 +46,10 @@ "pattern", "has" ], - "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" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "node test.js" - }, - "version": "2.0.0" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/has-flag/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/has-flag/package.json index d314c956..930dc7ff 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/has-flag/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/has-flag/package.json @@ -1,51 +1,28 @@ { - "_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", + "name": "has-flag", + "version": "1.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "0.0.4" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -65,31 +42,7 @@ "minimist", "optimist" ], - "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" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/has/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/has/package.json index e216d29c..5b016388 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/has/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/has/package.json @@ -1,56 +1,19 @@ { - "_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", + "name": "has", + "description": "Object.prototype.hasOwnProperty.call shortcut", + "version": "1.0.1", + "homepage": "https://github.com/tarruda/has", "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" }, - "dependencies": { - "function-bind": "^1.0.2" - }, - "description": "Object.prototype.hasOwnProperty.call shortcut", - "devDependencies": { - "chai": "~1.7.2", - "mocha": "^1.21.4" - }, - "engines": { - "node": ">= 0.8.0" - }, - "homepage": "https://github.com/tarruda/has", "licenses": [ { "type": "MIT", @@ -58,13 +21,17 @@ } ], "main": "./src/index", - "name": "has", - "repository": { - "type": "git", - "url": "git://github.com/tarruda/has.git" + "dependencies": { + "function-bind": "^1.0.2" + }, + "devDependencies": { + "chai": "~1.7.2", + "mocha": "^1.21.4" + }, + "engines": { + "node": ">= 0.8.0" }, "scripts": { "test": "node_modules/mocha/bin/mocha" - }, - "version": "1.0.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/html-comment-regex/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/html-comment-regex/package.json index 0ee3f510..47e9be1b 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/html-comment-regex/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/html-comment-regex/package.json @@ -1,51 +1,18 @@ { - "_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", + "name": "html-comment-regex", + "version": "1.1.1", + "description": "Regular expression for matching HTML comments", + "homepage": "https://github.com/stevemao/html-comment-regex", "author": { "name": "Steve Mao", "email": "maochenyan@gmail.com", "url": "https://github.com/stevemao" }, - "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": "*" - }, + "repository": "stevemao/html-comment-regex", + "license": "MIT", "files": [ "index.js" ], - "homepage": "https://github.com/stevemao/html-comment-regex", "keywords": [ "html-comment-regex", "text", @@ -63,15 +30,14 @@ "HTML", "HyperText Markup Language" ], - "license": "MIT", - "name": "html-comment-regex", - "repository": { - "type": "git", - "url": "git+https://github.com/stevemao/html-comment-regex.git" + "dependencies": {}, + "devDependencies": { + "jscs": "^1.11.3", + "jshint": "^2.6.3", + "mocha": "*" }, "scripts": { "lint": "jshint *.js --exclude node_modules && jscs *.js", "test": "npm run-script lint && mocha" - }, - "version": "1.1.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-replace-symbols/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-replace-symbols/package.json index 0a517bec..aa5c4a73 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-replace-symbols/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-replace-symbols/package.json @@ -1,39 +1,33 @@ { - "_args": [ - [ - "icss-replace-symbols@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" + "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" }, - "_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" + "repository": { + "type": "git", + "url": "git+https://github.com/css-modules/icss-replace-symbols.git" }, + "keywords": [ + "css", + "modules", + "icss", + "postcss" + ], + "author": "Glen Maddern", + "license": "ISC", "bugs": { "url": "https://github.com/css-modules/icss-replace-symbols/issues" }, - "description": "Replacing symbols during the linking phase of ICSS", + "homepage": "https://github.com/css-modules/icss-replace-symbols#readme", "devDependencies": { "babel-cli": "^6.18.0", "babel-preset-es2015": "^6.18.0", @@ -42,29 +36,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/ansi-styles/package.json index 331a3062..432ed81f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/ansi-styles/package.json @@ -1,89 +1,54 @@ { - "_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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/chalk/package.json index 73c50755..69889f0c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/chalk/package.json @@ -1,101 +1,66 @@ { - "_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" - ] - } + "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" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/has-flag/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/has-flag/package.json index 86aae6b0..bfcd302e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/has-flag/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/has-flag/package.json @@ -1,52 +1,28 @@ { - "_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", + "name": "has-flag", + "version": "2.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -66,31 +42,8 @@ "minimist", "optimist" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/postcss/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/postcss/package.json index 080f2f8b..62c26b9d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/postcss/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/postcss/package.json @@ -1,50 +1,30 @@ { - "_args": [ - [ - "postcss@6.0.14", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "homepage": "http://postcss.org/", + "repository": "postcss/postcss", "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", @@ -74,8 +54,35 @@ "strip-ansi": "^4.0.0", "yaspeller-ci": "^0.7.0" }, - "engines": { - "node": ">=4.0.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" + ] }, "eslintConfig": { "parser": "babel-eslint", @@ -90,49 +97,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/source-map/package.json index 34499e9d..24663417 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/source-map/package.json @@ -1,193 +1,52 @@ { - "_args": [ - [ - "source-map@0.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -197,19 +56,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/supports-color/package.json index 08b06def..b665bab8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/node_modules/supports-color/package.json @@ -1,59 +1,24 @@ { - "_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", + "name": "supports-color", + "version": "4.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "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", @@ -76,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "import-fresh": "^2.0.0", + "xo": "*" }, - "version": "4.5.0" + "browser": "browser.js" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/package.json index d4232c78..297dcb25 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/icss-utils/package.json @@ -1,37 +1,30 @@ { - "_args": [ - [ - "icss-utils@2.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" + "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" ] - ], - "_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" }, - "_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" + "eslintConfig": { + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module" + }, + "extends": "eslint:recommended" }, "babel": { "presets": [ @@ -45,13 +38,25 @@ ] ] }, + "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", @@ -61,43 +66,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/indexes-of/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/indexes-of/package.json index 3e77d7b8..e6346cf1 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/indexes-of/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/indexes-of/package.json @@ -1,47 +1,8 @@ { - "_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", - "devDependencies": { - "tape": "~2.1.0" - }, - "homepage": "https://github.com/dominictarr/indexes-of", - "license": "MIT", "name": "indexes-of", + "description": "line String/Array#indexOf but return all the indexes in an array", + "version": "1.0.1", + "homepage": "https://github.com/dominictarr/indexes-of", "repository": { "type": "git", "url": "git://github.com/dominictarr/indexes-of.git" @@ -49,5 +10,9 @@ "scripts": { "test": "node test.js" }, - "version": "1.0.1" + "author": "Dominic Tarr (dominictarr.com)", + "license": "MIT", + "devDependencies": { + "tape": "~2.1.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/is-absolute-url/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/is-absolute-url/package.json index 1c3b9bea..9208b287 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/is-absolute-url/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/is-absolute-url/package.json @@ -1,51 +1,23 @@ { - "_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", + "name": "is-absolute-url", + "version": "2.1.0", + "description": "Check if an URL is absolute", + "license": "MIT", + "repository": "sindresorhus/is-absolute-url", "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", @@ -54,14 +26,7 @@ "is", "check" ], - "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" + "devDependencies": { + "mocha": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/is-plain-obj/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/is-plain-obj/package.json index 514617ca..d331f6e8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/is-plain-obj/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/is-plain-obj/package.json @@ -1,51 +1,23 @@ { - "_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", + "name": "is-plain-obj", + "version": "1.1.0", + "description": "Check if a value is a plain object", + "license": "MIT", + "repository": "sindresorhus/is-plain-obj", "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", @@ -58,14 +30,7 @@ "pure", "simple" ], - "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" + "devDependencies": { + "ava": "0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/is-svg/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/is-svg/package.json index f038586c..cd23484e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/is-svg/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/is-svg/package.json @@ -1,55 +1,23 @@ { - "_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", + "name": "is-svg", + "version": "2.1.0", + "description": "Check if a string or buffer is SVG", + "license": "MIT", + "repository": "sindresorhus/is-svg", "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", @@ -66,14 +34,11 @@ "str", "buffer" ], - "license": "MIT", - "name": "is-svg", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-svg.git" + "dependencies": { + "html-comment-regex": "^1.1.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "2.1.0" + "devDependencies": { + "ava": "*", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/js-base64/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/js-base64/package.json index 6fe1651f..86a87c18 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/js-base64/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/js-base64/package.json @@ -1,59 +1,26 @@ { - "_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" - }, + "name": "js-base64", + "version": "2.3.2", "description": "Yet another Base64 transcoder in pure-JS", - "devDependencies": { - "mocha": "*" - }, + "main": "base64.js", "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" - }, "scripts": { "test": "mocha" }, - "version": "2.3.2" + "devDependencies": { + "mocha": "*" + }, + "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" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/js-tokens/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/js-tokens/package.json index e2679428..7f5bd780 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/js-tokens/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/js-tokens/package.json @@ -1,49 +1,9 @@ { - "_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" - }, + "name": "js-tokens", + "version": "3.0.2", + "author": "Simon Lydell", + "license": "MIT", "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", @@ -51,17 +11,20 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "3.0.2" + "devDependencies": { + "coffee-script": "~1.12.6", + "esprima": "^4.0.0", + "everything.js": "^1.0.3", + "mocha": "^3.4.2" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/js-yaml/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/js-yaml/package.json index d28a80d6..1c6deb19 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/js-yaml/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/js-yaml/package.json @@ -1,64 +1,35 @@ { - "_args": [ - [ - "js-yaml@3.7.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "js-yaml", + "version": "3.7.0", + "description": "YAML 1.2 parser and serializer", + "keywords": [ + "yaml", + "parser", + "serializer", + "pyyaml" ], - "_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" + "homepage": "https://github.com/nodeca/js-yaml", + "author": "Vladimir Zapparov ", + "contributors": [ + "Aleksey V Zapparov (http://www.ixti.net/)", + "Vitaly Puzrin (https://github.com/puzrin)", + "Martin Grenfell (http://got-ravings.blogspot.com)" + ], + "license": "MIT", + "repository": "nodeca/js-yaml", + "files": [ + "index.js", + "lib/", + "bin/", + "dist/" ], - "_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": "*", @@ -69,27 +40,7 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/jsesc/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/jsesc/package.json index 498235c7..1216eefd 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/jsesc/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/jsesc/package.json @@ -1,87 +1,55 @@ { - "_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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/json5/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/json5/package.json index b23ac7a5..44059b49 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/json5/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/json5/package.json @@ -1,83 +1,38 @@ { - "_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", - "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" + "version": "0.5.1", + "description": "JSON for the ES5 era.", + "keywords": [ + "json", + "es5" + ], + "author": "Aseem Kishore ", + "contributors": [ + "Max Nanasy ", + "Andrew Eisenberg ", + "Jordan Tucker " + ], + "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" }, - { - "name": "Andrew Eisenberg", - "email": "andrew@eisenberg.as" + "scripts": { + "build": "node ./lib/cli.js -c package.json5", + "test": "mocha --ui exports --reporter spec" }, - { - "name": "Jordan Tucker", - "email": "jordanbtucker@gmail.com" + "homepage": "http://json5.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/aseemk/json5.git" } - ], - "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" -} +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/loader-utils/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/loader-utils/package.json index 7a948fd6..a547e234 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/loader-utils/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/loader-utils/package.json @@ -1,44 +1,29 @@ { - "_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" - }, + "name": "loader-utils", + "version": "1.1.0", + "author": "Tobias Koppers @sokra", + "description": "utils for webpack loaders", "dependencies": { "big.js": "^3.1.3", "emojis-list": "^2.0.0", "json5": "^0.5.0" }, - "description": "utils for webpack loaders", + "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" + }, "devDependencies": { "coveralls": "^2.11.2", "eslint": "^3.15.0", @@ -47,27 +32,8 @@ "mocha": "^1.21.4", "standard-version": "^4.0.0" }, - "engines": { - "node": ">=4.0.0" - }, + "main": "lib/index.js", "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" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.camelcase/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.camelcase/package.json index 7e44c2fb..aca63e0b 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.camelcase/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.camelcase/package.json @@ -1,72 +1,17 @@ { - "_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/" - } - ], + "name": "lodash.camelcase", + "version": "4.3.0", "description": "The lodash method `_.camelCase` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "camelcase" - ], "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" + "keywords": "lodash-modularized, camelcase", + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Blaine Bublitz (https://github.com/phated)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.memoize/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.memoize/package.json index 1af3aa38..2b75f282 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.memoize/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.memoize/package.json @@ -1,72 +1,17 @@ { - "_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/" - } - ], + "name": "lodash.memoize", + "version": "4.1.2", "description": "The lodash method `_.memoize` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "memoize" - ], "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" + "keywords": "lodash-modularized, memoize", + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Blaine Bublitz (https://github.com/phated)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.uniq/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.uniq/package.json index 458e6ce3..d4331234 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.uniq/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/lodash.uniq/package.json @@ -1,72 +1,17 @@ { - "_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/" - } - ], + "name": "lodash.uniq", + "version": "4.5.0", "description": "The lodash method `_.uniq` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "lodash-modularized", - "uniq" - ], "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" + "keywords": "lodash-modularized, uniq", + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Blaine Bublitz (https://github.com/phated)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "lodash/lodash", + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/macaddress/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/macaddress/package.json index b820f796..1cdcc117 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/macaddress/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/macaddress/package.json @@ -1,40 +1,15 @@ { - "_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" - }, + "name": "macaddress", + "version": "0.2.8", "description": "Get the MAC addresses (hardware addresses) of the hosts network interfaces.", - "homepage": "https://github.com/scravy/node-macaddress", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/scravy/node-macaddress.git" + }, "keywords": [ "mac", "mac-address", @@ -42,15 +17,10 @@ "network", "system" ], + "author": "Julian Fleischer", "license": "MIT", - "main": "index.js", - "name": "macaddress", - "repository": { - "type": "git", - "url": "git+https://github.com/scravy/node-macaddress.git" + "bugs": { + "url": "https://github.com/scravy/node-macaddress/issues" }, - "scripts": { - "test": "node test.js" - }, - "version": "0.2.8" + "homepage": "https://github.com/scravy/node-macaddress" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/math-expression-evaluator/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/math-expression-evaluator/package.json index aa8d40b8..74088c64 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/math-expression-evaluator/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/math-expression-evaluator/package.json @@ -1,63 +1,32 @@ { - "_args": [ - [ - "math-expression-evaluator@1.2.17", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, + "name": "math-expression-evaluator", + "version": "1.2.17", "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" + "main": "src/formula_evaluator.js", + "scripts": { + "test": "mocha" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/redhivesoftware/math-expression-evaluator#readme" }, - "homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme", "keywords": [ "math", "expression", "evaluator", "parser" ], + "author": "Ankit", "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" + "bugs": { + "url": "https://github.com/redhivesoftware/math-expression-evaluator/issues" }, - "scripts": { - "test": "mocha" - }, - "version": "1.2.17" + "homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme", + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/minimist/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/minimist/package.json index ee400a75..af6250bd 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/minimist/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/minimist/package.json @@ -1,74 +1,40 @@ { - "_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", - "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" + "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" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/mkdirp/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/mkdirp/package.json index 415a986a..863e860d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/mkdirp/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/mkdirp/package.json @@ -1,65 +1,27 @@ { - "_args": [ - [ - "mkdirp@0.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_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" - }, + "name": "mkdirp", "description": "Recursively mkdir, like `mkdir -p`", - "devDependencies": { - "mock-fs": "2 >=2.7.0", - "tap": "1" - }, - "homepage": "https://github.com/substack/node-mkdirp#readme", + "version": "0.5.1", + "author": "James Halliday (http://substack.net)", + "main": "index.js", "keywords": [ "mkdir", "directory" ], - "license": "MIT", - "main": "index.js", - "name": "mkdirp", "repository": { "type": "git", - "url": "git+https://github.com/substack/node-mkdirp.git" + "url": "https://github.com/substack/node-mkdirp.git" }, "scripts": { "test": "tap test/*.js" }, - "version": "0.5.1" + "dependencies": { + "minimist": "0.0.8" + }, + "devDependencies": { + "tap": "1", + "mock-fs": "2 >=2.7.0" + }, + "bin": "bin/cmd.js", + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-range/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-range/package.json index 1ba3bd72..b98035ae 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-range/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-range/package.json @@ -1,42 +1,37 @@ { - "_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", + "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", "author": { "name": "James Talmage", "email": "james@talmage.io", "url": "github.com/jamestalmage" }, - "bugs": { - "url": "https://github.com/jamestalmage/normalize-range/issues" + "engines": { + "node": ">=0.10.0" }, + "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", @@ -47,35 +42,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-url/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-url/package.json index e189619e..b255039b 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-url/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/normalize-url/package.json @@ -1,58 +1,23 @@ { - "_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", + "name": "normalize-url", + "version": "1.9.1", + "description": "Normalize a URL", + "license": "MIT", + "repository": "sindresorhus/normalize-url", "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", @@ -72,14 +37,14 @@ "trim", "canonical" ], - "license": "MIT", - "name": "normalize-url", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/normalize-url.git" + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.9.1" + "devDependencies": { + "ava": "*", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/num2fraction/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/num2fraction/package.json index 248b609e..ff970906 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/num2fraction/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/num2fraction/package.json @@ -1,45 +1,18 @@ { - "_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", + "name": "num2fraction", + "version": "1.2.2", + "description": "Convert number to fraction", + "main": "index.js", "author": { "name": "yisi", "email": "yiorsi@gmail.com", "url": "http://iyunlu.com/view" }, - "bugs": { - "url": "https://github.com/yisibl/num2fraction/issues" + "license": "MIT", + "repository": { + "type": "git", + "url": "git@github.com:yisibl/num2fraction.git" }, - "description": "Convert number to fraction", - "devDependencies": { - "tape": "^3.0.0" - }, - "homepage": "https://github.com/yisibl/num2fraction#readme", "keywords": [ "fraction", "number", @@ -49,15 +22,10 @@ "gcd", "rational" ], - "license": "MIT", - "main": "index.js", - "name": "num2fraction", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/yisibl/num2fraction.git" + "devDependencies": { + "tape": "^3.0.0" }, "scripts": { "test": "tape test/*.js" - }, - "version": "1.2.2" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/object-assign/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/object-assign/package.json index c932d4bc..503eb1e6 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/object-assign/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/object-assign/package.json @@ -1,58 +1,24 @@ { - "_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", + "name": "object-assign", + "version": "4.1.1", + "description": "ES2015 `Object.assign()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/object-assign", "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", @@ -67,15 +33,10 @@ "shim", "browser" ], - "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" + "devDependencies": { + "ava": "^0.16.0", + "lodash": "^4.16.4", + "matcha": "^0.7.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-calc/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-calc/package.json index 8367a0e5..a0c52816 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-calc/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-calc/package.json @@ -1,54 +1,7 @@ { - "_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" - }, + "name": "postcss-calc", + "version": "5.3.1", "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", @@ -56,15 +9,25 @@ "calculation", "calc" ], + "author": "Maxime Thirouin", "license": "MIT", - "name": "postcss-calc", - "repository": { - "type": "git", - "url": "git+https://github.com/postcss/postcss-calc.git" + "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" }, "scripts": { - "release": "npmpub", - "test": "eslint . && tape test" - }, - "version": "5.3.1" + "test": "eslint . && tape test", + "release": "npmpub" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-colormin/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-colormin/package.json index 7b755df4..0a3b6e89 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-colormin/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-colormin/package.json @@ -1,49 +1,28 @@ { - "_args": [ - [ - "postcss-colormin@2.2.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "name": "postcss-colormin", + "version": "2.2.2", "description": "Minify colors in your CSS files with PostCSS.", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" + ], + "scripts": { + "pretest": "eslint src", + "prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/", + "test": "ava src/__tests__", + "test-012": "ava src/__tests__" + }, + "keywords": [ + "color", + "colors", + "compression", + "css", + "minify", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.3.17", @@ -59,35 +38,22 @@ "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" }, - "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" + "ava": { + "require": "babel-register" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-convert-values/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-convert-values/package.json index 9196a3d3..8c6a2a27 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-convert-values/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-convert-values/package.json @@ -1,48 +1,27 @@ { - "_args": [ - [ - "postcss-convert-values@2.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "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" + ], + "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" + }, + "keywords": [ + "css", + "optimisation", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.17.0", @@ -59,34 +38,21 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-comments/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-comments/package.json index 864eeecf..dedc4374 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-comments/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-comments/package.json @@ -1,47 +1,24 @@ { - "_args": [ - [ - "postcss-discard-comments@2.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "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" + ], + "scripts": { + "pretest": "eslint src", + "prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/", + "test": "ava src/__tests__" + }, + "keywords": [ + "css", + "comments", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "ava": "^0.11.0", "babel-cli": "^6.5.1", @@ -56,31 +33,20 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-duplicates/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-duplicates/package.json index aa4a3938..532f1ba2 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-duplicates/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-duplicates/package.json @@ -1,47 +1,31 @@ { - "_args": [ - [ - "postcss-discard-duplicates@2.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" + "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__" }, - "_requiredBy": [ - "/css-loader/cssnano" + "keywords": [ + "css", + "dedupe", + "optimise", + "postcss", + "postcss-plugin" ], - "_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" - }, + "license": "MIT", "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", @@ -58,35 +42,17 @@ "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" }, - "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" + "ava": { + "require": "babel-register" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-empty/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-empty/package.json index 349aa7d6..910a802d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-empty/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-empty/package.json @@ -1,47 +1,30 @@ { - "_args": [ - [ - "postcss-discard-empty@2.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss-discard-empty", + "version": "2.1.0", + "description": "Discard empty rules and values with PostCSS.", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" ], - "_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" + "scripts": { + "pretest": "eslint src", + "prepublish": "del-cli dist && babel src --out-dir dist --ignore /__tests__/", + "test": "ava src/__tests__" }, - "_requiredBy": [ - "/css-loader/cssnano" + "keywords": [ + "compress", + "css", + "empty", + "minify", + "optimisation", + "postcss", + "postcss-plugin" ], - "_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" - }, + "license": "MIT", "dependencies": { "postcss": "^5.0.14" }, - "description": "Discard empty rules and values with PostCSS.", "devDependencies": { "ava": "^0.14.0", "babel-cli": "^6.4.5", @@ -54,34 +37,17 @@ "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" }, - "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" + "ava": { + "require": "babel-core/register" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-overridden/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-overridden/package.json index d1260576..88109969 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-overridden/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-overridden/package.json @@ -1,48 +1,26 @@ { - "_args": [ - [ - "postcss-discard-overridden@0.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" - ] - }, + "author": "Justineo ", + "license": "MIT", + "repository": "Justineo/postcss-discard-overridden", "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", @@ -52,27 +30,15 @@ "eslint": "^2.1.0", "eslint-config-postcss": "^2.0.0" }, - "eslintConfig": { - "extends": "eslint-config-postcss/es5" - }, - "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" + "eslintConfig": { + "extends": "eslint-config-postcss/es5" + }, + "ava": { + "require": [ + "babel-register" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-unused/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-unused/package.json index db2352df..6ff7deff 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-unused/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-discard-unused/package.json @@ -1,48 +1,30 @@ { - "_args": [ - [ - "postcss-discard-unused@2.2.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "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" + ], + "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__" + }, + "keywords": [ + "css", + "minify", + "optimise", + "postcss", + "postcss-plugin", + "unused" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.16.0", @@ -59,37 +41,21 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-filter-plugins/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-filter-plugins/package.json index d25ac067..96879d0b 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-filter-plugins/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-filter-plugins/package.json @@ -1,48 +1,26 @@ { - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "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__/" + }, + "files": [ + "LICENSE-MIT", + "dist" + ], + "keywords": [ + "css", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.16.0", @@ -59,33 +37,21 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-idents/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-idents/package.json index d6b98a8a..0ff67940 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-idents/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-idents/package.json @@ -1,49 +1,25 @@ { - "_args": [ - [ - "postcss-merge-idents@2.1.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "name": "postcss-merge-idents", + "version": "2.1.7", "description": "Merge keyframe and counter style identifiers.", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" + ], + "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__" + }, + "keywords": [ + "css", + "merge", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "ava": "^0.16.0", "babel-cli": "^6.3.17", @@ -59,32 +35,22 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-longhand/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-longhand/package.json index 3ad21113..4da3c8e0 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-longhand/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-longhand/package.json @@ -1,55 +1,16 @@ { - "_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" - }, + "name": "postcss-merge-longhand", + "version": "2.0.2", "description": "Merge longhand properties into shorthand with PostCSS.", - "devDependencies": { - "babel": "^5.8.23", - "babel-tape-runner": "^1.2.0", - "tap-spec": "^4.1.0", - "tape": "^4.2.0" - }, + "main": "dist/index.js", "files": [ "LICENSE-MIT", "dist" ], - "homepage": "https://github.com/ben-eb/postcss-merge-longhand", + "scripts": { + "prepublish": "babel src --out-dir dist --ignore /__tests__/", + "test": "babel-tape-runner \"src/**/__tests__/*.js\" | tap-spec" + }, "keywords": [ "css", "minify", @@ -58,15 +19,20 @@ "postcss-plugin" ], "license": "MIT", - "main": "dist/index.js", - "name": "postcss-merge-longhand", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-merge-longhand.git" + "devDependencies": { + "babel": "^5.8.23", + "babel-tape-runner": "^1.2.0", + "tap-spec": "^4.1.0", + "tape": "^4.2.0" }, - "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", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" }, - "version": "2.0.2" + "repository": "ben-eb/postcss-merge-longhand", + "dependencies": { + "postcss": "^5.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-rules/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-rules/package.json index e0e24233..798f5be2 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-rules/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-merge-rules/package.json @@ -1,65 +1,26 @@ { - "_args": [ - [ - "postcss-merge-rules@2.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "name": "postcss-merge-rules", + "version": "2.1.2", "description": "Merge CSS rules with PostCSS.", + "main": "dist/index.js", + "files": [ + "LICENSE-MIT", + "dist" + ], + "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__" + }, + "keywords": [ + "css", + "optimise", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.3.17", @@ -80,37 +41,42 @@ "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" }, - "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", + "ava": { + "require": "babel-register" + }, "nyc": { "sourceMap": false, "instrument": false }, - "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" + "browserslist": { + "chrome58": [ + "Chrome 58" + ], + "edge15": [ + "Edge 15" + ], + "ie6": [ + "IE 6" + ], + "ie7": [ + "IE 7" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-message-helpers/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-message-helpers/package.json index cbe5ef4b..a18a6379 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-message-helpers/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-message-helpers/package.json @@ -1,51 +1,7 @@ { - "_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" - }, + "name": "postcss-message-helpers", + "version": "2.0.0", "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", @@ -54,15 +10,25 @@ "error", "warning" ], + "author": "Maxime Thirouin", "license": "MIT", - "name": "postcss-message-helpers", "repository": { "type": "git", - "url": "git+https://github.com/MoOx/postcss-message-helpers.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" }, "scripts": { "lint": "jscs *.js **/*.js && jshint . --exclude-path .gitignore", "test": "npm run lint && tape test" - }, - "version": "2.0.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-font-values/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-font-values/package.json index 3ba8f383..88c782b3 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-font-values/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-font-values/package.json @@ -1,55 +1,18 @@ { - "_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" - }, + "name": "postcss-minify-font-values", + "version": "1.0.5", "description": "Minify font declarations with PostCSS", - "devDependencies": { - "eslint": "^1.3.1", - "tap-spec": "^4.1.0", - "tape": "^4.2.0" - }, + "main": "index.js", "files": [ "index.js", "lib" ], - "homepage": "https://github.com/TrySound/postcss-minify-font-values", + "scripts": { + "test": "tape test/*.js | tap-spec", + "posttest": "eslint index.js lib test" + }, + "author": "Bogdan Chadkin ", + "license": "MIT", "keywords": [ "css", "font", @@ -58,16 +21,22 @@ "optimise", "postcss-plugin" ], - "license": "MIT", - "main": "index.js", - "name": "postcss-minify-font-values", + "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" + }, "repository": { "type": "git", "url": "git+https://github.com/TrySound/postcss-minify-font-values.git" }, - "scripts": { - "posttest": "eslint index.js lib test", - "test": "tape test/*.js | tap-spec" + "bugs": { + "url": "https://github.com/TrySound/postcss-minify-font-values/issues" }, - "version": "1.0.5" + "homepage": "https://github.com/TrySound/postcss-minify-font-values" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-gradients/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-gradients/package.json index e2b1c42e..f85a7523 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-gradients/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-gradients/package.json @@ -1,48 +1,26 @@ { - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "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__" + }, + "files": [ + "LICENSE-MIT", + "dist" + ], + "keywords": [ + "css", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.16.0", @@ -59,33 +37,21 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-params/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-params/package.json index a5f1202a..2635f1bb 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-params/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-params/package.json @@ -1,46 +1,38 @@ { - "_args": [ - [ - "postcss-minify-params@1.2.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss-minify-params", + "version": "1.2.2", + "description": "Minify at-rule params with PostCSS", + "keywords": [ + "postcss", + "css", + "postcss-plugin", + "minify", + "optimise", + "params" ], - "_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" + "main": "dist/index.js", + "files": [ + "dist" ], - "_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" - }, + "author": "Bogdan Chadkin ", + "license": "MIT", + "repository": "ben-eb/postcss-minify-params", "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" }, - "description": "Minify at-rule params with PostCSS", + "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" + }, "devDependencies": { "buble": "^0.12.5", "cross-env": "^2.0.0", @@ -56,34 +48,8 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-selectors/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-selectors/package.json index 5523cf04..ba2d6255 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-selectors/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-minify-selectors/package.json @@ -1,50 +1,28 @@ { - "_args": [ - [ - "postcss-minify-selectors@2.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_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" - }, + "name": "postcss-minify-selectors", + "version": "2.1.1", "description": "Minify selectors with PostCSS.", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" + ], + "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" + }, + "keywords": [ + "css", + "minify", + "optimise", + "postcss", + "postcss-plugin", + "selectors" + ], + "license": "MIT", "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.3.17", @@ -62,35 +40,23 @@ "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" }, - "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" + "ava": { + "require": "babel-register" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/ansi-styles/package.json index 1b7cfd4f..432ed81f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/ansi-styles/package.json @@ -1,89 +1,54 @@ { - "_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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/chalk/package.json index 11d07b10..69889f0c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/chalk/package.json @@ -1,101 +1,66 @@ { - "_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" - ] - } + "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" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/has-flag/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/has-flag/package.json index 2fffbc44..bfcd302e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/has-flag/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/has-flag/package.json @@ -1,52 +1,28 @@ { - "_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", + "name": "has-flag", + "version": "2.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -66,31 +42,8 @@ "minimist", "optimist" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/postcss/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/postcss/package.json index 6beb042d..62c26b9d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/postcss/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/postcss/package.json @@ -1,50 +1,30 @@ { - "_args": [ - [ - "postcss@6.0.14", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "homepage": "http://postcss.org/", + "repository": "postcss/postcss", "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", @@ -74,8 +54,35 @@ "strip-ansi": "^4.0.0", "yaspeller-ci": "^0.7.0" }, - "engines": { - "node": ">=4.0.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" + ] }, "eslintConfig": { "parser": "babel-eslint", @@ -90,49 +97,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/source-map/package.json index be5a0e7b..24663417 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/source-map/package.json @@ -1,193 +1,52 @@ { - "_args": [ - [ - "source-map@0.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -197,19 +56,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/supports-color/package.json index 324dfe6b..b665bab8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/node_modules/supports-color/package.json @@ -1,59 +1,24 @@ { - "_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", + "name": "supports-color", + "version": "4.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "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", @@ -76,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "import-fresh": "^2.0.0", + "xo": "*" }, - "version": "4.5.0" + "browser": "browser.js" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/package.json index 68d3823f..267951b9 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-extract-imports/package.json @@ -1,45 +1,41 @@ { - "_args": [ - [ - "postcss-modules-extract-imports@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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": [ - "/css-loader" + "files": [ + "lib" ], - "_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" - }, + "author": "Glen Maddern", + "license": "ISC", "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", @@ -50,34 +46,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/ansi-styles/package.json index e75a8048..432ed81f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/ansi-styles/package.json @@ -1,89 +1,54 @@ { - "_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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/chalk/package.json index 7126ab21..69889f0c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/chalk/package.json @@ -1,101 +1,66 @@ { - "_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-local-by-default/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-local-by-default/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" - ] - } + "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" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/has-flag/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/has-flag/package.json index d145c0d5..bfcd302e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/has-flag/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/has-flag/package.json @@ -1,52 +1,28 @@ { - "_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-local-by-default/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-local-by-default/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", + "name": "has-flag", + "version": "2.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -66,31 +42,8 @@ "minimist", "optimist" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/postcss/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/postcss/package.json index 96997afe..62c26b9d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/postcss/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/postcss/package.json @@ -1,50 +1,30 @@ { - "_args": [ - [ - "postcss@6.0.14", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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-local-by-default/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-local-by-default" - ], - "_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" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "homepage": "http://postcss.org/", + "repository": "postcss/postcss", "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", @@ -74,8 +54,35 @@ "strip-ansi": "^4.0.0", "yaspeller-ci": "^0.7.0" }, - "engines": { - "node": ">=4.0.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" + ] }, "eslintConfig": { "parser": "babel-eslint", @@ -90,49 +97,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/source-map/package.json index da7d6667..24663417 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/source-map/package.json @@ -1,193 +1,52 @@ { - "_args": [ - [ - "source-map@0.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "source-map@0.6.1", - "_id": "source-map@0.6.1", - "_inBundle": false, - "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "_location": "/css-loader/postcss-modules-local-by-default/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-local-by-default/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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -197,19 +56,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/supports-color/package.json index 333e252f..b665bab8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/node_modules/supports-color/package.json @@ -1,59 +1,24 @@ { - "_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-local-by-default/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-local-by-default/chalk", - "/css-loader/postcss-modules-local-by-default/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", + "name": "supports-color", + "version": "4.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "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", @@ -76,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "import-fresh": "^2.0.0", + "xo": "*" }, - "version": "4.5.0" + "browser": "browser.js" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/package.json index 034c154f..7d6359eb 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-local-by-default/package.json @@ -1,46 +1,23 @@ { - "_args": [ - [ - "postcss-modules-local-by-default@1.2.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss-modules-local-by-default", + "version": "1.2.0", + "description": "A CSS Modules transform to make local scope the default", + "keywords": [ + "css-modules", + "postcss", + "css", + "postcss-plugin" ], - "_from": "postcss-modules-local-by-default@1.2.0", - "_id": "postcss-modules-local-by-default@1.2.0", - "_inBundle": false, - "_integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", - "_location": "/css-loader/postcss-modules-local-by-default", - "_phantomChildren": { - "color-convert": "1.9.1", - "escape-string-regexp": "1.0.5" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-modules-local-by-default@1.2.0", - "name": "postcss-modules-local-by-default", - "escapedName": "postcss-modules-local-by-default", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/css-loader" - ], - "_resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", - "_spec": "1.2.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Mark Dalgleish" - }, - "bugs": { - "url": "https://github.com/css-modules/postcss-modules-local-by-default/issues" + "author": "Mark Dalgleish", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/css-modules/postcss-modules-local-by-default.git" }, "dependencies": { "css-selector-tokenizer": "^0.7.0", "postcss": "^6.0.1" }, - "description": "A CSS Modules transform to make local scope the default", "devDependencies": { "chokidar-cli": "^1.0.1", "codecov.io": "^0.1.2", @@ -49,32 +26,18 @@ "istanbul": "^0.4.5", "tape": "^4.0.0" }, + "scripts": { + "lint": "eslint index.js test.js", + "pretest": "npm run lint", + "test": "tape test.js", + "autotest": "chokidar index.js test.js -c 'npm test'", + "precover": "npm run lint", + "cover": "istanbul cover test.js", + "travis": "npm run cover -- --report lcovonly", + "prepublish": "npm prune && npm test", + "publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish" + }, "files": [ "index.js" - ], - "homepage": "https://github.com/css-modules/postcss-modules-local-by-default#readme", - "keywords": [ - "css-modules", - "postcss", - "css", - "postcss-plugin" - ], - "license": "MIT", - "name": "postcss-modules-local-by-default", - "repository": { - "type": "git", - "url": "git+https://github.com/css-modules/postcss-modules-local-by-default.git" - }, - "scripts": { - "autotest": "chokidar index.js test.js -c 'npm test'", - "cover": "istanbul cover test.js", - "lint": "eslint index.js test.js", - "precover": "npm run lint", - "prepublish": "npm prune && npm test", - "pretest": "npm run lint", - "publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish", - "test": "tape test.js", - "travis": "npm run cover -- --report lcovonly" - }, - "version": "1.2.0" + ] } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/ansi-styles/package.json index 248b5603..432ed81f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/ansi-styles/package.json @@ -1,89 +1,54 @@ { - "_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-scope/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-scope/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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/chalk/package.json index 8b771fa5..69889f0c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/chalk/package.json @@ -1,101 +1,66 @@ { - "_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-scope/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-scope/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" - ] - } + "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" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/has-flag/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/has-flag/package.json index ec0fe6fc..bfcd302e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/has-flag/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/has-flag/package.json @@ -1,52 +1,28 @@ { - "_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-scope/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-scope/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", + "name": "has-flag", + "version": "2.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -66,31 +42,8 @@ "minimist", "optimist" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/postcss/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/postcss/package.json index a2562c59..62c26b9d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/postcss/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/postcss/package.json @@ -1,50 +1,30 @@ { - "_args": [ - [ - "postcss@6.0.14", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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-scope/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-scope" - ], - "_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" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "homepage": "http://postcss.org/", + "repository": "postcss/postcss", "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", @@ -74,8 +54,35 @@ "strip-ansi": "^4.0.0", "yaspeller-ci": "^0.7.0" }, - "engines": { - "node": ">=4.0.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" + ] }, "eslintConfig": { "parser": "babel-eslint", @@ -90,49 +97,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/source-map/package.json index 82e82371..24663417 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/source-map/package.json @@ -1,193 +1,52 @@ { - "_args": [ - [ - "source-map@0.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "source-map@0.6.1", - "_id": "source-map@0.6.1", - "_inBundle": false, - "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "_location": "/css-loader/postcss-modules-scope/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-scope/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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -197,19 +56,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/supports-color/package.json index 44522e32..b665bab8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/node_modules/supports-color/package.json @@ -1,59 +1,24 @@ { - "_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-scope/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-scope/chalk", - "/css-loader/postcss-modules-scope/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", + "name": "supports-color", + "version": "4.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "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", @@ -76,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "import-fresh": "^2.0.0", + "xo": "*" }, - "version": "4.5.0" + "browser": "browser.js" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/package.json index c46cb56a..f08fba68 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-scope/package.json @@ -1,46 +1,42 @@ { - "_args": [ - [ - "postcss-modules-scope@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss-modules-scope", + "version": "1.1.0", + "description": "A CSS Modules transform to extract export statements from local-scope classes", + "main": "lib/index.js", + "scripts": { + "lint": "eslint src", + "build": "babel --out-dir lib src", + "watch": "chokidar src -c 'npm run build'", + "test": "mocha --compilers js:babel/register", + "posttest": "npm run lint && npm run build", + "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-scope.git" + }, + "keywords": [ + "css-modules", + "postcss", + "plugin" ], - "_from": "postcss-modules-scope@1.1.0", - "_id": "postcss-modules-scope@1.1.0", - "_inBundle": false, - "_integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", - "_location": "/css-loader/postcss-modules-scope", - "_phantomChildren": { - "color-convert": "1.9.1", - "escape-string-regexp": "1.0.5" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-modules-scope@1.1.0", - "name": "postcss-modules-scope", - "escapedName": "postcss-modules-scope", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/css-loader" + "files": [ + "lib" ], - "_resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Glen Maddern" - }, + "author": "Glen Maddern", + "license": "ISC", "bugs": { "url": "https://github.com/css-modules/postcss-modules-scope/issues" }, + "homepage": "https://github.com/css-modules/postcss-modules-scope", "dependencies": { "css-selector-tokenizer": "^0.7.0", "postcss": "^6.0.1" }, - "description": "A CSS Modules transform to extract export statements from local-scope classes", "devDependencies": { "babel": "^5.4.7", "babel-eslint": "^6.1.2", @@ -52,34 +48,5 @@ "css-selector-parser": "^1.0.4", "eslint": "^1.5.0", "mocha": "^3.0.1" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/css-modules/postcss-modules-scope", - "keywords": [ - "css-modules", - "postcss", - "plugin" - ], - "license": "ISC", - "main": "lib/index.js", - "name": "postcss-modules-scope", - "repository": { - "type": "git", - "url": "git+https://github.com/css-modules/postcss-modules-scope.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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/ansi-styles/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/ansi-styles/package.json index 2353e84f..432ed81f 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/ansi-styles/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/ansi-styles/package.json @@ -1,89 +1,54 @@ { - "_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-values/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-values/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" + "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/chalk/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/chalk/package.json index f3589fb2..69889f0c 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/chalk/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/chalk/package.json @@ -1,101 +1,66 @@ { - "_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-values/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-values/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" - ] - } + "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" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/has-flag/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/has-flag/package.json index f959cfa2..bfcd302e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/has-flag/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/has-flag/package.json @@ -1,52 +1,28 @@ { - "_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-values/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-values/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", + "name": "has-flag", + "version": "2.0.0", + "description": "Check if argv has a specific flag", + "license": "MIT", + "repository": "sindresorhus/has-flag", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/has-flag/issues" - }, - "description": "Check if argv has a specific flag", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/has-flag#readme", "keywords": [ "has", "check", @@ -66,31 +42,8 @@ "minimist", "optimist" ], - "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" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/postcss/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/postcss/package.json index 47e5a8b0..62c26b9d 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/postcss/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/postcss/package.json @@ -1,50 +1,30 @@ { - "_args": [ - [ - "postcss@6.0.14", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "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" ], - "_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-values/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-values" - ], - "_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" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "homepage": "http://postcss.org/", + "repository": "postcss/postcss", "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", @@ -74,8 +54,35 @@ "strip-ansi": "^4.0.0", "yaspeller-ci": "^0.7.0" }, - "engines": { - "node": ">=4.0.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" + ] }, "eslintConfig": { "parser": "babel-eslint", @@ -90,49 +97,5 @@ "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" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/source-map/package.json index 51e0c1c9..24663417 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/source-map/package.json @@ -1,193 +1,52 @@ { - "_args": [ - [ - "source-map@0.6.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "source-map@0.6.1", - "_id": "source-map@0.6.1", - "_inBundle": false, - "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "_location": "/css-loader/postcss-modules-values/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-values/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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.6.1", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "source-map.d.ts", @@ -197,19 +56,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.6.1" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/supports-color/package.json index 1076c8ca..b665bab8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/node_modules/supports-color/package.json @@ -1,59 +1,24 @@ { - "_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-values/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-values/chalk", - "/css-loader/postcss-modules-values/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", + "name": "supports-color", + "version": "4.5.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "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", @@ -76,14 +41,13 @@ "truecolor", "16m" ], - "license": "MIT", - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^2.0.0" }, - "scripts": { - "test": "xo && ava" + "devDependencies": { + "ava": "*", + "import-fresh": "^2.0.0", + "xo": "*" }, - "version": "4.5.0" + "browser": "browser.js" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/package.json index 0a04328c..bc22c107 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-modules-values/package.json @@ -1,54 +1,32 @@ { - "_args": [ - [ - "postcss-modules-values@1.3.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss-modules-values", + "version": "1.3.0", + "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files", + "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-core/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/postcss-modules-values.git" + }, + "keywords": [ + "css", + "modules", + "postcss" ], - "_from": "postcss-modules-values@1.3.0", - "_id": "postcss-modules-values@1.3.0", - "_inBundle": false, - "_integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", - "_location": "/css-loader/postcss-modules-values", - "_phantomChildren": { - "color-convert": "1.9.1", - "escape-string-regexp": "1.0.5" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-modules-values@1.3.0", - "name": "postcss-modules-values", - "escapedName": "postcss-modules-values", - "rawSpec": "1.3.0", - "saveSpec": null, - "fetchSpec": "1.3.0" - }, - "_requiredBy": [ - "/css-loader" - ], - "_resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", - "_spec": "1.3.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Glen Maddern" - }, - "babel": { - "presets": [ - "es2015" - ], - "plugins": [ - "add-module-exports" - ] - }, + "author": "Glen Maddern", + "license": "ISC", "bugs": { "url": "https://github.com/css-modules/postcss-modules-values/issues" }, - "dependencies": { - "icss-replace-symbols": "^1.1.0", - "postcss": "^6.0.1" - }, - "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files", + "homepage": "https://github.com/css-modules/postcss-modules-values#readme", "devDependencies": { "babel-cli": "^6.5.2", "babel-core": "^6.5.2", @@ -58,27 +36,16 @@ "mocha": "^3.0.2", "standard": "^8.4.0" }, - "homepage": "https://github.com/css-modules/postcss-modules-values#readme", - "keywords": [ - "css", - "modules", - "postcss" - ], - "license": "ISC", - "main": "lib/index.js", - "name": "postcss-modules-values", - "repository": { - "type": "git", - "url": "git+https://github.com/css-modules/postcss-modules-values.git" + "dependencies": { + "icss-replace-symbols": "^1.1.0", + "postcss": "^6.0.1" }, - "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-core/register", - "travis": "npm run test" - }, - "version": "1.3.0" + "babel": { + "presets": [ + "es2015" + ], + "plugins": [ + "add-module-exports" + ] + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-charset/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-charset/package.json index 30b4fc34..208f792b 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-charset/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-charset/package.json @@ -1,66 +1,32 @@ { - "_args": [ - [ - "postcss-normalize-charset@1.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-normalize-charset@1.1.1", - "_id": "postcss-normalize-charset@1.1.1", - "_inBundle": false, - "_integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", - "_location": "/css-loader/postcss-normalize-charset", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-normalize-charset@1.1.1", - "name": "postcss-normalize-charset", - "escapedName": "postcss-normalize-charset", - "rawSpec": "1.1.1", - "saveSpec": null, - "fetchSpec": "1.1.1" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", - "_spec": "1.1.1", - "_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-charset/issues" - }, - "dependencies": { - "postcss": "^5.0.5" - }, + "name": "postcss-normalize-charset", + "version": "1.1.1", "description": "Add necessary or remove extra charset with PostCSS", - "devDependencies": { - "ava": "^0.16.0", - "eslint": "^1.4.1", - "postcss-devtools": "^1.1.1" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/ben-eb/postcss-charset", "keywords": [ "postcss", "css", "postcss-plugin", "charset" ], + "author": "Bogdan Chadkin ", + "files": [ + "index.js" + ], "license": "MIT", - "name": "postcss-normalize-charset", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-charset.git" + "repository": "ben-eb/postcss-charset", + "bugs": { + "url": "https://github.com/ben-eb/postcss-charset/issues" + }, + "homepage": "https://github.com/ben-eb/postcss-charset", + "dependencies": { + "postcss": "^5.0.5" + }, + "devDependencies": { + "ava": "^0.16.0", + "eslint": "^1.4.1", + "postcss-devtools": "^1.1.1" }, "scripts": { "test": "eslint index.js test && ava" - }, - "version": "1.1.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-url/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-url/package.json index f090d4f4..11afd499 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-url/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-normalize-url/package.json @@ -1,50 +1,34 @@ { - "_args": [ - [ - "postcss-normalize-url@3.0.8", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss-normalize-url", + "version": "3.0.8", + "description": "Normalize URLs with PostCSS", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" ], - "_from": "postcss-normalize-url@3.0.8", - "_id": "postcss-normalize-url@3.0.8", - "_inBundle": false, - "_integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", - "_location": "/css-loader/postcss-normalize-url", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-normalize-url@3.0.8", - "name": "postcss-normalize-url", - "escapedName": "postcss-normalize-url", - "rawSpec": "3.0.8", - "saveSpec": null, - "fetchSpec": "3.0.8" + "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__" }, - "_requiredBy": [ - "/css-loader/cssnano" + "keywords": [ + "css", + "normalize", + "optimise", + "optimisation", + "postcss", + "postcss-plugin", + "url" ], - "_resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", - "_spec": "3.0.8", - "_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-normalize-url/issues" - }, + "license": "MIT", "dependencies": { "is-absolute-url": "^2.0.0", "normalize-url": "^1.4.0", "postcss": "^5.0.14", "postcss-value-parser": "^3.2.3" }, - "description": "Normalize URLs with PostCSS", "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.3.17", @@ -60,35 +44,17 @@ "eslint-plugin-babel": "^3.3.0", "eslint-plugin-import": "^2.0.1" }, + "homepage": "https://github.com/ben-eb/postcss-normalize-url", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-normalize-url", "eslintConfig": { "extends": "cssnano" }, - "files": [ - "dist", - "LICENSE-MIT" - ], - "homepage": "https://github.com/ben-eb/postcss-normalize-url", - "keywords": [ - "css", - "normalize", - "optimise", - "optimisation", - "postcss", - "postcss-plugin", - "url" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-normalize-url", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-normalize-url.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": "3.0.8" + "ava": { + "require": "babel-register" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-ordered-values/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-ordered-values/package.json index 7b959389..5d5786a2 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-ordered-values/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-ordered-values/package.json @@ -1,48 +1,26 @@ { - "_args": [ - [ - "postcss-ordered-values@2.2.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-ordered-values@2.2.3", - "_id": "postcss-ordered-values@2.2.3", - "_inBundle": false, - "_integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", - "_location": "/css-loader/postcss-ordered-values", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-ordered-values@2.2.3", - "name": "postcss-ordered-values", - "escapedName": "postcss-ordered-values", - "rawSpec": "2.2.3", - "saveSpec": null, - "fetchSpec": "2.2.3" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-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-ordered-values/issues" - }, - "dependencies": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.1" - }, + "name": "postcss-ordered-values", + "version": "2.2.3", "description": "Ensure values are ordered consistently in your CSS.", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" + ], + "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" + }, + "keywords": [ + "css", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.17.0", @@ -59,33 +37,21 @@ "eslint-plugin-babel": "^3.3.0", "eslint-plugin-import": "^2.0.1" }, + "homepage": "https://github.com/ben-eb/postcss-ordered-values", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-ordered-values", + "dependencies": { + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.1" + }, + "ava": { + "require": "babel-register" + }, "eslintConfig": { "extends": "cssnano" - }, - "files": [ - "dist", - "LICENSE-MIT" - ], - "homepage": "https://github.com/ben-eb/postcss-ordered-values", - "keywords": [ - "css", - "postcss", - "postcss-plugin" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-ordered-values", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-ordered-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.2.3" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-idents/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-idents/package.json index 2c02f901..815ed733 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-idents/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-idents/package.json @@ -1,48 +1,26 @@ { - "_args": [ - [ - "postcss-reduce-idents@2.4.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-reduce-idents@2.4.0", - "_id": "postcss-reduce-idents@2.4.0", - "_inBundle": false, - "_integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", - "_location": "/css-loader/postcss-reduce-idents", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-reduce-idents@2.4.0", - "name": "postcss-reduce-idents", - "escapedName": "postcss-reduce-idents", - "rawSpec": "2.4.0", - "saveSpec": null, - "fetchSpec": "2.4.0" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", - "_spec": "2.4.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-reduce-idents/issues" - }, - "dependencies": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" - }, + "name": "postcss-reduce-idents", + "version": "2.4.0", "description": "Reduce custom identifiers with PostCSS.", + "main": "dist/index.js", + "files": [ + "dist", + "LICENSE-MIT" + ], + "scripts": { + "contributorAdd": "all-contributors add", + "contributorGenerate": "all-contributors generate", + "pretest": "eslint src --fix", + "prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/", + "test": "ava src/__tests__/*.js", + "test-012": "ava src/__tests__/*.js" + }, + "keywords": [ + "css", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.7", "ava": "^0.17.0", @@ -59,33 +37,21 @@ "eslint-plugin-babel": "^3.3.0", "eslint-plugin-import": "^2.0.1" }, + "homepage": "https://github.com/ben-eb/postcss-reduce-idents", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-reduce-idents", + "dependencies": { + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.2" + }, + "ava": { + "require": "babel-register" + }, "eslintConfig": { "extends": "cssnano" - }, - "files": [ - "dist", - "LICENSE-MIT" - ], - "homepage": "https://github.com/ben-eb/postcss-reduce-idents", - "keywords": [ - "css", - "postcss", - "postcss-plugin" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-reduce-idents", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-reduce-idents.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 --fix", - "test": "ava src/__tests__/*.js", - "test-012": "ava src/__tests__/*.js" - }, - "version": "2.4.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-initial/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-initial/package.json index e7263499..343ae1be 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-initial/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-initial/package.json @@ -1,47 +1,28 @@ { - "_args": [ - [ - "postcss-reduce-initial@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-reduce-initial@1.0.1", - "_id": "postcss-reduce-initial@1.0.1", - "_inBundle": false, - "_integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", - "_location": "/css-loader/postcss-reduce-initial", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-reduce-initial@1.0.1", - "name": "postcss-reduce-initial", - "escapedName": "postcss-reduce-initial", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", - "_spec": "1.0.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-reduce-initial/issues" - }, - "dependencies": { - "postcss": "^5.0.4" - }, + "name": "postcss-reduce-initial", + "version": "1.0.1", "description": "Reduce initial definitions to the actual initial value, where possible.", + "main": "dist/index.js", + "files": [ + "data", + "dist/index.js", + "LICENSE-MIT" + ], + "scripts": { + "acquire": "node ./dist/acquire.js > ./data/values.json", + "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" + }, + "keywords": [ + "css", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.17.0", @@ -61,35 +42,20 @@ "html2plaintext": "^1.0.1", "is-html": "^1.0.0" }, + "homepage": "https://github.com/ben-eb/postcss-reduce-initial", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-reduce-initial", + "dependencies": { + "postcss": "^5.0.4" + }, + "ava": { + "require": "babel-register" + }, "eslintConfig": { "extends": "cssnano" - }, - "files": [ - "data", - "dist/index.js", - "LICENSE-MIT" - ], - "homepage": "https://github.com/ben-eb/postcss-reduce-initial", - "keywords": [ - "css", - "postcss", - "postcss-plugin" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-reduce-initial", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-reduce-initial.git" - }, - "scripts": { - "acquire": "node ./dist/acquire.js > ./data/values.json", - "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": "1.0.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-transforms/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-transforms/package.json index e1dd8141..e4a022e2 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-transforms/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-reduce-transforms/package.json @@ -1,49 +1,19 @@ { - "_args": [ - [ - "postcss-reduce-transforms@1.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-reduce-transforms@1.0.4", - "_id": "postcss-reduce-transforms@1.0.4", - "_inBundle": false, - "_integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", - "_location": "/css-loader/postcss-reduce-transforms", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-reduce-transforms@1.0.4", - "name": "postcss-reduce-transforms", - "escapedName": "postcss-reduce-transforms", - "rawSpec": "1.0.4", - "saveSpec": null, - "fetchSpec": "1.0.4" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", - "_spec": "1.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-register" - }, - "bugs": { - "url": "https://github.com/ben-eb/postcss-reduce-transforms/issues" - }, - "dependencies": { - "has": "^1.0.1", - "postcss": "^5.0.8", - "postcss-value-parser": "^3.0.1" - }, + "name": "postcss-reduce-transforms", + "version": "1.0.4", "description": "Reduce transform functions with PostCSS.", + "main": "dist/index.js", + "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__" + }, + "files": [ + "LICENSE-MIT", + "dist" + ], + "license": "MIT", "devDependencies": { "ava": "^0.16.0", "babel-cli": "^6.3.17", @@ -59,26 +29,22 @@ "eslint-plugin-babel": "^3.3.0", "eslint-plugin-import": "^2.0.1" }, + "homepage": "https://github.com/ben-eb/postcss-reduce-transforms", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-reduce-transforms", + "dependencies": { + "has": "^1.0.1", + "postcss": "^5.0.8", + "postcss-value-parser": "^3.0.1" + }, + "ava": { + "require": "babel-register" + }, "eslintConfig": { "extends": "cssnano" - }, - "files": [ - "LICENSE-MIT", - "dist" - ], - "homepage": "https://github.com/ben-eb/postcss-reduce-transforms", - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-reduce-transforms", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-reduce-transforms.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": "1.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-selector-parser/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-selector-parser/package.json index d3547486..f4a59597 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-selector-parser/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-selector-parser/package.json @@ -1,51 +1,6 @@ { - "_args": [ - [ - "postcss-selector-parser@2.2.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-selector-parser@2.2.3", - "_id": "postcss-selector-parser@2.2.3", - "_inBundle": false, - "_integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", - "_location": "/css-loader/postcss-selector-parser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-selector-parser@2.2.3", - "name": "postcss-selector-parser", - "escapedName": "postcss-selector-parser", - "rawSpec": "2.2.3", - "saveSpec": null, - "fetchSpec": "2.2.3" - }, - "_requiredBy": [ - "/css-loader/postcss-merge-rules", - "/css-loader/postcss-minify-selectors" - ], - "_resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-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", - "concurrency": 5 - }, - "bugs": { - "url": "https://github.com/postcss/postcss-selector-parser/issues" - }, - "dependencies": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - }, - "description": "> Selector parser with built in methods for working with selector strings.", + "name": "postcss-selector-parser", + "version": "2.2.3", "devDependencies": { "ava": "^0.17.0", "babel-cli": "^6.4.0", @@ -66,35 +21,44 @@ "minimist": "^1.2.0", "nyc": "^10.0.0" }, - "eslintConfig": { - "extends": "cssnano" - }, + "main": "dist/index.js", "files": [ "API.md", "CHANGELOG.md", "LICENSE-MIT", "dist" ], - "homepage": "https://github.com/postcss/postcss-selector-parser", + "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 src/__tests__/*.js", + "test-012": "nyc ava src/__tests__/*.js" + }, + "dependencies": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, "license": "MIT", - "main": "dist/index.js", - "name": "postcss-selector-parser", + "homepage": "https://github.com/postcss/postcss-selector-parser", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "postcss/postcss-selector-parser", + "ava": { + "require": "babel-register", + "concurrency": 5 + }, "nyc": { "exclude": [ "node_modules", "**/__tests__" ] }, - "repository": { - "type": "git", - "url": "git+https://github.com/postcss/postcss-selector-parser.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 src/__tests__/*.js", - "test-012": "nyc ava src/__tests__/*.js" - }, - "version": "2.2.3" + "eslintConfig": { + "extends": "cssnano" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-svgo/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-svgo/package.json index 89d72829..a5ebd016 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-svgo/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-svgo/package.json @@ -1,50 +1,31 @@ { - "_args": [ - [ - "postcss-svgo@2.1.6", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-svgo@2.1.6", - "_id": "postcss-svgo@2.1.6", - "_inBundle": false, - "_integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", - "_location": "/css-loader/postcss-svgo", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-svgo@2.1.6", - "name": "postcss-svgo", - "escapedName": "postcss-svgo", - "rawSpec": "2.1.6", - "saveSpec": null, - "fetchSpec": "2.1.6" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", - "_spec": "2.1.6", - "_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-svgo/issues" - }, - "dependencies": { - "is-svg": "^2.0.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3", - "svgo": "^0.7.0" - }, + "name": "postcss-svgo", + "version": "2.1.6", "description": "Optimise inline SVG 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__/", + "report": "nyc report --reporter=html", + "test": "nyc --reporter=text ava src/__tests__", + "test-012": "nyc --reporter=text ava src/__tests__" + }, + "files": [ + "LICENSE-MIT", + "dist" + ], + "keywords": [ + "css", + "minify", + "optimise", + "postcss", + "postcss-plugin", + "svg", + "svgo" + ], + "license": "MIT", "devDependencies": { "all-contributors-cli": "^3.0.5", "ava": "^0.16.0", @@ -64,38 +45,23 @@ "nyc": "^10.0.0", "pleeease-filters": "^3.0.0" }, + "homepage": "https://github.com/ben-eb/postcss-svgo", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-svgo", + "dependencies": { + "is-svg": "^2.0.0", + "postcss": "^5.0.14", + "postcss-value-parser": "^3.2.3", + "svgo": "^0.7.0" + }, + "ava": { + "require": "babel-register" + }, "eslintConfig": { "extends": "cssnano" - }, - "files": [ - "LICENSE-MIT", - "dist" - ], - "homepage": "https://github.com/ben-eb/postcss-svgo", - "keywords": [ - "css", - "minify", - "optimise", - "postcss", - "postcss-plugin", - "svg", - "svgo" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-svgo", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-svgo.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", - "report": "nyc report --reporter=html", - "test": "nyc --reporter=text ava src/__tests__", - "test-012": "nyc --reporter=text ava src/__tests__" - }, - "version": "2.1.6" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-unique-selectors/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-unique-selectors/package.json index cfd99882..a0d8d6db 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-unique-selectors/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-unique-selectors/package.json @@ -1,49 +1,23 @@ { - "_args": [ - [ - "postcss-unique-selectors@2.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-unique-selectors@2.0.2", - "_id": "postcss-unique-selectors@2.0.2", - "_inBundle": false, - "_integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", - "_location": "/css-loader/postcss-unique-selectors", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-unique-selectors@2.0.2", - "name": "postcss-unique-selectors", - "escapedName": "postcss-unique-selectors", - "rawSpec": "2.0.2", - "saveSpec": null, - "fetchSpec": "2.0.2" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-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-core/register" - }, - "bugs": { - "url": "https://github.com/ben-eb/postcss-unique-selectors/issues" - }, - "dependencies": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - }, + "name": "postcss-unique-selectors", + "version": "2.0.2", "description": "Ensure CSS selectors are unique.", + "main": "dist/index.js", + "scripts": { + "pretest": "eslint src", + "prepublish": "de dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/", + "test": "ava src/__tests__" + }, + "files": [ + "LICENSE-MIT", + "dist" + ], + "keywords": [ + "css", + "postcss", + "postcss-plugin" + ], + "license": "MIT", "devDependencies": { "ava": "^0.11.0", "babel-cli": "^6.4.0", @@ -56,30 +30,22 @@ "eslint": "^1.10.3", "eslint-config-cssnano": "^1.0.0" }, + "homepage": "https://github.com/ben-eb/postcss-unique-selectors", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-unique-selectors", + "dependencies": { + "alphanum-sort": "^1.0.1", + "postcss": "^5.0.4", + "uniqs": "^2.0.0" + }, + "ava": { + "require": "babel-core/register" + }, "eslintConfig": { "extends": "cssnano" - }, - "files": [ - "LICENSE-MIT", - "dist" - ], - "homepage": "https://github.com/ben-eb/postcss-unique-selectors", - "keywords": [ - "css", - "postcss", - "postcss-plugin" - ], - "license": "MIT", - "main": "dist/index.js", - "name": "postcss-unique-selectors", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-unique-selectors.git" - }, - "scripts": { - "prepublish": "de dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/", - "pretest": "eslint src", - "test": "ava src/__tests__" - }, - "version": "2.0.2" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-value-parser/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-value-parser/package.json index b2156e3d..89dd0a82 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-value-parser/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-value-parser/package.json @@ -1,59 +1,21 @@ { - "_args": [ - [ - "postcss-value-parser@3.3.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-value-parser@3.3.0", - "_id": "postcss-value-parser@3.3.0", - "_inBundle": false, - "_integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=", - "_location": "/css-loader/postcss-value-parser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-value-parser@3.3.0", - "name": "postcss-value-parser", - "escapedName": "postcss-value-parser", - "rawSpec": "3.3.0", - "saveSpec": null, - "fetchSpec": "3.3.0" - }, - "_requiredBy": [ - "/css-loader", - "/css-loader/autoprefixer", - "/css-loader/cssnano", - "/css-loader/postcss-colormin", - "/css-loader/postcss-convert-values", - "/css-loader/postcss-merge-idents", - "/css-loader/postcss-minify-font-values", - "/css-loader/postcss-minify-gradients", - "/css-loader/postcss-minify-params", - "/css-loader/postcss-normalize-url", - "/css-loader/postcss-ordered-values", - "/css-loader/postcss-reduce-idents", - "/css-loader/postcss-reduce-transforms", - "/css-loader/postcss-svgo" - ], - "_resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", - "_spec": "3.3.0", - "_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-value-parser/issues" - }, + "name": "postcss-value-parser", + "version": "3.3.0", "description": "Transforms css values and at-rule params into the tree", + "main": "lib/index.js", + "files": [ + "lib" + ], "devDependencies": { "eslint": "^2.1.0", "eslint-config-postcss": "^2.0.0", "tap-spec": "^4.1.0", "tape": "^4.2.0" }, + "scripts": { + "test": "tape test/*.js | tap-spec", + "posttest": "eslint ." + }, "eslintConfig": { "extends": "postcss/es5", "rules": { @@ -64,25 +26,19 @@ "consistent-return": 0 } }, - "files": [ - "lib" - ], + "author": "Bogdan Chadkin ", + "license": "MIT", "homepage": "https://github.com/TrySound/postcss-value-parser", + "repository": { + "type": "git", + "url": "https://github.com/TrySound/postcss-value-parser.git" + }, "keywords": [ "postcss", "value", "parser" ], - "license": "MIT", - "main": "lib/index.js", - "name": "postcss-value-parser", - "repository": { - "type": "git", - "url": "git+https://github.com/TrySound/postcss-value-parser.git" - }, - "scripts": { - "posttest": "eslint .", - "test": "tape test/*.js | tap-spec" - }, - "version": "3.3.0" + "bugs": { + "url": "https://github.com/TrySound/postcss-value-parser/issues" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-zindex/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-zindex/package.json index 17bb71eb..14580012 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-zindex/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss-zindex/package.json @@ -1,58 +1,17 @@ { - "_args": [ - [ - "postcss-zindex@2.2.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "postcss-zindex@2.2.0", - "_id": "postcss-zindex@2.2.0", - "_inBundle": false, - "_integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", - "_location": "/css-loader/postcss-zindex", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss-zindex@2.2.0", - "name": "postcss-zindex", - "escapedName": "postcss-zindex", - "rawSpec": "2.2.0", - "saveSpec": null, - "fetchSpec": "2.2.0" - }, - "_requiredBy": [ - "/css-loader/cssnano" - ], - "_resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", - "_spec": "2.2.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" - }, - "bugs": { - "url": "https://github.com/ben-eb/postcss-zindex/issues" - }, - "dependencies": { - "has": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - }, + "name": "postcss-zindex", + "version": "2.2.0", "description": "Reduce z-index values with PostCSS.", - "devDependencies": { - "jshint": "^2.8.0", - "jshint-stylish": "^2.0.1", - "tap-spec": "^4.1.0", - "tape": "^4.2.0" + "main": "index.js", + "scripts": { + "lint": "jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js", + "test": "tape test.js | tap-spec" }, "files": [ "LICENSE-MIT", "index.js", "lib" ], - "homepage": "https://github.com/ben-eb/postcss-zindex", "keywords": [ "css", "normalize", @@ -63,15 +22,22 @@ "z-index" ], "license": "MIT", - "main": "index.js", - "name": "postcss-zindex", - "repository": { - "type": "git", - "url": "git+https://github.com/ben-eb/postcss-zindex.git" + "dependencies": { + "has": "^1.0.1", + "postcss": "^5.0.4", + "uniqs": "^2.0.0" }, - "scripts": { - "lint": "jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js", - "test": "tape test.js | tap-spec" + "devDependencies": { + "jshint": "^2.8.0", + "jshint-stylish": "^2.0.1", + "tap-spec": "^4.1.0", + "tape": "^4.2.0" }, - "version": "2.2.0" + "homepage": "https://github.com/ben-eb/postcss-zindex", + "author": { + "name": "Ben Briggs", + "email": "beneb.info@gmail.com", + "url": "http://beneb.info" + }, + "repository": "ben-eb/postcss-zindex" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/node_modules/supports-color/package.json index bbd8f86e..0cc4b383 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/node_modules/supports-color/package.json @@ -1,58 +1,31 @@ { - "_args": [ - [ - "supports-color@3.2.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "supports-color@3.2.3", - "_id": "supports-color@3.2.3", - "_inBundle": false, - "_integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "_location": "/css-loader/postcss/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@3.2.3", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "3.2.3", - "saveSpec": null, - "fetchSpec": "3.2.3" - }, - "_requiredBy": [ - "/css-loader/postcss" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "_spec": "3.2.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "supports-color", + "version": "3.2.3", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)", + "JD Ballard (github.com/qix-)" + ], "browser": "browser.js", - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "dependencies": { - "has-flag": "^1.0.0" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "mocha": "*", - "require-uncached": "^1.0.2", - "xo": "*" - }, "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "xo && mocha", + "travis": "mocha" + }, "files": [ "index.js", "browser.js" ], - "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -76,34 +49,14 @@ "16m", "million" ], - "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": "JD Ballard", - "email": "i.am.qix@gmail.com", - "url": "github.com/qix-" - } - ], - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" + "dependencies": { + "has-flag": "^1.0.0" }, - "scripts": { - "test": "xo && mocha", - "travis": "mocha" + "devDependencies": { + "mocha": "*", + "require-uncached": "^1.0.2", + "xo": "*" }, - "version": "3.2.3", "xo": { "envs": [ "node", diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/package.json index ec0c7fec..805bf7db 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/postcss/package.json @@ -1,78 +1,31 @@ { - "_args": [ - [ - "postcss@5.2.18", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "postcss", + "version": "5.2.18", + "description": "Tool for transforming styles with JS plugins", + "engines": { + "node": ">=0.12" + }, + "keywords": [ + "css", + "postcss", + "rework", + "preprocessor", + "parser", + "source map", + "transform", + "manipulation", + "transpiler" ], - "_from": "postcss@5.2.18", - "_id": "postcss@5.2.18", - "_inBundle": false, - "_integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", - "_location": "/css-loader/postcss", - "_phantomChildren": { - "has-flag": "1.0.0" - }, - "_requested": { - "type": "version", - "registry": true, - "raw": "postcss@5.2.18", - "name": "postcss", - "escapedName": "postcss", - "rawSpec": "5.2.18", - "saveSpec": null, - "fetchSpec": "5.2.18" - }, - "_requiredBy": [ - "/css-loader", - "/css-loader/autoprefixer", - "/css-loader/cssnano", - "/css-loader/postcss-calc", - "/css-loader/postcss-colormin", - "/css-loader/postcss-convert-values", - "/css-loader/postcss-discard-comments", - "/css-loader/postcss-discard-duplicates", - "/css-loader/postcss-discard-empty", - "/css-loader/postcss-discard-overridden", - "/css-loader/postcss-discard-unused", - "/css-loader/postcss-filter-plugins", - "/css-loader/postcss-merge-idents", - "/css-loader/postcss-merge-longhand", - "/css-loader/postcss-merge-rules", - "/css-loader/postcss-minify-font-values", - "/css-loader/postcss-minify-gradients", - "/css-loader/postcss-minify-params", - "/css-loader/postcss-minify-selectors", - "/css-loader/postcss-normalize-charset", - "/css-loader/postcss-normalize-url", - "/css-loader/postcss-ordered-values", - "/css-loader/postcss-reduce-idents", - "/css-loader/postcss-reduce-initial", - "/css-loader/postcss-reduce-transforms", - "/css-loader/postcss-svgo", - "/css-loader/postcss-unique-selectors", - "/css-loader/postcss-zindex" - ], - "_resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "_spec": "5.2.18", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andrey Sitnik", - "email": "andrey@sitnik.ru" - }, - "browser": { - "fs": false - }, - "bugs": { - "url": "https://github.com/postcss/postcss/issues" - }, + "author": "Andrey Sitnik ", + "license": "MIT", + "homepage": "http://postcss.org/", + "repository": "postcss/postcss", "dependencies": { "chalk": "^1.1.3", "js-base64": "^2.1.9", "source-map": "^0.5.6", "supports-color": "^3.2.3" }, - "description": "Tool for transforming styles with JS plugins", "devDependencies": { "ava": "^0.17.0", "babel-core": "^6.24.0", @@ -103,40 +56,21 @@ "strip-ansi": "^3.0.1", "yaspeller-ci": "^0.3.0" }, - "engines": { - "node": ">=0.12" + "scripts": { + "lint-staged": "lint-staged", + "test": "gulp" }, - "homepage": "http://postcss.org/", - "keywords": [ - "css", - "postcss", - "rework", - "preprocessor", - "parser", - "source map", - "transform", - "manipulation", - "transpiler" - ], - "license": "MIT", + "main": "lib/postcss", + "types": "lib/postcss.d.ts", "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" - }, - "types": "lib/postcss.d.ts", - "version": "5.2.18" + "browser": { + "fs": false + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/prepend-http/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/prepend-http/package.json index 216af871..75954f70 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/prepend-http/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/prepend-http/package.json @@ -1,52 +1,23 @@ { - "_args": [ - [ - "prepend-http@1.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "prepend-http@1.0.4", - "_id": "prepend-http@1.0.4", - "_inBundle": false, - "_integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "_location": "/css-loader/prepend-http", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "prepend-http@1.0.4", - "name": "prepend-http", - "escapedName": "prepend-http", - "rawSpec": "1.0.4", - "saveSpec": null, - "fetchSpec": "1.0.4" - }, - "_requiredBy": [ - "/css-loader/normalize-url" - ], - "_resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "_spec": "1.0.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "prepend-http", + "version": "1.0.4", + "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", + "license": "MIT", + "repository": "sindresorhus/prepend-http", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/prepend-http/issues" - }, - "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", - "devDependencies": { - "ava": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/prepend-http#readme", "keywords": [ "prepend", "protocol", @@ -57,14 +28,8 @@ "https", "humanized" ], - "license": "MIT", - "name": "prepend-http", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/prepend-http.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.0.4" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/q/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/q/package.json index 47f9e402..8c3b5fe3 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/q/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/q/package.json @@ -1,83 +1,9 @@ { - "_args": [ - [ - "q@1.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "q@1.5.1", - "_id": "q@1.5.1", - "_inBundle": false, - "_integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "_location": "/css-loader/q", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "q@1.5.1", - "name": "q", - "escapedName": "q", - "rawSpec": "1.5.1", - "saveSpec": null, - "fetchSpec": "1.5.1" - }, - "_requiredBy": [ - "/css-loader/coa" - ], - "_resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "_spec": "1.5.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Kris Kowal", - "email": "kris@cixar.com", - "url": "https://github.com/kriskowal" - }, - "bugs": { - "url": "http://github.com/kriskowal/q/issues" - }, - "contributors": [ - { - "name": "Kris Kowal", - "email": "kris@cixar.com", - "url": "https://github.com/kriskowal" - }, - { - "name": "Irakli Gozalishvili", - "email": "rfobic@gmail.com", - "url": "http://jeditoolkit.com" - }, - { - "name": "Domenic Denicola", - "email": "domenic@domenicdenicola.com", - "url": "http://domenicdenicola.com" - } - ], - "dependencies": {}, + "name": "q", + "version": "1.5.1", "description": "A library for promises (CommonJS/Promises/A,B,D)", - "devDependencies": { - "cover": "*", - "grunt": "~0.4.1", - "grunt-cli": "~0.1.9", - "grunt-contrib-uglify": "~0.9.1", - "jasmine-node": "1.11.0", - "jshint": "~2.1.9", - "matcha": "~0.2.0", - "opener": "*", - "promises-aplus-tests": "1.x" - }, - "directories": { - "test": "./spec" - }, - "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" - }, - "files": [ - "LICENSE", - "q.js", - "queue.js" - ], "homepage": "https://github.com/kriskowal/q", + "author": "Kris Kowal (https://github.com/kriskowal)", "keywords": [ "q", "promise", @@ -92,9 +18,51 @@ "browser", "node" ], + "contributors": [ + "Kris Kowal (https://github.com/kriskowal)", + "Irakli Gozalishvili (http://jeditoolkit.com)", + "Domenic Denicola (http://domenicdenicola.com)" + ], + "bugs": { + "mail": "kris@cixar.com", + "url": "http://github.com/kriskowal/q/issues" + }, "license": "MIT", "main": "q.js", - "name": "q", + "files": [ + "LICENSE", + "q.js", + "queue.js" + ], + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q.git" + }, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + }, + "dependencies": {}, + "devDependencies": { + "cover": "*", + "grunt": "~0.4.1", + "grunt-cli": "~0.1.9", + "grunt-contrib-uglify": "~0.9.1", + "jasmine-node": "1.11.0", + "jshint": "~2.1.9", + "matcha": "~0.2.0", + "opener": "*", + "promises-aplus-tests": "1.x" + }, + "scripts": { + "test": "npm ls -s && jasmine-node spec && promises-aplus-tests spec/aplus-adapter && npm run -s lint", + "test-browser": "opener spec/q-spec.html", + "benchmark": "matcha", + "lint": "jshint q.js", + "cover": "cover run jasmine-node spec && cover report html && opener cover_html/index.html", + "minify": "grunt", + "prepublish": "grunt" + }, "overlay": { "teleport": { "dependencies": { @@ -102,18 +70,7 @@ } } }, - "repository": { - "type": "git", - "url": "git://github.com/kriskowal/q.git" - }, - "scripts": { - "benchmark": "matcha", - "cover": "cover run jasmine-node spec && cover report html && opener cover_html/index.html", - "lint": "jshint q.js", - "minify": "grunt", - "prepublish": "grunt", - "test": "npm ls -s && jasmine-node spec && promises-aplus-tests spec/aplus-adapter && npm run -s lint", - "test-browser": "opener spec/q-spec.html" - }, - "version": "1.5.1" + "directories": { + "test": "./spec" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/query-string/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/query-string/package.json index 74c74281..f3cc9d14 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/query-string/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/query-string/package.json @@ -1,56 +1,23 @@ { - "_args": [ - [ - "query-string@4.3.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "query-string@4.3.4", - "_id": "query-string@4.3.4", - "_inBundle": false, - "_integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "_location": "/css-loader/query-string", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "query-string@4.3.4", - "name": "query-string", - "escapedName": "query-string", - "rawSpec": "4.3.4", - "saveSpec": null, - "fetchSpec": "4.3.4" - }, - "_requiredBy": [ - "/css-loader/normalize-url" - ], - "_resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "_spec": "4.3.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "query-string", + "version": "4.3.4", + "description": "Parse and stringify URL query strings", + "license": "MIT", + "repository": "sindresorhus/query-string", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/query-string/issues" - }, - "dependencies": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - }, - "description": "Parse and stringify URL query strings", - "devDependencies": { - "ava": "^0.17.0", - "xo": "^0.16.0" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/query-string#readme", "keywords": [ "browser", "querystring", @@ -66,14 +33,12 @@ "encode", "decode" ], - "license": "MIT", - "name": "query-string", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/query-string.git" + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "4.3.4" + "devDependencies": { + "ava": "^0.17.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-css-calc/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-css-calc/package.json index 5779f02d..6baa0601 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-css-calc/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-css-calc/package.json @@ -1,70 +1,33 @@ { - "_args": [ - [ - "reduce-css-calc@1.3.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "reduce-css-calc", + "version": "1.3.0", + "description": "Reduce CSS calc() function to the maximum", + "keywords": [ + "css", + "calculation", + "calc" ], - "_from": "reduce-css-calc@1.3.0", - "_id": "reduce-css-calc@1.3.0", - "_inBundle": false, - "_integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", - "_location": "/css-loader/reduce-css-calc", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "reduce-css-calc@1.3.0", - "name": "reduce-css-calc", - "escapedName": "reduce-css-calc", - "rawSpec": "1.3.0", - "saveSpec": null, - "fetchSpec": "1.3.0" - }, - "_requiredBy": [ - "/css-loader/postcss-calc" + "author": "Maxime Thirouin", + "license": "MIT", + "repository": "https://github.com/MoOx/reduce-css-calc.git", + "files": [ + "index.js" ], - "_resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", - "_spec": "1.3.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Maxime Thirouin" - }, - "bugs": { - "url": "https://github.com/MoOx/reduce-css-calc/issues" - }, "dependencies": { "balanced-match": "^0.4.2", "math-expression-evaluator": "^1.2.14", "reduce-function-call": "^1.0.1" }, - "description": "Reduce CSS calc() function to the maximum", "devDependencies": { "jscs": "^1.5.9", "jshint": "^2.5.2", "npmpub": "^3.0.3", "tape": "^2.13.4" }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/MoOx/reduce-css-calc#readme", - "keywords": [ - "css", - "calculation", - "calc" - ], - "license": "MIT", - "name": "reduce-css-calc", - "repository": { - "type": "git", - "url": "git+https://github.com/MoOx/reduce-css-calc.git" - }, "scripts": { "jscs": "jscs *.js **/*.js", "jshint": "jshint . --exclude node_modules", - "release": "npmpub", - "test": "npm run jscs && npm run jshint && tape test" - }, - "version": "1.3.0" + "test": "npm run jscs && npm run jshint && tape test", + "release": "npmpub" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-function-call/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-function-call/package.json index 8c1ed6ba..22564ff0 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-function-call/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/reduce-function-call/package.json @@ -1,57 +1,7 @@ { - "_args": [ - [ - "reduce-function-call@1.0.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "reduce-function-call@1.0.2", - "_id": "reduce-function-call@1.0.2", - "_inBundle": false, - "_integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=", - "_location": "/css-loader/reduce-function-call", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "reduce-function-call@1.0.2", - "name": "reduce-function-call", - "escapedName": "reduce-function-call", - "rawSpec": "1.0.2", - "saveSpec": null, - "fetchSpec": "1.0.2" - }, - "_requiredBy": [ - "/css-loader/reduce-css-calc" - ], - "_resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz", - "_spec": "1.0.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "MoOx" - }, - "bugs": { - "url": "https://github.com/MoOx/reduce-function-call/issues" - }, - "dependencies": { - "balanced-match": "^0.4.2" - }, + "name": "reduce-function-call", + "version": "1.0.2", "description": "Reduce function calls in a string, using a callback", - "devDependencies": { - "jscs": "^2.0.0", - "jshint": "^2.8.0", - "jshint-stylish": "^2.0.1", - "npmpub": "^3.1.0", - "tap-colorize": "^1.2.0", - "tape": "^4.0.3" - }, - "files": [ - "CHANGELOG.md", - "LICENSE", - "README.md", - "index.js" - ], - "homepage": "https://github.com/MoOx/reduce-function-call#readme", "keywords": [ "string", "reduce", @@ -61,17 +11,33 @@ "eval", "interpret" ], + "author": "MoOx", "license": "MIT", - "name": "reduce-function-call", "repository": { "type": "git", - "url": "git+https://github.com/MoOx/reduce-function-call.git" + "url": "https://github.com/MoOx/reduce-function-call.git" + }, + "files": [ + "CHANGELOG.md", + "LICENSE", + "README.md", + "index.js" + ], + "dependencies": { + "balanced-match": "^0.4.2" + }, + "devDependencies": { + "jscs": "^2.0.0", + "jshint": "^2.8.0", + "jshint-stylish": "^2.0.1", + "npmpub": "^3.1.0", + "tap-colorize": "^1.2.0", + "tape": "^4.0.3" }, "scripts": { "jscs": "jscs *.js **/*.js", "jshint": "jshint . --exclude node_modules --reporter node_modules/jshint-stylish/index.js", - "release": "npmpub", - "test": "npm run jscs && npm run jshint && tape test | tap-colorize" - }, - "version": "1.0.2" + "test": "npm run jscs && npm run jshint && tape test | tap-colorize", + "release": "npmpub" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/regenerate/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/regenerate/package.json index a88b2728..5c1a6a6e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/regenerate/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/regenerate/package.json @@ -1,50 +1,9 @@ { - "_args": [ - [ - "regenerate@1.3.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerate@1.3.3", - "_id": "regenerate@1.3.3", - "_inBundle": false, - "_integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==", - "_location": "/css-loader/regenerate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerate@1.3.3", - "name": "regenerate", - "escapedName": "regenerate", - "rawSpec": "1.3.3", - "saveSpec": null, - "fetchSpec": "1.3.3" - }, - "_requiredBy": [ - "/css-loader/regexpu-core" - ], - "_resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz", - "_spec": "1.3.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/regenerate/issues" - }, + "name": "regenerate", + "version": "1.3.3", "description": "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.", - "devDependencies": { - "codecov": "^1.0.1", - "grunt": "^0.4.5", - "grunt-shell": "^1.1.1", - "istanbul": "^0.4.3", - "qunit-extras": "^1.1.0", - "qunitjs": "~1.11.0", - "requirejs": "^2.1.15" - }, "homepage": "https://mths.be/regenerate", + "main": "regenerate.js", "keywords": [ "regex", "regexp", @@ -54,15 +13,26 @@ "tool" ], "license": "MIT", - "main": "regenerate.js", - "name": "regenerate", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, "repository": { "type": "git", - "url": "git+https://github.com/mathiasbynens/regenerate.git" + "url": "https://github.com/mathiasbynens/regenerate.git" }, + "bugs": "https://github.com/mathiasbynens/regenerate/issues", "scripts": { "cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js", "test": "node tests/tests.js" }, - "version": "1.3.3" + "devDependencies": { + "codecov": "^1.0.1", + "grunt": "^0.4.5", + "grunt-shell": "^1.1.1", + "istanbul": "^0.4.3", + "qunit-extras": "^1.1.0", + "qunitjs": "~1.11.0", + "requirejs": "^2.1.15" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/regexpu-core/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/regexpu-core/package.json index 59a0571b..c08a7681 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/regexpu-core/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/regexpu-core/package.json @@ -1,92 +1,62 @@ { - "_args": [ - [ - "regexpu-core@1.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regexpu-core@1.0.0", - "_id": "regexpu-core@1.0.0", - "_inBundle": false, - "_integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", - "_location": "/css-loader/regexpu-core", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regexpu-core@1.0.0", - "name": "regexpu-core", - "escapedName": "regexpu-core", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/css-loader/css-selector-tokenizer" - ], - "_resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Mathias Bynens", - "url": "https://mathiasbynens.be/" - }, - "bugs": { - "url": "https://github.com/mathiasbynens/regexpu-core/issues" - }, - "dependencies": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - }, - "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", - "devDependencies": { - "coveralls": "^2.11.2", - "istanbul": "^0.4.0", - "jsesc": "^0.5.0", - "lodash": "^3.6.0", - "mocha": "^2.2.1", - "regexpu-fixtures": "^1.0.0", - "unicode-5.1.0": "^0.1.5", - "unicode-8.0.0": "^0.1.5" - }, - "files": [ - "LICENSE-MIT.txt", - "rewrite-pattern.js", - "data/character-class-escape-sets.js", - "data/iu-mappings.json" - ], - "homepage": "https://mths.be/regexpu", - "keywords": [ - "codegen", - "desugaring", - "ecmascript", - "es5", - "es6", - "harmony", - "javascript", - "refactoring", - "regex", - "regexp", - "regular expressions", - "rewriting", - "syntax", - "transformation", - "transpile", - "transpiler", - "unicode" - ], - "license": "MIT", - "main": "rewrite-pattern.js", - "name": "regexpu-core", - "repository": { - "type": "git", - "url": "git+https://github.com/mathiasbynens/regexpu-core.git" - }, - "scripts": { - "build": "node scripts/iu-mappings.js && node scripts/character-class-escape-sets.js", - "coverage": "istanbul cover --report html node_modules/.bin/_mocha tests/tests.js -- -u exports -R spec", - "test": "mocha tests" - }, - "version": "1.0.0" + "name": "regexpu-core", + "version": "1.0.0", + "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", + "homepage": "https://mths.be/regexpu", + "main": "rewrite-pattern.js", + "keywords": [ + "codegen", + "desugaring", + "ecmascript", + "es5", + "es6", + "harmony", + "javascript", + "refactoring", + "regex", + "regexp", + "regular expressions", + "rewriting", + "syntax", + "transformation", + "transpile", + "transpiler", + "unicode" + ], + "license": "MIT", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "repository": { + "type": "git", + "url": "https://github.com/mathiasbynens/regexpu-core.git" + }, + "bugs": "https://github.com/mathiasbynens/regexpu-core/issues", + "files": [ + "LICENSE-MIT.txt", + "rewrite-pattern.js", + "data/character-class-escape-sets.js", + "data/iu-mappings.json" + ], + "scripts": { + "build": "node scripts/iu-mappings.js && node scripts/character-class-escape-sets.js", + "test": "mocha tests", + "coverage": "istanbul cover --report html node_modules/.bin/_mocha tests/tests.js -- -u exports -R spec" + }, + "dependencies": { + "regenerate": "^1.2.1", + "regjsgen": "^0.2.0", + "regjsparser": "^0.1.4" + }, + "devDependencies": { + "coveralls": "^2.11.2", + "istanbul": "^0.4.0", + "jsesc": "^0.5.0", + "lodash": "^3.6.0", + "mocha": "^2.2.1", + "regexpu-fixtures": "^1.0.0", + "unicode-5.1.0": "^0.1.5", + "unicode-8.0.0": "^0.1.5" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/regjsgen/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/regjsgen/package.json index 36dbb6bb..a62b80ec 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/regjsgen/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/regjsgen/package.json @@ -1,63 +1,10 @@ { - "_args": [ - [ - "regjsgen@0.2.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regjsgen@0.2.0", - "_id": "regjsgen@0.2.0", - "_inBundle": false, - "_integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", - "_location": "/css-loader/regjsgen", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regjsgen@0.2.0", - "name": "regjsgen", - "escapedName": "regjsgen", - "rawSpec": "0.2.0", - "saveSpec": null, - "fetchSpec": "0.2.0" - }, - "_requiredBy": [ - "/css-loader/regexpu-core" - ], - "_resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "_spec": "0.2.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Benjamin Tan", - "email": "demoneaux@gmail.com", - "url": "https://d10.github.io/" - }, - "bugs": { - "url": "https://github.com/d10/regjsgen/issues" - }, - "contributors": [ - { - "name": "Benjamin Tan", - "email": "demoneaux@gmail.com", - "url": "https://d10.github.io/" - }, - { - "name": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "regjsgen", + "version": "0.2.0", "description": "Generate `RegExp`s from RegJSParser’s AST", - "devDependencies": { - "got": "~1.2.0", - "jsesc": "~0.5.0" - }, - "files": [ - "LICENSE.txt", - "regjsgen.js", - "README.md" - ], "homepage": "https://github.com/d10/regjsgen", + "license": "MIT", + "main": "regjsgen.js", "keywords": [ "ast", "generate", @@ -65,15 +12,22 @@ "regexp", "regular expressions" ], - "license": "MIT", - "main": "regjsgen.js", - "name": "regjsgen", - "repository": { - "type": "git", - "url": "git+https://github.com/d10/regjsgen.git" - }, + "author": "Benjamin Tan (https://d10.github.io/)", + "contributors": [ + "Benjamin Tan (https://d10.github.io/)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "repository": "d10/regjsgen", "scripts": { "test": "node test/test.js" }, - "version": "0.2.0" + "files": [ + "LICENSE.txt", + "regjsgen.js", + "README.md" + ], + "devDependencies": { + "got": "~1.2.0", + "jsesc": "~0.5.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/regjsparser/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/regjsparser/package.json index ee62d32e..5c5e65f8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/regjsparser/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/regjsparser/package.json @@ -1,49 +1,17 @@ { - "_args": [ - [ - "regjsparser@0.1.5", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regjsparser@0.1.5", - "_id": "regjsparser@0.1.5", - "_inBundle": false, - "_integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "_location": "/css-loader/regjsparser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regjsparser@0.1.5", - "name": "regjsparser", - "escapedName": "regjsparser", - "rawSpec": "0.1.5", - "saveSpec": null, - "fetchSpec": "0.1.5" + "name": "regjsparser", + "version": "0.1.5", + "author": "'Julian Viereck' ", + "license": "BSD", + "main": "./parser", + "bin": "bin/parser", + "homepage": "https://github.com/jviereck/regjsparser", + "repository": { + "type": "git", + "url": "git@github.com:jviereck/regjsparser.git" }, - "_requiredBy": [ - "/css-loader/regexpu-core" - ], - "_resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "_spec": "0.1.5", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "'Julian Viereck'", - "email": "julian.viereck@gmail.com" - }, - "bin": { - "regjsparser": "bin/parser" - }, - "bugs": { - "url": "https://github.com/jviereck/regjsparser/issues" - }, - "dependencies": { - "jsesc": "~0.5.0" - }, - "description": "Parsing the JavaScript's RegExp in JavaScript.", - "devDependencies": { - "regenerate": "~1.0.1", - "unicode-7.0.0": "~0.1.5" + "scripts": { + "test": "node test/index.js" }, "files": [ "bin/", @@ -51,16 +19,11 @@ "parser.js", "README.md" ], - "homepage": "https://github.com/jviereck/regjsparser", - "license": "BSD", - "main": "./parser", - "name": "regjsparser", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/jviereck/regjsparser.git" + "dependencies": { + "jsesc": "~0.5.0" }, - "scripts": { - "test": "node test/index.js" - }, - "version": "0.1.5" + "devDependencies": { + "regenerate": "~1.0.1", + "unicode-7.0.0": "~0.1.5" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/sax/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/sax/package.json index 580ade5e..d2039bf3 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/sax/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/sax/package.json @@ -1,64 +1,25 @@ { - "_args": [ - [ - "sax@1.2.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "sax@1.2.4", - "_id": "sax@1.2.4", - "_inBundle": false, - "_integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "_location": "/css-loader/sax", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "sax@1.2.4", - "name": "sax", - "escapedName": "sax", - "rawSpec": "1.2.4", - "saveSpec": null, - "fetchSpec": "1.2.4" - }, - "_requiredBy": [ - "/css-loader/svgo" - ], - "_resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "_spec": "1.2.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/" - }, - "bugs": { - "url": "https://github.com/isaacs/sax-js/issues" - }, + "name": "sax", "description": "An evented streaming XML parser in JavaScript", - "devDependencies": { - "standard": "^8.6.0", - "tap": "^10.5.1" + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "version": "1.2.4", + "main": "lib/sax.js", + "license": "ISC", + "scripts": { + "test": "tap test/*.js --cov -j4", + "posttest": "standard -F test/*.js lib/*.js", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" }, + "repository": "git://github.com/isaacs/sax-js.git", "files": [ "lib/sax.js", "LICENSE", "README.md" ], - "homepage": "https://github.com/isaacs/sax-js#readme", - "license": "ISC", - "main": "lib/sax.js", - "name": "sax", - "repository": { - "type": "git", - "url": "git://github.com/isaacs/sax-js.git" - }, - "scripts": { - "postpublish": "git push origin --all; git push origin --tags", - "posttest": "standard -F test/*.js lib/*.js", - "postversion": "npm publish", - "preversion": "npm test", - "test": "tap test/*.js --cov -j4" - }, - "version": "1.2.4" + "devDependencies": { + "standard": "^8.6.0", + "tap": "^10.5.1" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/sort-keys/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/sort-keys/package.json index 41c31197..dff06538 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/sort-keys/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/sort-keys/package.json @@ -1,55 +1,23 @@ { - "_args": [ - [ - "sort-keys@1.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "sort-keys@1.1.2", - "_id": "sort-keys@1.1.2", - "_inBundle": false, - "_integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "_location": "/css-loader/sort-keys", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "sort-keys@1.1.2", - "name": "sort-keys", - "escapedName": "sort-keys", - "rawSpec": "1.1.2", - "saveSpec": null, - "fetchSpec": "1.1.2" - }, - "_requiredBy": [ - "/css-loader/normalize-url" - ], - "_resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "_spec": "1.1.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "sort-keys", + "version": "1.1.2", + "description": "Sort the keys of an object", + "license": "MIT", + "repository": "sindresorhus/sort-keys", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/sort-keys/issues" - }, - "dependencies": { - "is-plain-obj": "^1.0.0" - }, - "description": "Sort the keys of an object", - "devDependencies": { - "mocha": "*", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/sort-keys#readme", "keywords": [ "sort", "object", @@ -62,14 +30,11 @@ "recursive", "recursively" ], - "license": "MIT", - "name": "sort-keys", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/sort-keys.git" + "dependencies": { + "is-plain-obj": "^1.0.0" }, - "scripts": { - "test": "xo && mocha" - }, - "version": "1.1.2" + "devDependencies": { + "mocha": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/source-list-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/source-list-map/package.json index b577c7cf..8046e8e0 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/source-list-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/source-list-map/package.json @@ -1,59 +1,29 @@ { - "_args": [ - [ - "source-list-map@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "source-list-map@2.0.0", - "_id": "source-list-map@2.0.0", - "_inBundle": false, - "_integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==", - "_location": "/css-loader/source-list-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "source-list-map@2.0.0", - "name": "source-list-map", - "escapedName": "source-list-map", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/css-loader" - ], - "_resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Tobias Koppers @sokra" - }, - "bugs": { - "url": "https://github.com/webpack/source-list-map/issues" - }, - "description": "Fast line to line SourceMap generator.", - "devDependencies": { - "mocha": "^2.2.1", - "should": "^5.2.0" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/webpack/source-list-map", - "keywords": [ - "source-map" - ], - "license": "MIT", - "main": "lib/index.js", "name": "source-list-map", - "repository": { - "type": "git", - "url": "git+https://github.com/webpack/source-list-map.git" - }, + "version": "2.0.0", + "description": "Fast line to line SourceMap generator.", + "author": "Tobias Koppers @sokra", + "main": "lib/index.js", "scripts": { "test": "mocha -R spec" }, - "version": "2.0.0" + "repository": { + "type": "git", + "url": "https://github.com/webpack/source-list-map.git" + }, + "keywords": [ + "source-map" + ], + "files": [ + "lib" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/webpack/source-list-map/issues" + }, + "homepage": "https://github.com/webpack/source-list-map", + "devDependencies": { + "mocha": "^2.2.1", + "should": "^5.2.0" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/source-map/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/source-map/package.json index e97f22e8..048e3ae8 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/source-map/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/source-map/package.json @@ -1,194 +1,52 @@ { - "_args": [ - [ - "source-map@0.5.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "source-map@0.5.7", - "_id": "source-map@0.5.7", - "_inBundle": false, - "_integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "_location": "/css-loader/source-map", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "source-map@0.5.7", - "name": "source-map", - "escapedName": "source-map", - "rawSpec": "0.5.7", - "saveSpec": null, - "fetchSpec": "0.5.7" - }, - "_requiredBy": [ - "/css-loader/csso", - "/css-loader/postcss" - ], - "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "_spec": "0.5.7", - "_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" - } - ], + "name": "source-map", "description": "Generates and consumes source maps", - "devDependencies": { - "doctoc": "^0.15.0", - "webpack": "^1.12.0" - }, - "engines": { - "node": ">=0.10.0" + "version": "0.5.7", + "homepage": "https://github.com/mozilla/source-map", + "author": "Nick Fitzgerald ", + "contributors": [ + "Tobias Koppers ", + "Duncan Beevers ", + "Stephen Crane ", + "Ryan Seddon ", + "Miles Elam ", + "Mihai Bazon ", + "Michael Ficarra ", + "Todd Wolfson ", + "Alexander Solovyov ", + "Felix Gnass ", + "Conrad Irwin ", + "usrbincc ", + "David Glasser ", + "Chase Douglas ", + "Evan Wallace ", + "Heather Arthur ", + "Hugh Kennedy ", + "David Glasser ", + "Simon Lydell ", + "Jmeas Smith ", + "Michael Z Goddard ", + "azu ", + "John Gozde ", + "Adam Kirkton ", + "Chris Montgomery ", + "J. Ryan Stinnett ", + "Jack Herrington ", + "Chris Truter ", + "Daniel Espeset ", + "Jamie Wong ", + "Eddy Bruël ", + "Hawken Rives ", + "Gilad Peleg ", + "djchie ", + "Gary Ye ", + "Nicolas Lalevée " + ], + "repository": { + "type": "git", + "url": "http://github.com/mozilla/source-map.git" }, + "main": "./source-map.js", "files": [ "source-map.js", "lib/", @@ -197,19 +55,18 @@ "dist/source-map.min.js", "dist/source-map.min.js.map" ], - "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" + "engines": { + "node": ">=0.10.0" }, + "license": "BSD-3-Clause", "scripts": { - "build": "webpack --color", "test": "npm run build && node test/run-tests.js", + "build": "webpack --color", "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" }, - "typings": "source-map", - "version": "0.5.7" + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "typings": "source-map" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/sprintf-js/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/sprintf-js/package.json index ec58329d..75f7eca7 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/sprintf-js/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/sprintf-js/package.json @@ -1,57 +1,22 @@ { - "_args": [ - [ - "sprintf-js@1.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "sprintf-js@1.0.3", - "_id": "sprintf-js@1.0.3", - "_inBundle": false, - "_integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "_location": "/css-loader/sprintf-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "sprintf-js@1.0.3", "name": "sprintf-js", - "escapedName": "sprintf-js", - "rawSpec": "1.0.3", - "saveSpec": null, - "fetchSpec": "1.0.3" - }, - "_requiredBy": [ - "/css-loader/argparse" - ], - "_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "_spec": "1.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Alexandru Marasteanu", - "email": "hello@alexei.ro", - "url": "http://alexei.ro/" - }, - "bugs": { - "url": "https://github.com/alexei/sprintf.js/issues" - }, - "description": "JavaScript sprintf implementation", - "devDependencies": { - "grunt": "*", - "grunt-contrib-uglify": "*", - "grunt-contrib-watch": "*", - "mocha": "*" - }, - "homepage": "https://github.com/alexei/sprintf.js#readme", - "license": "BSD-3-Clause", - "main": "src/sprintf.js", - "name": "sprintf-js", - "repository": { - "type": "git", - "url": "git+https://github.com/alexei/sprintf.js.git" - }, - "scripts": { - "test": "mocha test/test.js" - }, - "version": "1.0.3" + "version": "1.0.3", + "description": "JavaScript sprintf implementation", + "author": "Alexandru Marasteanu (http://alexei.ro/)", + "main": "src/sprintf.js", + "scripts": { + "test": "mocha test/test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/alexei/sprintf.js.git" + }, + "license": "BSD-3-Clause", + "readmeFilename": "README.md", + "devDependencies": { + "mocha": "*", + "grunt": "*", + "grunt-contrib-watch": "*", + "grunt-contrib-uglify": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/strict-uri-encode/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/strict-uri-encode/package.json index 90975187..0028e1b3 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/strict-uri-encode/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/strict-uri-encode/package.json @@ -1,65 +1,30 @@ { - "_args": [ - [ - "strict-uri-encode@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "strict-uri-encode@1.1.0", - "_id": "strict-uri-encode@1.1.0", - "_inBundle": false, - "_integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", - "_location": "/css-loader/strict-uri-encode", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strict-uri-encode@1.1.0", - "name": "strict-uri-encode", - "escapedName": "strict-uri-encode", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/css-loader/query-string" - ], - "_resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "strict-uri-encode", + "version": "1.1.0", + "description": "A stricter URI encode adhering to RFC 3986", + "license": "MIT", + "repository": "kevva/strict-uri-encode", "author": { "name": "Kevin Mårtensson", "email": "kevinmartensson@gmail.com", "url": "github.com/kevva" }, - "bugs": { - "url": "https://github.com/kevva/strict-uri-encode/issues" - }, - "description": "A stricter URI encode adhering to RFC 3986", - "devDependencies": { - "ava": "^0.0.4" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "node test.js" + }, "files": [ "index.js" ], - "homepage": "https://github.com/kevva/strict-uri-encode#readme", "keywords": [ "component", "encode", "RFC3986", "uri" ], - "license": "MIT", - "name": "strict-uri-encode", - "repository": { - "type": "git", - "url": "git+https://github.com/kevva/strict-uri-encode.git" - }, - "scripts": { - "test": "node test.js" - }, - "version": "1.1.0" + "devDependencies": { + "ava": "^0.0.4" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/strip-ansi/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/strip-ansi/package.json index 028e2438..301685ba 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/strip-ansi/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/strip-ansi/package.json @@ -1,55 +1,28 @@ { - "_args": [ - [ - "strip-ansi@3.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "strip-ansi@3.0.1", - "_id": "strip-ansi@3.0.1", - "_inBundle": false, - "_integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "_location": "/css-loader/strip-ansi", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "strip-ansi@3.0.1", - "name": "strip-ansi", - "escapedName": "strip-ansi", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/css-loader/chalk" - ], - "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "strip-ansi", + "version": "3.0.1", + "description": "Strip ANSI escape codes", + "license": "MIT", + "repository": "chalk/strip-ansi", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/strip-ansi/issues" - }, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "description": "Strip ANSI escape codes", - "devDependencies": { - "ava": "*", - "xo": "*" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Boy Nicolai Appelman (jbna.nl)", + "JD Ballard (github.com/qix-)" + ], "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/strip-ansi#readme", "keywords": [ "strip", "trim", @@ -74,31 +47,11 @@ "command-line", "text" ], - "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": "JD Ballard", - "email": "i.am.qix@gmail.com", - "url": "github.com/qix-" - } - ], - "name": "strip-ansi", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/strip-ansi.git" + "dependencies": { + "ansi-regex": "^2.0.0" }, - "scripts": { - "test": "xo && ava" - }, - "version": "3.0.1" + "devDependencies": { + "ava": "*", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/supports-color/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/supports-color/package.json index 3e98c5db..3bb77ac1 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/supports-color/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/supports-color/package.json @@ -1,52 +1,27 @@ { - "_args": [ - [ - "supports-color@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "supports-color@2.0.0", - "_id": "supports-color@2.0.0", - "_inBundle": false, - "_integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "_location": "/css-loader/supports-color", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "supports-color@2.0.0", - "name": "supports-color", - "escapedName": "supports-color", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/css-loader/chalk" - ], - "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "supports-color", + "version": "2.0.0", + "description": "Detect whether a terminal supports color", + "license": "MIT", + "repository": "chalk/supports-color", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/chalk/supports-color/issues" - }, - "description": "Detect whether a terminal supports color", - "devDependencies": { - "mocha": "*", - "require-uncached": "^1.0.2" - }, + "maintainers": [ + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" + ], "engines": { "node": ">=0.8.0" }, + "scripts": { + "test": "mocha" + }, "files": [ "index.js" ], - "homepage": "https://github.com/chalk/supports-color#readme", "keywords": [ "color", "colour", @@ -67,26 +42,8 @@ "capability", "detect" ], - "license": "MIT", - "maintainers": [ - { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - { - "name": "Joshua Appelman", - "email": "jappelman@xebia.com", - "url": "jbnicolai.com" - } - ], - "name": "supports-color", - "repository": { - "type": "git", - "url": "git+https://github.com/chalk/supports-color.git" - }, - "scripts": { - "test": "mocha" - }, - "version": "2.0.0" + "devDependencies": { + "mocha": "*", + "require-uncached": "^1.0.2" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/svgo/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/svgo/package.json index 8664c054..be1eee49 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/svgo/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/svgo/package.json @@ -1,44 +1,23 @@ { - "_args": [ - [ - "svgo@0.7.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "svgo", + "version": "0.7.2", + "description": "Nodejs-based tool for optimizing SVG vector graphics files", + "keywords": [ + "svgo", + "svg", + "optimize", + "minify" ], - "_from": "svgo@0.7.2", - "_id": "svgo@0.7.2", - "_inBundle": false, - "_integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", - "_location": "/css-loader/svgo", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "svgo@0.7.2", - "name": "svgo", - "escapedName": "svgo", - "rawSpec": "0.7.2", - "saveSpec": null, - "fetchSpec": "0.7.2" + "homepage": "https://github.com/svg/svgo", + "bugs": { + "url": "https://github.com/svg/svgo/issues", + "email": "kir@soulshine.in" }, - "_requiredBy": [ - "/css-loader/postcss-svgo" - ], - "_resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", - "_spec": "0.7.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Kir Belevich", "email": "kir@soulshine.in", "url": "https://github.com/deepsweet" }, - "bin": { - "svgo": "./bin/svgo" - }, - "bugs": { - "url": "https://github.com/svg/svgo/issues", - "email": "kir@soulshine.in" - }, "contributors": [ { "name": "Sergey Belov", @@ -51,48 +30,41 @@ "url": "http://github.com/GreLI" } ], - "dependencies": { - "coa": "~1.0.1", - "colors": "~1.1.2", - "csso": "~2.3.1", - "js-yaml": "~3.7.0", - "mkdirp": "~0.5.1", - "sax": "~1.2.1", - "whet.extend": "~0.9.9" + "repository": { + "type": "git", + "url": "git://github.com/svg/svgo.git" }, - "description": "Nodejs-based tool for optimizing SVG vector graphics files", - "devDependencies": { - "coveralls": "~2.11.14", - "istanbul": "~0.4.5", - "mocha": "~3.2.0", - "mocha-istanbul": "~0.3.0", - "should": "11.2.0" + "main": "./lib/svgo.js", + "bin": { + "svgo": "./bin/svgo" }, "directories": { "bin": "./bin", "lib": "./lib", "example": "./examples" }, + "scripts": { + "test": "set NODE_ENV=test && mocha", + "jshint": "jshint --show-non-errors ." + }, + "dependencies": { + "sax": "~1.2.1", + "coa": "~1.0.1", + "js-yaml": "~3.7.0", + "colors": "~1.1.2", + "whet.extend": "~0.9.9", + "mkdirp": "~0.5.1", + "csso": "~2.3.1" + }, + "devDependencies": { + "mocha": "~3.2.0", + "should": "11.2.0", + "istanbul": "~0.4.5", + "mocha-istanbul": "~0.3.0", + "coveralls": "~2.11.14" + }, "engines": { "node": ">=0.10.0" }, - "homepage": "https://github.com/svg/svgo", - "keywords": [ - "svgo", - "svg", - "optimize", - "minify" - ], - "license": "MIT", - "main": "./lib/svgo.js", - "name": "svgo", - "repository": { - "type": "git", - "url": "git://github.com/svg/svgo.git" - }, - "scripts": { - "jshint": "jshint --show-non-errors .", - "test": "set NODE_ENV=test && mocha" - }, - "version": "0.7.2" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/uniq/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/uniq/package.json index 08fa763d..9c91dda0 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/uniq/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/uniq/package.json @@ -1,48 +1,22 @@ { - "_args": [ - [ - "uniq@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "uniq@1.0.1", - "_id": "uniq@1.0.1", - "_inBundle": false, - "_integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", - "_location": "/css-loader/uniq", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "uniq@1.0.1", - "name": "uniq", - "escapedName": "uniq", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/css-loader/postcss-selector-parser" - ], - "_resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Mikola Lysenko" - }, - "bugs": { - "url": "https://github.com/mikolalysenko/uniq/issues" - }, - "dependencies": {}, + "name": "uniq", + "version": "1.0.1", "description": "Removes duplicates from a sorted array in place", - "devDependencies": { - "tape": "^2.12.3" - }, + "main": "uniq.js", "directories": { "test": "test" }, - "gitHead": "e9828cfcb97e25a351f95b39fdf3c31876ff3985", - "homepage": "https://github.com/mikolalysenko/uniq#readme", + "dependencies": {}, + "devDependencies": { + "tape": "^2.12.3" + }, + "scripts": { + "test": "tape test/*.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikolalysenko/uniq.git" + }, "keywords": [ "array", "duplicate", @@ -55,15 +29,8 @@ "no", "copy" ], + "author": "Mikola Lysenko", "license": "MIT", - "main": "uniq.js", - "name": "uniq", - "repository": { - "type": "git", - "url": "git://github.com/mikolalysenko/uniq.git" - }, - "scripts": { - "test": "tape test/*.js" - }, - "version": "1.0.1" + "readmeFilename": "README.md", + "gitHead": "e9828cfcb97e25a351f95b39fdf3c31876ff3985" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/uniqid/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/uniqid/package.json index 32a83e7a..52bd8e64 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/uniqid/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/uniqid/package.json @@ -1,48 +1,7 @@ { - "_args": [ - [ - "uniqid@4.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "uniqid@4.1.1", - "_id": "uniqid@4.1.1", - "_inBundle": false, - "_integrity": "sha1-iSIN32t1GuUrX3JISGNShZa7hME=", - "_location": "/css-loader/uniqid", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "uniqid@4.1.1", - "name": "uniqid", - "escapedName": "uniqid", - "rawSpec": "4.1.1", - "saveSpec": null, - "fetchSpec": "4.1.1" - }, - "_requiredBy": [ - "/css-loader/postcss-filter-plugins" - ], - "_resolved": "https://registry.npmjs.org/uniqid/-/uniqid-4.1.1.tgz", - "_spec": "4.1.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Halász Ádám", - "email": "mail@adamhalasz.com", - "url": "http://adamhalasz.com/" - }, - "bugs": { - "url": "http://github.com/adamhalasz/uniqid/issues", - "email": "mail@adamhalasz.com" - }, - "dependencies": { - "macaddress": "^0.2.8" - }, + "name": "uniqid", + "version": "4.1.1", "description": "Unique ID Generator", - "files": [ - "index.js" - ], "homepage": "http://github.com/adamhalasz/diet-uniqid/", "keywords": [ "unique id", @@ -50,12 +9,25 @@ "unique identifier", "hexatridecimal" ], - "license": "MIT", - "main": "index.js", - "name": "uniqid", + "bugs": { + "url": "http://github.com/adamhalasz/uniqid/issues", + "email": "mail@adamhalasz.com" + }, "repository": { "type": "git", - "url": "git+https://github.com/adamhalasz/uniqid.git" + "url": "https://github.com/adamhalasz/uniqid.git" }, - "version": "4.1.1" + "files": [ + "index.js" + ], + "license": "MIT", + "author": { + "name": "Halász Ádám", + "email": "mail@adamhalasz.com", + "url": "http://adamhalasz.com/" + }, + "main": "index.js", + "dependencies": { + "macaddress": "^0.2.8" + } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/uniqs/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/uniqs/package.json index f0ba8776..1f8b3867 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/uniqs/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/uniqs/package.json @@ -1,59 +1,21 @@ { - "_args": [ - [ - "uniqs@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "uniqs@2.0.0", - "_id": "uniqs@2.0.0", - "_inBundle": false, - "_integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", - "_location": "/css-loader/uniqs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "uniqs@2.0.0", - "name": "uniqs", - "escapedName": "uniqs", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/css-loader/postcss-discard-unused", - "/css-loader/postcss-minify-params", - "/css-loader/postcss-unique-selectors", - "/css-loader/postcss-zindex" - ], - "_resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Felix Gnass", - "email": "fgnass@gmail.com" - }, - "bugs": { - "url": "https://github.com/fgnass/uniqs/issues" - }, + "name": "uniqs", + "version": "2.0.0", "description": "Tiny utility to create unions and de-duplicated lists", - "homepage": "https://github.com/fgnass/uniqs#readme", "keywords": [ "unique", "uniq", "dedupe", "union" ], - "license": "MIT", - "main": "index.js", - "name": "uniqs", "repository": { "type": "git", "url": "git://github.com/fgnass/uniqs.git" }, + "main": "index.js", "scripts": { "test": "node test" }, - "version": "2.0.0" + "author": "Felix Gnass ", + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/vendors/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/vendors/package.json index e9f9c3e3..a31e314e 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/vendors/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/vendors/package.json @@ -1,49 +1,32 @@ { - "_args": [ - [ - "vendors@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "vendors@1.0.1", - "_id": "vendors@1.0.1", - "_inBundle": false, - "_integrity": "sha1-N61zyO5Bf7PVgOeFMSMH0nSEfyI=", - "_location": "/css-loader/vendors", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "vendors@1.0.1", - "name": "vendors", - "escapedName": "vendors", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/css-loader/postcss-merge-rules" - ], - "_resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Titus Wormer", - "email": "tituswormer@gmail.com", - "url": "http://wooorm.com" - }, - "bugs": { - "url": "https://github.com/wooorm/vendors/issues" - }, - "contributors": [ - { - "name": "Titus Wormer", - "email": "tituswormer@gmail.com", - "url": "http://wooorm.com" - } + "name": "vendors", + "version": "1.0.1", + "description": "List of vendor prefixes known to the web platform", + "license": "MIT", + "keywords": [ + "css", + "html", + "dom", + "web", + "platform", + "vendor", + "prefix", + "prefixes" ], "dependencies": {}, - "description": "List of vendor prefixes known to the web platform", + "repository": "https://github.com/wooorm/vendors", + "bugs": "https://github.com/wooorm/vendors/issues", + "author": "Titus Wormer (http://wooorm.com)", + "contributors": [ + "Titus Wormer (http://wooorm.com)" + ], + "engines": { + "node": ">=0.11.0" + }, + "main": "index.json", + "files": [ + "index.json" + ], "devDependencies": { "browserify": "^13.0.0", "esmangle": "^1.0.0", @@ -55,26 +38,23 @@ "tape": "^4.4.0", "xo": "^0.16.0" }, - "engines": { - "node": ">=0.11.0" + "scripts": { + "build-md": "remark . --quiet --frail", + "build-bundle": "browserify index.json -s vendors > vendors.js", + "build-mangle": "esmangle vendors.js > vendors.min.js", + "build": "npm run build-md && npm run build-bundle && npm run build-mangle", + "lint": "xo", + "test-api": "node test", + "test": "npm run build && npm run lint && npm run test-api" + }, + "xo": { + "space": true, + "rules": {}, + "ignores": [ + "vendors.js", + "vendors.min.js" + ] }, - "files": [ - "index.json" - ], - "homepage": "https://github.com/wooorm/vendors#readme", - "keywords": [ - "css", - "html", - "dom", - "web", - "platform", - "vendor", - "prefix", - "prefixes" - ], - "license": "MIT", - "main": "index.json", - "name": "vendors", "remarkConfig": { "output": true, "plugins": { @@ -88,27 +68,5 @@ "settings": { "bullet": "*" } - }, - "repository": { - "type": "git", - "url": "git+https://github.com/wooorm/vendors.git" - }, - "scripts": { - "build": "npm run build-md && npm run build-bundle && npm run build-mangle", - "build-bundle": "browserify index.json -s vendors > vendors.js", - "build-mangle": "esmangle vendors.js > vendors.min.js", - "build-md": "remark . --quiet --frail", - "lint": "xo", - "test": "npm run build && npm run lint && npm run test-api", - "test-api": "node test" - }, - "version": "1.0.1", - "xo": { - "space": true, - "rules": {}, - "ignores": [ - "vendors.js", - "vendors.min.js" - ] } } diff --git a/goTorrentWebUI/node_modules/css-loader/node_modules/whet.extend/package.json b/goTorrentWebUI/node_modules/css-loader/node_modules/whet.extend/package.json index 674cdb72..1ffe7bdf 100644 --- a/goTorrentWebUI/node_modules/css-loader/node_modules/whet.extend/package.json +++ b/goTorrentWebUI/node_modules/css-loader/node_modules/whet.extend/package.json @@ -1,50 +1,7 @@ { - "_args": [ - [ - "whet.extend@0.9.9", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "whet.extend@0.9.9", - "_id": "whet.extend@0.9.9", - "_inBundle": false, - "_integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=", - "_location": "/css-loader/whet.extend", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "whet.extend@0.9.9", - "name": "whet.extend", - "escapedName": "whet.extend", - "rawSpec": "0.9.9", - "saveSpec": null, - "fetchSpec": "0.9.9" - }, - "_requiredBy": [ - "/css-loader/svgo" - ], - "_resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", - "_spec": "0.9.9", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Dmitrii Karpich", - "email": "meettya@gmail.com" - }, - "bugs": { - "url": "https://github.com/Meettya/whet.extend/issues" - }, + "name": "whet.extend", + "version": "0.9.9", "description": "A sharped version of port of jQuery.extend that actually works on node.js", - "devDependencies": { - "chai": "~1.4.2", - "coffee-script": ">=1.3.3", - "mocha": "~1.8.1", - "should": "0.5.1" - }, - "engines": { - "node": ">=0.6.0" - }, - "homepage": "https://github.com/Meettya/whet.extend#readme", "keywords": [ "extend", "jQuery", @@ -53,15 +10,23 @@ "copy", "inherit" ], - "license": "MIT", - "main": "index.js", - "name": "whet.extend", - "repository": { - "type": "git", - "url": "git+https://github.com/Meettya/whet.extend.git" + "author": "Dmitrii Karpich ", + "devDependencies": { + "should": "0.5.1", + "coffee-script": ">=1.3.3", + "chai": "~1.4.2", + "mocha": "~1.8.1" }, "scripts": { "test": "cake test" }, - "version": "0.9.9" + "repository": { + "type": "git", + "url": "https://github.com/Meettya/whet.extend.git" + }, + "main": "index.js", + "engines": { + "node": ">=0.6.0" + }, + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/ajv/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/ajv/package.json index 9923e8e9..aadd462d 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/ajv/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/ajv/package.json @@ -1,45 +1,73 @@ { - "_args": [ - [ - "ajv@5.3.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" + "name": "ajv", + "version": "5.3.0", + "description": "Another JSON Schema Validator", + "main": "lib/ajv.js", + "typings": "lib/ajv.d.ts", + "files": [ + "lib/", + "dist/", + "scripts/", + "LICENSE", + ".tonic_example.js" + ], + "scripts": { + "eslint": "if-node-version \">=4\" eslint lib/*.js lib/compile/*.js spec scripts", + "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*", + "test-spec": "mocha spec/*.spec.js -R spec $(if-node-version 7 echo --harmony-async-await)", + "test-fast": "AJV_FAST_TEST=true npm run test-spec", + "test-debug": "mocha spec/*.spec.js --debug-brk -R spec", + "test-cov": "nyc npm run test-spec", + "test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts", + "bundle": "node ./scripts/bundle.js . Ajv pure_getters", + "bundle-regenerator": "node ./scripts/bundle.js regenerator", + "bundle-nodent": "node ./scripts/bundle.js nodent", + "bundle-all": "del-cli dist && npm run bundle && npm run bundle-regenerator && npm run bundle-nodent", + "bundle-beautify": "node ./scripts/bundle.js js-beautify", + "build": "del-cli lib/dotjs/*.js && node scripts/compile-dots.js", + "test-karma": "karma start --single-run --browsers PhantomJS", + "test-browser": "del-cli .browser && npm run bundle-all && scripts/prepare-tests && npm run test-karma", + "test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 4 npm run test-browser", + "prepublish": "npm run build && npm run bundle-all", + "watch": "watch 'npm run build' ./lib/dot" + }, + "nyc": { + "exclude": [ + "**/spec/**", + "node_modules" + ], + "reporter": [ + "lcov", + "text-summary" ] - ], - "_from": "ajv@5.3.0", - "_id": "ajv@5.3.0", - "_inBundle": false, - "_integrity": "sha1-RBT/dKUIecII7l/cgm4ywwNUnto=", - "_location": "/file-loader/ajv", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ajv@5.3.0", - "name": "ajv", - "escapedName": "ajv", - "rawSpec": "5.3.0", - "saveSpec": null, - "fetchSpec": "5.3.0" }, - "_requiredBy": [ - "/file-loader/schema-utils" - ], - "_resolved": "https://registry.npmjs.org/ajv/-/ajv-5.3.0.tgz", - "_spec": "5.3.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Evgeny Poberezkin" + "repository": { + "type": "git", + "url": "https://github.com/epoberezkin/ajv.git" }, + "keywords": [ + "JSON", + "schema", + "validator", + "validation", + "jsonschema", + "json-schema", + "json-schema-validator", + "json-schema-validation" + ], + "author": "Evgeny Poberezkin", + "license": "MIT", "bugs": { "url": "https://github.com/epoberezkin/ajv/issues" }, + "homepage": "https://github.com/epoberezkin/ajv", + "tonicExampleFilename": ".tonic_example.js", "dependencies": { "co": "^4.6.0", "fast-deep-equal": "^1.0.0", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.3.0" }, - "description": "Another JSON Schema Validator", "devDependencies": { "ajv-async": "^0.1.0", "bluebird": "^3.1.5", @@ -71,63 +99,5 @@ "typescript": "^2.0.3", "uglify-js": "^3.1.5", "watch": "^1.0.0" - }, - "files": [ - "lib/", - "dist/", - "scripts/", - "LICENSE", - ".tonic_example.js" - ], - "homepage": "https://github.com/epoberezkin/ajv", - "keywords": [ - "JSON", - "schema", - "validator", - "validation", - "jsonschema", - "json-schema", - "json-schema-validator", - "json-schema-validation" - ], - "license": "MIT", - "main": "lib/ajv.js", - "name": "ajv", - "nyc": { - "exclude": [ - "**/spec/**", - "node_modules" - ], - "reporter": [ - "lcov", - "text-summary" - ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/epoberezkin/ajv.git" - }, - "scripts": { - "build": "del-cli lib/dotjs/*.js && node scripts/compile-dots.js", - "bundle": "node ./scripts/bundle.js . Ajv pure_getters", - "bundle-all": "del-cli dist && npm run bundle && npm run bundle-regenerator && npm run bundle-nodent", - "bundle-beautify": "node ./scripts/bundle.js js-beautify", - "bundle-nodent": "node ./scripts/bundle.js nodent", - "bundle-regenerator": "node ./scripts/bundle.js regenerator", - "eslint": "if-node-version \">=4\" eslint lib/*.js lib/compile/*.js spec scripts", - "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*", - "prepublish": "npm run build && npm run bundle-all", - "test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 4 npm run test-browser", - "test-browser": "del-cli .browser && npm run bundle-all && scripts/prepare-tests && npm run test-karma", - "test-cov": "nyc npm run test-spec", - "test-debug": "mocha spec/*.spec.js --debug-brk -R spec", - "test-fast": "AJV_FAST_TEST=true npm run test-spec", - "test-karma": "karma start --single-run --browsers PhantomJS", - "test-spec": "mocha spec/*.spec.js -R spec $(if-node-version 7 echo --harmony-async-await)", - "test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts", - "watch": "watch 'npm run build' ./lib/dot" - }, - "tonicExampleFilename": ".tonic_example.js", - "typings": "lib/ajv.d.ts", - "version": "5.3.0" + } } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/big.js/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/big.js/package.json index 02559d43..d6bdc8f0 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/big.js/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/big.js/package.json @@ -1,48 +1,7 @@ { - "_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": "/file-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": [ - "/file-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" - }, + "name": "big.js", "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic", - "engines": { - "node": "*" - }, - "files": [ - "big.js", - "big.min.js" - ], - "homepage": "https://github.com/MikeMcl/big.js#readme", + "version": "3.2.0", "keywords": [ "arbitrary", "precision", @@ -57,16 +16,28 @@ "bigint", "bignum" ], - "license": "MIT", - "main": "big.js", - "name": "big.js", - "repository": { + "repository" : { "type": "git", - "url": "git+https://github.com/MikeMcl/big.js.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": { - "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" + "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 */\"" }, - "version": "3.2.0" + "files": [ + "big.js", + "big.min.js" + ] } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/co/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/co/package.json index 4ced4d8f..083d5940 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/co/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/co/package.json @@ -1,50 +1,7 @@ { - "_args": [ - [ - "co@4.6.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "co@4.6.0", - "_id": "co@4.6.0", - "_inBundle": false, - "_integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "_location": "/file-loader/co", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "co@4.6.0", - "name": "co", - "escapedName": "co", - "rawSpec": "4.6.0", - "saveSpec": null, - "fetchSpec": "4.6.0" - }, - "_requiredBy": [ - "/file-loader/ajv" - ], - "_resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "_spec": "4.6.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/tj/co/issues" - }, + "name": "co", + "version": "4.6.0", "description": "generator async control flow goodness", - "devDependencies": { - "browserify": "^10.0.0", - "istanbul-harmony": "0", - "mocha": "^2.0.0", - "mz": "^1.0.2" - }, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - }, - "files": [ - "index.js" - ], - "homepage": "https://github.com/tj/co#readme", "keywords": [ "async", "flow", @@ -52,18 +9,26 @@ "coro", "coroutine" ], - "license": "MIT", - "name": "co", - "repository": { - "type": "git", - "url": "git+https://github.com/tj/co.git" + "devDependencies": { + "browserify": "^10.0.0", + "istanbul-harmony": "0", + "mocha": "^2.0.0", + "mz": "^1.0.2" }, "scripts": { - "browserify": "browserify index.js -o ./co-browser.js -s co", - "prepublish": "npm run browserify", "test": "mocha --harmony", "test-cov": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot", - "test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot" + "test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot", + "prepublish": "npm run browserify", + "browserify": "browserify index.js -o ./co-browser.js -s co" }, - "version": "4.6.0" + "files": [ + "index.js" + ], + "license": "MIT", + "repository": "tj/co", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/emojis-list/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/emojis-list/package.json index 9a1e8160..328a1dbe 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/emojis-list/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/emojis-list/package.json @@ -1,41 +1,28 @@ { - "_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": "/file-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" - }, - "_requiredBy": [ - "/file-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", + "name": "emojis-list", + "description": "Complete list of standard emojis.", + "homepage": "https://github.com/Kikobeats/emojis-list", + "version": "2.1.0", + "main": "./index.js", "author": { - "name": "Kiko Beats", "email": "josefrancisco.verdu@gmail.com", + "name": "Kiko Beats", "url": "https://github.com/Kikobeats" }, + "repository": { + "type": "git", + "url": "git+https://github.com/kikobeats/emojis-list.git" + }, "bugs": { "url": "https://github.com/Kikobeats/emojis-list/issues" }, - "description": "Complete list of standard emojis.", + "keywords": [ + "archive", + "complete", + "emoji", + "list", + "standard" + ], "devDependencies": { "acho": "latest", "browserify": "latest", @@ -55,25 +42,10 @@ "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" }, - "version": "2.1.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/fast-deep-equal/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/fast-deep-equal/package.json index c0d389d5..889a59e2 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/fast-deep-equal/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/fast-deep-equal/package.json @@ -1,39 +1,29 @@ { - "_args": [ - [ - "fast-deep-equal@1.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "fast-deep-equal@1.0.0", - "_id": "fast-deep-equal@1.0.0", - "_inBundle": false, - "_integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=", - "_location": "/file-loader/fast-deep-equal", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fast-deep-equal@1.0.0", - "name": "fast-deep-equal", - "escapedName": "fast-deep-equal", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" + "name": "fast-deep-equal", + "version": "1.0.0", + "description": "Fast deep equal", + "main": "index.js", + "scripts": { + "eslint": "eslint *.js benchmark spec", + "test-spec": "mocha spec/*.spec.js -R spec", + "test-cov": "nyc npm run test-spec", + "test": "npm run eslint && npm run test-cov" }, - "_requiredBy": [ - "/file-loader/ajv" - ], - "_resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Evgeny Poberezkin" + "repository": { + "type": "git", + "url": "git+https://github.com/epoberezkin/fast-deep-equal.git" }, + "keywords": [ + "fast", + "equal", + "deep-equal" + ], + "author": "Evgeny Poberezkin", + "license": "MIT", "bugs": { "url": "https://github.com/epoberezkin/fast-deep-equal/issues" }, - "description": "Fast deep equal", + "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme", "devDependencies": { "benchmark": "^2.1.4", "coveralls": "^2.13.1", @@ -48,15 +38,6 @@ "shallow-equal-fuzzy": "0.0.2", "underscore": "^1.8.3" }, - "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme", - "keywords": [ - "fast", - "equal", - "deep-equal" - ], - "license": "MIT", - "main": "index.js", - "name": "fast-deep-equal", "nyc": { "exclude": [ "**/spec/**", @@ -66,16 +47,5 @@ "lcov", "text-summary" ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/epoberezkin/fast-deep-equal.git" - }, - "scripts": { - "eslint": "eslint *.js benchmark spec", - "test": "npm run eslint && npm run test-cov", - "test-cov": "nyc npm run test-spec", - "test-spec": "mocha spec/*.spec.js -R spec" - }, - "version": "1.0.0" + } } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/fast-json-stable-stringify/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/fast-json-stable-stringify/package.json index 8966590a..21380a99 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/fast-json-stable-stringify/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/fast-json-stable-stringify/package.json @@ -1,41 +1,8 @@ { - "_args": [ - [ - "fast-json-stable-stringify@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "fast-json-stable-stringify@2.0.0", - "_id": "fast-json-stable-stringify@2.0.0", - "_inBundle": false, - "_integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", - "_location": "/file-loader/fast-json-stable-stringify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fast-json-stable-stringify@2.0.0", - "name": "fast-json-stable-stringify", - "escapedName": "fast-json-stable-stringify", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" - }, - "_requiredBy": [ - "/file-loader/ajv" - ], - "_resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "_spec": "2.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/epoberezkin/fast-json-stable-stringify/issues" - }, + "name": "fast-json-stable-stringify", + "version": "2.0.0", "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "main": "index.js", "devDependencies": { "benchmark": "^2.1.4", "coveralls": "^3.0.0", @@ -47,6 +14,15 @@ "pre-commit": "^1.2.2", "tape": "~1.0.4" }, + "scripts": { + "eslint": "eslint index.js test", + "test-spec": "tape test/*.js", + "test": "npm run eslint && nyc npm run test-spec" + }, + "repository": { + "type": "git", + "url": "git://github.com/epoberezkin/fast-json-stable-stringify.git" + }, "homepage": "https://github.com/epoberezkin/fast-json-stable-stringify", "keywords": [ "json", @@ -55,9 +31,12 @@ "hash", "stable" ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, "license": "MIT", - "main": "index.js", - "name": "fast-json-stable-stringify", "nyc": { "exclude": [ "test", @@ -67,15 +46,5 @@ "lcov", "text-summary" ] - }, - "repository": { - "type": "git", - "url": "git://github.com/epoberezkin/fast-json-stable-stringify.git" - }, - "scripts": { - "eslint": "eslint index.js test", - "test": "npm run eslint && nyc npm run test-spec", - "test-spec": "tape test/*.js" - }, - "version": "2.0.0" + } } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/json-schema-traverse/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/json-schema-traverse/package.json index ffc53d14..843a4ce3 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/json-schema-traverse/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/json-schema-traverse/package.json @@ -1,39 +1,28 @@ { - "_args": [ - [ - "json-schema-traverse@0.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "json-schema-traverse@0.3.1", - "_id": "json-schema-traverse@0.3.1", - "_inBundle": false, - "_integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "_location": "/file-loader/json-schema-traverse", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "json-schema-traverse@0.3.1", - "name": "json-schema-traverse", - "escapedName": "json-schema-traverse", - "rawSpec": "0.3.1", - "saveSpec": null, - "fetchSpec": "0.3.1" + "name": "json-schema-traverse", + "version": "0.3.1", + "description": "Traverse JSON Schema passing each schema object to callback", + "main": "index.js", + "scripts": { + "eslint": "eslint index.js spec", + "test-spec": "mocha spec -R spec", + "test": "npm run eslint && nyc npm run test-spec" }, - "_requiredBy": [ - "/file-loader/ajv" - ], - "_resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "_spec": "0.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Evgeny Poberezkin" + "repository": { + "type": "git", + "url": "git+https://github.com/epoberezkin/json-schema-traverse.git" }, + "keywords": [ + "JSON-Schema", + "traverse", + "iterate" + ], + "author": "Evgeny Poberezkin", + "license": "MIT", "bugs": { "url": "https://github.com/epoberezkin/json-schema-traverse/issues" }, - "description": "Traverse JSON Schema passing each schema object to callback", + "homepage": "https://github.com/epoberezkin/json-schema-traverse#readme", "devDependencies": { "coveralls": "^2.13.1", "eslint": "^3.19.0", @@ -41,15 +30,6 @@ "nyc": "^11.0.2", "pre-commit": "^1.2.2" }, - "homepage": "https://github.com/epoberezkin/json-schema-traverse#readme", - "keywords": [ - "JSON-Schema", - "traverse", - "iterate" - ], - "license": "MIT", - "main": "index.js", - "name": "json-schema-traverse", "nyc": { "exclude": [ "**/spec/**", @@ -59,15 +39,5 @@ "lcov", "text-summary" ] - }, - "repository": { - "type": "git", - "url": "git+https://github.com/epoberezkin/json-schema-traverse.git" - }, - "scripts": { - "eslint": "eslint index.js spec", - "test": "npm run eslint && nyc npm run test-spec", - "test-spec": "mocha spec -R spec" - }, - "version": "0.3.1" + } } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/json5/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/json5/package.json index b61f611a..44059b49 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/json5/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/json5/package.json @@ -1,83 +1,38 @@ { - "_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": "/file-loader/json5", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "json5@0.5.1", "name": "json5", - "escapedName": "json5", - "rawSpec": "0.5.1", - "saveSpec": null, - "fetchSpec": "0.5.1" - }, - "_requiredBy": [ - "/file-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" + "version": "0.5.1", + "description": "JSON for the ES5 era.", + "keywords": [ + "json", + "es5" + ], + "author": "Aseem Kishore ", + "contributors": [ + "Max Nanasy ", + "Andrew Eisenberg ", + "Jordan Tucker " + ], + "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" }, - { - "name": "Andrew Eisenberg", - "email": "andrew@eisenberg.as" + "scripts": { + "build": "node ./lib/cli.js -c package.json5", + "test": "mocha --ui exports --reporter spec" }, - { - "name": "Jordan Tucker", - "email": "jordanbtucker@gmail.com" + "homepage": "http://json5.org/", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/aseemk/json5.git" } - ], - "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" -} +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/loader-utils/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/loader-utils/package.json index 35bf45a2..a547e234 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/loader-utils/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/loader-utils/package.json @@ -1,44 +1,29 @@ { - "_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": "/file-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": [ - "/file-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" - }, + "name": "loader-utils", + "version": "1.1.0", + "author": "Tobias Koppers @sokra", + "description": "utils for webpack loaders", "dependencies": { "big.js": "^3.1.3", "emojis-list": "^2.0.0", "json5": "^0.5.0" }, - "description": "utils for webpack loaders", + "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" + }, "devDependencies": { "coveralls": "^2.11.2", "eslint": "^3.15.0", @@ -47,27 +32,8 @@ "mocha": "^1.21.4", "standard-version": "^4.0.0" }, - "engines": { - "node": ">=4.0.0" - }, + "main": "lib/index.js", "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" + ] } diff --git a/goTorrentWebUI/node_modules/file-loader/node_modules/schema-utils/package.json b/goTorrentWebUI/node_modules/file-loader/node_modules/schema-utils/package.json index 20aadbde..6b4c4e52 100644 --- a/goTorrentWebUI/node_modules/file-loader/node_modules/schema-utils/package.json +++ b/goTorrentWebUI/node_modules/file-loader/node_modules/schema-utils/package.json @@ -1,57 +1,35 @@ { - "_args": [ - [ - "schema-utils@0.3.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "schema-utils", + "version": "0.3.0", + "description": "Webpack Schema Validation Utilities", + "main": "dist/cjs.js", + "files": [ + "dist" ], - "_from": "schema-utils@0.3.0", - "_id": "schema-utils@0.3.0", - "_inBundle": false, - "_integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", - "_location": "/file-loader/schema-utils", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "schema-utils@0.3.0", - "name": "schema-utils", - "escapedName": "schema-utils", - "rawSpec": "0.3.0", - "saveSpec": null, - "fetchSpec": "0.3.0" + "engines": { + "node": ">= 4.3 < 5.0.0 || >= 5.10" }, - "_requiredBy": [ - "/file-loader" - ], - "_resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "_spec": "0.3.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Webpack Contrib", - "url": "https://github.com/webpack-contrib" + "scripts": { + "start": "yarn run build -- -w", + "prebuild": "yarn run clean", + "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'", + "clean": "del-cli dist", + "lint": "eslint --cache src test", + "lint-staged": "lint-staged", + "security": "nsp check", + "test": "jest", + "test:watch": "jest --watch", + "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", + "travis:coverage": "yarn run test:coverage", + "travis:lint": "yarn run lint && yarn run security", + "travis:test": "yarn run test", + "webpack-defaults": "webpack-defaults", + "prepublish": "yarn run build", + "release": "yarn run standard-version" }, - "bugs": { - "url": "https://github.com/webpack-contrib/schema-utils/issues" - }, - "contributors": [ - { - "name": "Juho Vepsäläinen", - "email": "@bebraw" - }, - { - "name": "Joshua Wiens", - "email": "@d3viant0ne" - }, - { - "name": "Michael Ciniawsky", - "email": "@michael-ciniawsky" - } - ], "dependencies": { "ajv": "^5.0.0" }, - "description": "Webpack Schema Validation Utilities", "devDependencies": { "babel-cli": "^6.24.1", "babel-jest": "^19.0.0", @@ -72,53 +50,41 @@ "standard-version": "^4.0.0", "webpack-defaults": "^0.4.5" }, - "engines": { - "node": ">= 4.3 < 5.0.0 || >= 5.10" - }, - "eslintConfig": { - "extends": "webpack", - "installedESLint": true - }, - "files": [ - "dist" - ], - "homepage": "https://github.com/webpack-contrib/schema-utils#readme", - "keywords": [ - "webpack", - "plugin", - "es2015" - ], - "license": "MIT", + "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "eslint --fix", "git add" ] }, - "main": "dist/cjs.js", - "name": "schema-utils", - "pre-commit": "lint-staged", + "eslintConfig": { + "extends": "webpack", + "installedESLint": true + }, + "keywords": [ + "webpack", + "plugin", + "es2015" + ], + "author": "Webpack Contrib (https://github.com/webpack-contrib)", + "contributors": [ + { + "name": "Juho Vepsäläinen <@bebraw>" + }, + { + "name": "Joshua Wiens <@d3viant0ne>" + }, + { + "name": "Michael Ciniawsky <@michael-ciniawsky>" + } + ], "repository": { "type": "git", "url": "git+https://github.com/webpack-contrib/schema-utils.git" }, - "scripts": { - "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'", - "clean": "del-cli dist", - "lint": "eslint --cache src test", - "lint-staged": "lint-staged", - "prebuild": "yarn run clean", - "prepublish": "yarn run build", - "release": "yarn run standard-version", - "security": "nsp check", - "start": "yarn run build -- -w", - "test": "jest", - "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", - "test:watch": "jest --watch", - "travis:coverage": "yarn run test:coverage", - "travis:lint": "yarn run lint && yarn run security", - "travis:test": "yarn run test", - "webpack-defaults": "webpack-defaults" + "bugs": { + "url": "https://github.com/webpack-contrib/schema-utils/issues" }, - "version": "0.3.0" + "homepage": "https://github.com/webpack-contrib/schema-utils#readme", + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/asap/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/asap/package.json index 2cc5c191..ae9f303b 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/asap/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/asap/package.json @@ -1,32 +1,18 @@ { - "_args": [ - [ - "asap@2.0.6", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "asap", + "version": "2.0.6", + "description": "High-priority task queue for Node.js and browsers", + "keywords": [ + "event", + "task", + "queue" ], - "_from": "asap@2.0.6", - "_id": "asap@2.0.6", - "_inBundle": false, - "_integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", - "_location": "/material-ui-icons/asap", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "asap@2.0.6", - "name": "asap", - "escapedName": "asap", - "rawSpec": "2.0.6", - "saveSpec": null, - "fetchSpec": "2.0.6" + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/kriskowal/asap.git" }, - "_requiredBy": [ - "/material-ui-icons/promise" - ], - "_resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "_spec": "2.0.6", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "main": "./asap.js", "browser": { "./asap": "./browser-asap.js", "./asap.js": "./browser-asap.js", @@ -34,12 +20,29 @@ "./raw.js": "./browser-raw.js", "./test/domain.js": "./test/browser-domain.js" }, - "bugs": { - "url": "https://github.com/kriskowal/asap/issues" + "react-native": { + "domain": false + }, + "files": [ + "raw.js", + "asap.js", + "browser-raw.js", + "browser-asap.js" + ], + "scripts": { + "test": "npm run lint && npm run test-node", + "test-travis": "npm run lint && npm run test-node && npm run test-saucelabs && npm run test-saucelabs-worker", + "test-node": "node test/asap-test.js", + "test-publish": "node scripts/publish-bundle.js test/asap-test.js | pbcopy", + "test-browser": "node scripts/publish-bundle.js test/asap-test.js | xargs opener", + "test-saucelabs": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-spot-configurations.json", + "test-saucelabs-all": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-all-configurations.json", + "test-saucelabs-worker": "node scripts/saucelabs-worker-test.js scripts/saucelabs-spot-configurations.json", + "test-saucelabs-worker-all": "node scripts/saucelabs-worker-test.js scripts/saucelabs-all-configurations.json", + "lint": "jshint raw.js asap.js browser-raw.js browser-asap.js $(find scripts -name '*.js' | grep -v gauntlet)", + "benchmarks": "node benchmarks" }, - "description": "High-priority task queue for Node.js and browsers", "devDependencies": { - "benchmark": "^1.0.0", "events": "^1.0.1", "jshint": "^2.5.1", "knox": "^0.8.10", @@ -49,42 +52,7 @@ "q-io": "^2.0.3", "saucelabs": "^0.1.1", "wd": "^0.2.21", - "weak-map": "^1.0.5" - }, - "files": [ - "raw.js", - "asap.js", - "browser-raw.js", - "browser-asap.js" - ], - "homepage": "https://github.com/kriskowal/asap#readme", - "keywords": [ - "event", - "task", - "queue" - ], - "license": "MIT", - "main": "./asap.js", - "name": "asap", - "react-native": { - "domain": false - }, - "repository": { - "type": "git", - "url": "git+https://github.com/kriskowal/asap.git" - }, - "scripts": { - "benchmarks": "node benchmarks", - "lint": "jshint raw.js asap.js browser-raw.js browser-asap.js $(find scripts -name '*.js' | grep -v gauntlet)", - "test": "npm run lint && npm run test-node", - "test-browser": "node scripts/publish-bundle.js test/asap-test.js | xargs opener", - "test-node": "node test/asap-test.js", - "test-publish": "node scripts/publish-bundle.js test/asap-test.js | pbcopy", - "test-saucelabs": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-spot-configurations.json", - "test-saucelabs-all": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-all-configurations.json", - "test-saucelabs-worker": "node scripts/saucelabs-worker-test.js scripts/saucelabs-spot-configurations.json", - "test-saucelabs-worker-all": "node scripts/saucelabs-worker-test.js scripts/saucelabs-all-configurations.json", - "test-travis": "npm run lint && npm run test-node && npm run test-saucelabs && npm run test-saucelabs-worker" - }, - "version": "2.0.6" + "weak-map": "^1.0.5", + "benchmark": "^1.0.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/change-emitter/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/change-emitter/package.json index d1df199e..f6f84a2f 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/change-emitter/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/change-emitter/package.json @@ -1,35 +1,42 @@ { - "_args": [ - [ - "change-emitter@0.1.6", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "change-emitter", + "version": "0.1.6", + "description": "Listen for changes. Like an event emitter that only emits a single event type. Really tiny.", + "main": "lib/index.js", + "files": [ + "lib" ], - "_from": "change-emitter@0.1.6", - "_id": "change-emitter@0.1.6", - "_inBundle": false, - "_integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=", - "_location": "/material-ui-icons/change-emitter", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "change-emitter@0.1.6", - "name": "change-emitter", - "escapedName": "change-emitter", - "rawSpec": "0.1.6", - "saveSpec": null, - "fetchSpec": "0.1.6" + "scripts": { + "check": "eslint src", + "build": "babel src --out-dir lib", + "test": "ava", + "test:watch": "yarn run test -- --watch", + "prepublish": "yarn run check && yarn run test && yarn run build" }, - "_requiredBy": [ - "/material-ui-icons/recompose" + "repository": { + "type": "git", + "url": "git+https://github.com/acdlite/change-emitter.git" + }, + "keywords": [ + "change", + "event", + "emitter" ], - "_resolved": "https://registry.npmjs.org/change-emitter/-/change-emitter-0.1.6.tgz", - "_spec": "0.1.6", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andrew Clark", - "email": "acdlite@me.com" + "author": "Andrew Clark ", + "license": "MIT", + "bugs": { + "url": "https://github.com/acdlite/change-emitter/issues" + }, + "homepage": "https://github.com/acdlite/change-emitter#readme", + "devDependencies": { + "ava": "^0.14.0", + "babel-cli": "^6.8.0", + "babel-core": "^6.8.0", + "babel-preset-es2015": "^6.6.0", + "eslint": "^2.10.1", + "eslint-config-airbnb-base": "^3.0.1", + "eslint-plugin-import": "^1.8.0", + "sinon": "^1.17.4" }, "ava": { "babel": "inherit", @@ -42,43 +49,5 @@ "require": [ "babel-register" ] - }, - "bugs": { - "url": "https://github.com/acdlite/change-emitter/issues" - }, - "description": "Listen for changes. Like an event emitter that only emits a single event type. Really tiny.", - "devDependencies": { - "ava": "^0.14.0", - "babel-cli": "^6.8.0", - "babel-core": "^6.8.0", - "babel-preset-es2015": "^6.6.0", - "eslint": "^2.10.1", - "eslint-config-airbnb-base": "^3.0.1", - "eslint-plugin-import": "^1.8.0", - "sinon": "^1.17.4" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/acdlite/change-emitter#readme", - "keywords": [ - "change", - "event", - "emitter" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "change-emitter", - "repository": { - "type": "git", - "url": "git+https://github.com/acdlite/change-emitter.git" - }, - "scripts": { - "build": "babel src --out-dir lib", - "check": "eslint src", - "prepublish": "yarn run check && yarn run test && yarn run build", - "test": "ava", - "test:watch": "yarn run test -- --watch" - }, - "version": "0.1.6" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/core-js/package.json index c7a0d344..65cfc650 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/core-js/package.json @@ -1,59 +1,41 @@ { - "_args": [ - [ - "core-js@1.2.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@1.2.7", - "_id": "core-js@1.2.7", - "_inBundle": false, - "_integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", - "_location": "/material-ui-icons/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@1.2.7", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "1.2.7", - "saveSpec": null, - "fetchSpec": "1.2.7" - }, - "_requiredBy": [ - "/material-ui-icons/fbjs" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "_spec": "1.2.7", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "1.2.7", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "1.12.x", "LiveScript": "1.3.x", - "eslint": "1.9.x", "grunt": "0.4.x", "grunt-cli": "0.1.x", - "grunt-contrib-clean": "0.6.x", - "grunt-contrib-copy": "0.8.x", + "grunt-livescript": "0.5.x", "grunt-contrib-uglify": "0.10.x", "grunt-contrib-watch": "0.6.x", + "grunt-contrib-clean": "0.6.x", + "grunt-contrib-copy": "0.8.x", "grunt-karma": "0.12.x", - "grunt-livescript": "0.5.x", "karma": "0.13.x", - "karma-chrome-launcher": "0.2.x", - "karma-firefox-launcher": "0.1.x", - "karma-ie-launcher": "0.2.x", - "karma-phantomjs-launcher": "0.2.x", "karma-qunit": "0.1.x", - "phantomjs": "1.9.x", + "karma-chrome-launcher": "0.2.x", + "karma-ie-launcher": "0.2.x", + "karma-firefox-launcher": "0.1.x", + "karma-phantomjs-launcher": "0.2.x", "promises-aplus-tests": "2.1.x", + "eslint": "1.9.x", "qunitjs": "1.23.x", - "webpack": "1.12.x" + "phantomjs": "1.9.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint es5 es6 es7 js web core fn modules", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "test": "npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES5", "ECMAScript 5", @@ -73,19 +55,5 @@ "setImmediate", "Dict", "partial application" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint es5 es6 es7 js web core fn modules", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs" - }, - "version": "1.2.7" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/encoding/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/encoding/package.json index 173650f4..a8f7a2c8 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/encoding/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/encoding/package.json @@ -1,56 +1,19 @@ { - "_args": [ - [ - "encoding@0.1.12", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "encoding@0.1.12", - "_id": "encoding@0.1.12", - "_inBundle": false, - "_integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "_location": "/material-ui-icons/encoding", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "encoding@0.1.12", - "name": "encoding", - "escapedName": "encoding", - "rawSpec": "0.1.12", - "saveSpec": null, - "fetchSpec": "0.1.12" - }, - "_requiredBy": [ - "/material-ui-icons/node-fetch" - ], - "_resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "_spec": "0.1.12", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andris Reinman" - }, - "bugs": { - "url": "https://github.com/andris9/encoding/issues" - }, - "dependencies": { - "iconv-lite": "~0.4.13" - }, - "description": "Convert encodings, uses iconv by default and fallbacks to iconv-lite if needed", - "devDependencies": { - "iconv": "~2.1.11", - "nodeunit": "~0.9.1" - }, - "homepage": "https://github.com/andris9/encoding#readme", - "license": "MIT", - "main": "lib/encoding.js", "name": "encoding", - "repository": { - "type": "git", - "url": "git+https://github.com/andris9/encoding.git" - }, + "version": "0.1.12", + "description": "Convert encodings, uses iconv by default and fallbacks to iconv-lite if needed", + "main": "lib/encoding.js", "scripts": { "test": "nodeunit test" }, - "version": "0.1.12" + "repository": "https://github.com/andris9/encoding.git", + "author": "Andris Reinman", + "license": "MIT", + "dependencies": { + "iconv-lite": "~0.4.13" + }, + "devDependencies": { + "iconv": "~2.1.11", + "nodeunit": "~0.9.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/fbjs/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/fbjs/package.json index d1e47432..2a5a7085 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/fbjs/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/fbjs/package.json @@ -1,50 +1,19 @@ { - "_args": [ - [ - "fbjs@0.8.16", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "fbjs@0.8.16", - "_id": "fbjs@0.8.16", - "_inBundle": false, - "_integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=", - "_location": "/material-ui-icons/fbjs", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "fbjs@0.8.16", - "name": "fbjs", - "escapedName": "fbjs", - "rawSpec": "0.8.16", - "saveSpec": null, - "fetchSpec": "0.8.16" - }, - "_requiredBy": [ - "/material-ui-icons/recompose" - ], - "_resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz", - "_spec": "0.8.16", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "browserify": { - "transform": [ - "loose-envify" - ] - }, - "bugs": { - "url": "https://github.com/facebook/fbjs/issues" - }, - "dependencies": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.9" - }, + "name": "fbjs", + "version": "0.8.16", "description": "A collection of utility libraries used by other Facebook JS projects", + "main": "index.js", + "repository": "facebook/fbjs", + "scripts": { + "build": "gulp build", + "postbuild": "node scripts/node/check-lib-requires.js lib", + "lint": "eslint .", + "prepublish": "npm run build", + "pretest": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json", + "test": "NODE_ENV=test jest", + "test-babel-presets": "cd babel-preset && npm install && npm test", + "typecheck": "flow check src" + }, "devDependencies": { "babel-eslint": "^6.0.3", "babel-preset-fbjs": "file:babel-preset", @@ -61,10 +30,7 @@ "merge-stream": "^1.0.0", "run-sequence": "^1.1.5" }, - "devEngines": { - "node": ">=4.x", - "npm": ">=2.x" - }, + "license": "MIT", "files": [ "LICENSE", "README.md", @@ -73,7 +39,6 @@ "lib/", "module-map.json" ], - "homepage": "https://github.com/facebook/fbjs#readme", "jest": { "modulePathIgnorePatterns": [ "/lib/", @@ -94,22 +59,22 @@ "/src/(?!(__forks__/fetch.js$|fetch/))" ] }, - "license": "MIT", - "main": "index.js", - "name": "fbjs", - "repository": { - "type": "git", - "url": "git+https://github.com/facebook/fbjs.git" + "dependencies": { + "core-js": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.9" }, - "scripts": { - "build": "gulp build", - "lint": "eslint .", - "postbuild": "node scripts/node/check-lib-requires.js lib", - "prepublish": "npm run build", - "pretest": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json", - "test": "NODE_ENV=test jest", - "test-babel-presets": "cd babel-preset && npm install && npm test", - "typecheck": "flow check src" + "devEngines": { + "node": ">=4.x", + "npm": ">=2.x" }, - "version": "0.8.16" + "browserify": { + "transform": [ + "loose-envify" + ] + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/hoist-non-react-statics/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/hoist-non-react-statics/package.json index 27cc5f26..cf6a7ff0 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/hoist-non-react-statics/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/hoist-non-react-statics/package.json @@ -1,40 +1,20 @@ { - "_args": [ - [ - "hoist-non-react-statics@2.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "hoist-non-react-statics@2.3.1", - "_id": "hoist-non-react-statics@2.3.1", - "_inBundle": false, - "_integrity": "sha1-ND24TGAYxlB3iJgkATWhQg7iLOA=", - "_location": "/material-ui-icons/hoist-non-react-statics", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "hoist-non-react-statics@2.3.1", - "name": "hoist-non-react-statics", - "escapedName": "hoist-non-react-statics", - "rawSpec": "2.3.1", - "saveSpec": null, - "fetchSpec": "2.3.1" - }, - "_requiredBy": [ - "/material-ui-icons/recompose" - ], - "_resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.3.1.tgz", - "_spec": "2.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Michael Ridgway", - "email": "mcridgway@gmail.com" - }, - "bugs": { - "url": "https://github.com/mridgway/hoist-non-react-statics/issues" - }, + "name": "hoist-non-react-statics", + "version": "2.3.1", "description": "Copies non-react specific statics from a child component to a parent component", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + }, + "scripts": { + "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", + "lint": "eslint ./index.js", + "test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec" + }, + "author": "Michael Ridgway ", + "license": "BSD-3-Clause", "devDependencies": { "babel": "^6.23.0", "babel-cli": "^6.24.1", @@ -53,22 +33,7 @@ "pre-commit": "^1.0.7", "react": "^15.0.0" }, - "homepage": "https://github.com/mridgway/hoist-non-react-statics#readme", "keywords": [ "react" - ], - "license": "BSD-3-Clause", - "main": "index.js", - "name": "hoist-non-react-statics", - "repository": { - "type": "git", - "url": "git://github.com/mridgway/hoist-non-react-statics.git" - }, - "scripts": { - "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", - "lint": "eslint ./index.js", - "test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec" - }, - "types": "index.d.ts", - "version": "2.3.1" + ] } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/iconv-lite/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/iconv-lite/package.json index 5701bebc..459dca34 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/iconv-lite/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/iconv-lite/package.json @@ -1,126 +1,57 @@ { - "_args": [ - [ - "iconv-lite@0.4.19", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "iconv-lite@0.4.19", - "_id": "iconv-lite@0.4.19", - "_inBundle": false, - "_integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", - "_location": "/material-ui-icons/iconv-lite", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "iconv-lite@0.4.19", "name": "iconv-lite", - "escapedName": "iconv-lite", - "rawSpec": "0.4.19", - "saveSpec": null, - "fetchSpec": "0.4.19" - }, - "_requiredBy": [ - "/material-ui-icons/encoding" - ], - "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "_spec": "0.4.19", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Alexander Shtuchkin", - "email": "ashtuchkin@gmail.com" - }, - "browser": { - "./extend-node": false, - "./streams": false - }, - "bugs": { - "url": "https://github.com/ashtuchkin/iconv-lite/issues" - }, - "contributors": [ - { - "name": "Jinwu Zhan", - "url": "https://github.com/jenkinv" + "description": "Convert character encodings in pure javascript.", + "version": "0.4.19", + "license": "MIT", + "keywords": [ + "iconv", + "convert", + "charset", + "icu" + ], + "author": "Alexander Shtuchkin ", + "contributors": [ + "Jinwu Zhan (https://github.com/jenkinv)", + "Adamansky Anton (https://github.com/adamansky)", + "George Stagas (https://github.com/stagas)", + "Mike D Pilsbury (https://github.com/pekim)", + "Niggler (https://github.com/Niggler)", + "wychi (https://github.com/wychi)", + "David Kuo (https://github.com/david50407)", + "ChangZhuo Chen (https://github.com/czchen)", + "Lee Treveil (https://github.com/leetreveil)", + "Brian White (https://github.com/mscdex)", + "Mithgol (https://github.com/Mithgol)", + "Nazar Leush (https://github.com/nleush)" + ], + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", + "homepage": "https://github.com/ashtuchkin/iconv-lite", + "bugs": "https://github.com/ashtuchkin/iconv-lite/issues", + "repository": { + "type": "git", + "url": "git://github.com/ashtuchkin/iconv-lite.git" }, - { - "name": "Adamansky Anton", - "url": "https://github.com/adamansky" + "engines": { + "node": ">=0.10.0" }, - { - "name": "George Stagas", - "url": "https://github.com/stagas" + "scripts": { + "coverage": "istanbul cover _mocha -- --grep .", + "coverage-open": "open coverage/lcov-report/index.html", + "test": "mocha --reporter spec --grep ." }, - { - "name": "Mike D Pilsbury", - "url": "https://github.com/pekim" + "browser": { + "./extend-node": false, + "./streams": false }, - { - "name": "Niggler", - "url": "https://github.com/Niggler" - }, - { - "name": "wychi", - "url": "https://github.com/wychi" - }, - { - "name": "David Kuo", - "url": "https://github.com/david50407" - }, - { - "name": "ChangZhuo Chen", - "url": "https://github.com/czchen" - }, - { - "name": "Lee Treveil", - "url": "https://github.com/leetreveil" - }, - { - "name": "Brian White", - "url": "https://github.com/mscdex" - }, - { - "name": "Mithgol", - "url": "https://github.com/Mithgol" - }, - { - "name": "Nazar Leush", - "url": "https://github.com/nleush" + "devDependencies": { + "mocha": "*", + "request": "*", + "unorm": "*", + "errto": "*", + "async": "*", + "istanbul": "*", + "semver": "*", + "iconv": "*" } - ], - "description": "Convert character encodings in pure javascript.", - "devDependencies": { - "async": "*", - "errto": "*", - "iconv": "*", - "istanbul": "*", - "mocha": "*", - "request": "*", - "semver": "*", - "unorm": "*" - }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/ashtuchkin/iconv-lite", - "keywords": [ - "iconv", - "convert", - "charset", - "icu" - ], - "license": "MIT", - "main": "./lib/index.js", - "name": "iconv-lite", - "repository": { - "type": "git", - "url": "git://github.com/ashtuchkin/iconv-lite.git" - }, - "scripts": { - "coverage": "istanbul cover _mocha -- --grep .", - "coverage-open": "open coverage/lcov-report/index.html", - "test": "mocha --reporter spec --grep ." - }, - "typings": "./lib/index.d.ts", - "version": "0.4.19" } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/is-stream/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/is-stream/package.json index 0dc92a4d..0308918d 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/is-stream/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/is-stream/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "is-stream@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "is-stream@1.1.0", - "_id": "is-stream@1.1.0", - "_inBundle": false, - "_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "_location": "/material-ui-icons/is-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-stream@1.1.0", - "name": "is-stream", - "escapedName": "is-stream", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/material-ui-icons/node-fetch" - ], - "_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "is-stream", + "version": "1.1.0", + "description": "Check if something is a Node.js stream", + "license": "MIT", + "repository": "sindresorhus/is-stream", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-stream/issues" - }, - "description": "Check if something is a Node.js stream", - "devDependencies": { - "ava": "*", - "tempfile": "^1.1.0", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/is-stream#readme", "keywords": [ "stream", "type", @@ -60,14 +30,9 @@ "detect", "is" ], - "license": "MIT", - "name": "is-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-stream.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.1.0" + "devDependencies": { + "ava": "*", + "tempfile": "^1.1.0", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/isomorphic-fetch/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/isomorphic-fetch/package.json index d0c0c029..85196b12 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/isomorphic-fetch/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/isomorphic-fetch/package.json @@ -1,45 +1,27 @@ { - "_args": [ - [ - "isomorphic-fetch@2.2.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "isomorphic-fetch@2.2.1", - "_id": "isomorphic-fetch@2.2.1", - "_inBundle": false, - "_integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "_location": "/material-ui-icons/isomorphic-fetch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "isomorphic-fetch@2.2.1", - "name": "isomorphic-fetch", - "escapedName": "isomorphic-fetch", - "rawSpec": "2.2.1", - "saveSpec": null, - "fetchSpec": "2.2.1" - }, - "_requiredBy": [ - "/material-ui-icons/fbjs" - ], - "_resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "_spec": "2.2.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Matt Andrews", - "email": "matt@mattandre.ws" - }, + "name": "isomorphic-fetch", + "version": "2.2.1", + "description": "Isomorphic WHATWG Fetch API, for Node & Browserify", "browser": "fetch-npm-browserify.js", + "main": "fetch-npm-node.js", + "scripts": { + "files": "find . -name '*.js' ! -path './node_modules/*' ! -path './bower_components/*'", + "test": "jshint `npm run -s files` && lintspaces -i js-comments -e .editorconfig `npm run -s files` && mocha" + }, + "repository": { + "type": "git", + "url": "https://github.com/matthew-andrews/isomorphic-fetch.git" + }, + "author": "Matt Andrews ", + "license": "MIT", "bugs": { "url": "https://github.com/matthew-andrews/isomorphic-fetch/issues" }, + "homepage": "https://github.com/matthew-andrews/isomorphic-fetch/issues", "dependencies": { "node-fetch": "^1.0.1", "whatwg-fetch": ">=0.10.0" }, - "description": "Isomorphic WHATWG Fetch API, for Node & Browserify", "devDependencies": { "chai": "^1.10.0", "es6-promise": "^2.0.1", @@ -48,18 +30,5 @@ "mocha": "^2.1.0", "nock": "^0.56.0", "npm-prepublish": "^1.0.2" - }, - "homepage": "https://github.com/matthew-andrews/isomorphic-fetch/issues", - "license": "MIT", - "main": "fetch-npm-node.js", - "name": "isomorphic-fetch", - "repository": { - "type": "git", - "url": "git+https://github.com/matthew-andrews/isomorphic-fetch.git" - }, - "scripts": { - "files": "find . -name '*.js' ! -path './node_modules/*' ! -path './bower_components/*'", - "test": "jshint `npm run -s files` && lintspaces -i js-comments -e .editorconfig `npm run -s files` && mocha" - }, - "version": "2.2.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/js-tokens/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/js-tokens/package.json index f64bd391..7f5bd780 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/js-tokens/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/js-tokens/package.json @@ -1,49 +1,9 @@ { - "_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": "/material-ui-icons/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": [ - "/material-ui-icons/loose-envify" - ], - "_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" - }, + "name": "js-tokens", + "version": "3.0.2", + "author": "Simon Lydell", + "license": "MIT", "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", @@ -51,17 +11,20 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "3.0.2" + "devDependencies": { + "coffee-script": "~1.12.6", + "esprima": "^4.0.0", + "everything.js": "^1.0.3", + "mocha": "^3.4.2" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/loose-envify/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/loose-envify/package.json index 42eef9b9..7952efa5 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/loose-envify/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/loose-envify/package.json @@ -1,52 +1,7 @@ { - "_args": [ - [ - "loose-envify@1.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "loose-envify@1.3.1", - "_id": "loose-envify@1.3.1", - "_inBundle": false, - "_integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", - "_location": "/material-ui-icons/loose-envify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "loose-envify@1.3.1", - "name": "loose-envify", - "escapedName": "loose-envify", - "rawSpec": "1.3.1", - "saveSpec": null, - "fetchSpec": "1.3.1" - }, - "_requiredBy": [ - "/material-ui-icons/fbjs" - ], - "_resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "_spec": "1.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andres Suarez", - "email": "zertosh@gmail.com" - }, - "bin": { - "loose-envify": "cli.js" - }, - "bugs": { - "url": "https://github.com/zertosh/loose-envify/issues" - }, - "dependencies": { - "js-tokens": "^3.0.0" - }, + "name": "loose-envify", + "version": "1.3.1", "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "devDependencies": { - "browserify": "^13.1.1", - "envify": "^3.4.0", - "tap": "^8.0.0" - }, - "homepage": "https://github.com/zertosh/loose-envify", "keywords": [ "environment", "variables", @@ -56,9 +11,13 @@ "source", "configuration" ], + "homepage": "https://github.com/zertosh/loose-envify", "license": "MIT", + "author": "Andres Suarez ", "main": "index.js", - "name": "loose-envify", + "bin": { + "loose-envify": "cli.js" + }, "repository": { "type": "git", "url": "git://github.com/zertosh/loose-envify.git" @@ -66,5 +25,12 @@ "scripts": { "test": "tap test/*.js" }, - "version": "1.3.1" + "dependencies": { + "js-tokens": "^3.0.0" + }, + "devDependencies": { + "browserify": "^13.1.1", + "envify": "^3.4.0", + "tap": "^8.0.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/node-fetch/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/node-fetch/package.json index b5fba2a6..6bf8e40e 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/node-fetch/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/node-fetch/package.json @@ -1,43 +1,28 @@ { - "_args": [ - [ - "node-fetch@1.7.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "node-fetch@1.7.3", - "_id": "node-fetch@1.7.3", - "_inBundle": false, - "_integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "_location": "/material-ui-icons/node-fetch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "node-fetch@1.7.3", - "name": "node-fetch", - "escapedName": "node-fetch", - "rawSpec": "1.7.3", - "saveSpec": null, - "fetchSpec": "1.7.3" + "name": "node-fetch", + "version": "1.7.3", + "description": "A light-weight module that brings window.fetch to node.js and io.js", + "main": "index.js", + "scripts": { + "test": "mocha test/test.js", + "report": "istanbul cover _mocha -- -R spec test/test.js", + "coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && codecov" }, - "_requiredBy": [ - "/material-ui-icons/isomorphic-fetch" - ], - "_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "_spec": "1.7.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "David Frank" + "repository": { + "type": "git", + "url": "https://github.com/bitinn/node-fetch.git" }, + "keywords": [ + "fetch", + "http", + "promise" + ], + "author": "David Frank", + "license": "MIT", "bugs": { "url": "https://github.com/bitinn/node-fetch/issues" }, - "dependencies": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" - }, - "description": "A light-weight module that brings window.fetch to node.js and io.js", + "homepage": "https://github.com/bitinn/node-fetch", "devDependencies": { "bluebird": "^3.3.4", "chai": "^3.5.0", @@ -50,23 +35,8 @@ "promise": "^7.1.1", "resumer": "0.0.0" }, - "homepage": "https://github.com/bitinn/node-fetch", - "keywords": [ - "fetch", - "http", - "promise" - ], - "license": "MIT", - "main": "index.js", - "name": "node-fetch", - "repository": { - "type": "git", - "url": "git+https://github.com/bitinn/node-fetch.git" - }, - "scripts": { - "coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && codecov", - "report": "istanbul cover _mocha -- -R spec test/test.js", - "test": "mocha test/test.js" - }, - "version": "1.7.3" + "dependencies": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/object-assign/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/object-assign/package.json index 26b83525..503eb1e6 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/object-assign/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/object-assign/package.json @@ -1,54 +1,24 @@ { - "_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": "/material-ui-icons/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": [ - "/material-ui-icons/fbjs" - ], - "_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", + "name": "object-assign", + "version": "4.1.1", + "description": "ES2015 `Object.assign()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/object-assign", "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", @@ -63,15 +33,10 @@ "shim", "browser" ], - "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" + "devDependencies": { + "ava": "^0.16.0", + "lodash": "^4.16.4", + "matcha": "^0.7.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/promise/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/promise/package.json index 986b9053..6f605ea9 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/promise/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/promise/package.json @@ -1,42 +1,26 @@ { - "_args": [ - [ - "promise@7.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "promise@7.3.1", - "_id": "promise@7.3.1", - "_inBundle": false, - "_integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "_location": "/material-ui-icons/promise", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "promise@7.3.1", - "name": "promise", - "escapedName": "promise", - "rawSpec": "7.3.1", - "saveSpec": null, - "fetchSpec": "7.3.1" - }, - "_requiredBy": [ - "/material-ui-icons/fbjs" - ], - "_resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "_spec": "7.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "ForbesLindesay" - }, - "bugs": { - "url": "https://github.com/then/promise/issues" - }, - "dependencies": { - "asap": "~2.0.3" - }, + "name": "promise", + "version": "7.3.1", "description": "Bare bones Promises/A+ implementation", + "main": "index.js", + "scripts": { + "prepublish": "node build", + "pretest": "node build", + "pretest-resolve": "node build", + "pretest-extensions": "node build", + "pretest-memory-leak": "node build", + "test": "mocha --bail --timeout 200 --slow 99999 -R dot && npm run test-memory-leak", + "test-resolve": "mocha test/resolver-tests.js --timeout 200 --slow 999999", + "test-extensions": "mocha test/extensions-tests.js --timeout 200 --slow 999999", + "test-memory-leak": "node --expose-gc test/memory-leak.js", + "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --bail --timeout 200 --slow 99999 -R dot" + }, + "repository": { + "type": "git", + "url": "https://github.com/then/promise.git" + }, + "author": "ForbesLindesay", + "license": "MIT", "devDependencies": { "acorn": "^1.0.1", "better-assert": "*", @@ -45,25 +29,7 @@ "promises-aplus-tests": "*", "rimraf": "^2.3.2" }, - "homepage": "https://github.com/then/promise#readme", - "license": "MIT", - "main": "index.js", - "name": "promise", - "repository": { - "type": "git", - "url": "git+https://github.com/then/promise.git" - }, - "scripts": { - "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --bail --timeout 200 --slow 99999 -R dot", - "prepublish": "node build", - "pretest": "node build", - "pretest-extensions": "node build", - "pretest-memory-leak": "node build", - "pretest-resolve": "node build", - "test": "mocha --bail --timeout 200 --slow 99999 -R dot && npm run test-memory-leak", - "test-extensions": "mocha test/extensions-tests.js --timeout 200 --slow 999999", - "test-memory-leak": "node --expose-gc test/memory-leak.js", - "test-resolve": "mocha test/resolver-tests.js --timeout 200 --slow 999999" - }, - "version": "7.3.1" -} + "dependencies": { + "asap": "~2.0.3" + } +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/recompose/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/recompose/package.json index 86eaf20e..d8e4972f 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/recompose/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/recompose/package.json @@ -1,47 +1,17 @@ { - "_args": [ - [ - "recompose@0.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "recompose@0.26.0", - "_id": "recompose@0.26.0", - "_inBundle": false, - "_integrity": "sha512-KwOu6ztO0mN5vy3+zDcc45lgnaUoaQse/a5yLVqtzTK13czSWnFGmXbQVmnoMgDkI5POd1EwIKSbjU1V7xdZog==", - "_location": "/material-ui-icons/recompose", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "recompose@0.26.0", - "name": "recompose", - "escapedName": "recompose", - "rawSpec": "0.26.0", - "saveSpec": null, - "fetchSpec": "0.26.0" - }, - "_requiredBy": [ - "/material-ui-icons" - ], - "_resolved": "https://registry.npmjs.org/recompose/-/recompose-0.26.0.tgz", - "_spec": "0.26.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andrew Clark", - "email": "acdlite@me.com" + "name": "recompose", + "version": "0.26.0", + "author": "Andrew Clark ", + "repository": { + "type": "git", + "url": "https://github.com/acdlite/recompose.git" }, + "license": "MIT", "bugs": { "url": "https://github.com/acdlite/recompose/issues" }, - "dependencies": { - "change-emitter": "^0.1.2", - "fbjs": "^0.8.1", - "hoist-non-react-statics": "^2.3.1", - "symbol-observable": "^1.0.4" - }, - "description": "A React utility belt for function components and higher-order components", "homepage": "https://github.com/acdlite/recompose", + "description": "A React utility belt for function components and higher-order components", "keywords": [ "react", "higher-order", @@ -51,16 +21,15 @@ "utilities", "composition" ], - "license": "MIT", "main": "cjs/Recompose.js", "module": "es/Recompose.js", - "name": "recompose", + "dependencies": { + "change-emitter": "^0.1.2", + "fbjs": "^0.8.1", + "hoist-non-react-statics": "^2.3.1", + "symbol-observable": "^1.0.4" + }, "peerDependencies": { "react": "^0.14.0 || ^15.0.0 || ^16.0.0" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/acdlite/recompose.git" - }, - "version": "0.26.0" -} + } +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/setimmediate/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/setimmediate/package.json index 2fe5bb2f..9b211e43 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/setimmediate/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/setimmediate/package.json @@ -1,77 +1,30 @@ { - "_args": [ - [ - "setimmediate@1.0.5", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "setimmediate@1.0.5", - "_id": "setimmediate@1.0.5", - "_inBundle": false, - "_integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "_location": "/material-ui-icons/setimmediate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "setimmediate@1.0.5", "name": "setimmediate", - "escapedName": "setimmediate", - "rawSpec": "1.0.5", - "saveSpec": null, - "fetchSpec": "1.0.5" - }, - "_requiredBy": [ - "/material-ui-icons/fbjs" - ], - "_resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "_spec": "1.0.5", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "YuzuJS" - }, - "bugs": { - "url": "https://github.com/YuzuJS/setImmediate/issues" - }, - "contributors": [ - { - "name": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me" + "description": "A shim for the setImmediate efficient script yielding API", + "version": "1.0.5", + "author": "YuzuJS", + "contributors": [ + "Domenic Denicola (https://domenic.me)", + "Donavon West (http://donavon.com)", + "Yaffle" + ], + "license": "MIT", + "repository": "YuzuJS/setImmediate", + "main": "setImmediate.js", + "files": [ + "setImmediate.js" + ], + "scripts": { + "lint": "jshint setImmediate.js", + "test": "mocha test/tests.js", + "test-browser": "opener http://localhost:9008/__zuul && zuul test/tests.js --ui mocha-bdd --local 9008", + "test-browser-only": "opener http://localhost:9007/test/browserOnly/index.html && http-server . -p 9007" }, - { - "name": "Donavon West", - "email": "github@donavon.com", - "url": "http://donavon.com" - }, - { - "name": "Yaffle" + "devDependencies": { + "jshint": "^2.5.0", + "mocha": "~1.18.2", + "http-server": "~0.6.1", + "opener": "^1.3", + "zuul": "^1.6.4" } - ], - "description": "A shim for the setImmediate efficient script yielding API", - "devDependencies": { - "http-server": "~0.6.1", - "jshint": "^2.5.0", - "mocha": "~1.18.2", - "opener": "^1.3", - "zuul": "^1.6.4" - }, - "files": [ - "setImmediate.js" - ], - "homepage": "https://github.com/YuzuJS/setImmediate#readme", - "license": "MIT", - "main": "setImmediate.js", - "name": "setimmediate", - "repository": { - "type": "git", - "url": "git+https://github.com/YuzuJS/setImmediate.git" - }, - "scripts": { - "lint": "jshint setImmediate.js", - "test": "mocha test/tests.js", - "test-browser": "opener http://localhost:9008/__zuul && zuul test/tests.js --ui mocha-bdd --local 9008", - "test-browser-only": "opener http://localhost:9007/test/browserOnly/index.html && http-server . -p 9007" - }, - "version": "1.0.5" } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/symbol-observable/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/symbol-observable/package.json index 642b0da5..b938f69a 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/symbol-observable/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/symbol-observable/package.json @@ -1,52 +1,21 @@ { - "_args": [ - [ - "symbol-observable@1.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "symbol-observable@1.0.4", - "_id": "symbol-observable@1.0.4", - "_inBundle": false, - "_integrity": "sha1-Kb9hXUqnEhvdiYsi1LP5vE4qoD0=", - "_location": "/material-ui-icons/symbol-observable", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "symbol-observable@1.0.4", - "name": "symbol-observable", - "escapedName": "symbol-observable", - "rawSpec": "1.0.4", - "saveSpec": null, - "fetchSpec": "1.0.4" - }, - "_requiredBy": [ - "/material-ui-icons/recompose" - ], - "_resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz", - "_spec": "1.0.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "symbol-observable", + "version": "1.0.4", + "description": "Symbol.observable ponyfill", + "license": "MIT", + "repository": "blesh/symbol-observable", "author": { "name": "Ben Lesh", "email": "ben@benlesh.com" }, - "bugs": { - "url": "https://github.com/blesh/symbol-observable/issues" - }, - "description": "Symbol.observable ponyfill", - "devDependencies": { - "babel-cli": "^6.9.0", - "babel-preset-es2015": "^6.9.0", - "babel-preset-es3": "^1.0.0", - "chai": "^3.5.0", - "check-es3-syntax-cli": "^0.1.0", - "mocha": "^2.4.5", - "typescript": "^1.8.10" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "npm run build && mocha && tsc ./ts-test/test.ts && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill", + "build": "babel es --out-dir lib", + "prepublish": "npm test" + }, "files": [ "index.js", "ponyfill.js", @@ -56,8 +25,8 @@ "lib/index.js", "lib/ponyfill.js" ], - "homepage": "https://github.com/blesh/symbol-observable#readme", "jsnext:main": "es/index.js", + "typings": "index.d.ts", "keywords": [ "symbol", "observable", @@ -66,17 +35,13 @@ "polyfill", "shim" ], - "license": "MIT", - "name": "symbol-observable", - "repository": { - "type": "git", - "url": "git+https://github.com/blesh/symbol-observable.git" - }, - "scripts": { - "build": "babel es --out-dir lib", - "prepublish": "npm test", - "test": "npm run build && mocha && tsc ./ts-test/test.ts && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill" - }, - "typings": "index.d.ts", - "version": "1.0.4" + "devDependencies": { + "babel-cli": "^6.9.0", + "babel-preset-es2015": "^6.9.0", + "babel-preset-es3": "^1.0.0", + "chai": "^3.5.0", + "check-es3-syntax-cli": "^0.1.0", + "mocha": "^2.4.5", + "typescript": "^1.8.10" + } } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/ua-parser-js/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/ua-parser-js/package.json index 9504d87c..7b873104 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/ua-parser-js/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/ua-parser-js/package.json @@ -1,297 +1,9 @@ { - "_args": [ - [ - "ua-parser-js@0.7.17", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "ua-parser-js@0.7.17", - "_id": "ua-parser-js@0.7.17", - "_inBundle": false, - "_integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==", - "_location": "/material-ui-icons/ua-parser-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ua-parser-js@0.7.17", - "name": "ua-parser-js", - "escapedName": "ua-parser-js", - "rawSpec": "0.7.17", - "saveSpec": null, - "fetchSpec": "0.7.17" - }, - "_requiredBy": [ - "/material-ui-icons/fbjs" - ], - "_resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", - "_spec": "0.7.17", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Faisal Salman", - "email": "f@faisalman.com", - "url": "http://faisalman.com" - }, - "bugs": { - "url": "https://github.com/faisalman/ua-parser-js/issues" - }, - "contributors": [ - { - "name": "Aamir Poonawalla", - "email": "aamir@urx.com" - }, - { - "name": "Admas", - "email": "mollases@users.noreply.github.com" - }, - { - "name": "algenon", - "email": "m@antonz.ru" - }, - { - "name": "Andrea Vaghi", - "email": "andrea.vaghi@jobrapido.com" - }, - { - "name": "Anton Zhiyanov", - "email": "m@antonz.ru" - }, - { - "name": "Austin Pray", - "email": "austin@austinpray.com" - }, - { - "name": "Benjamin Bertrand", - "email": "bertrand.design@gmail.com" - }, - { - "name": "boneyao", - "email": "admin@boneyao.com" - }, - { - "name": "Carl C Von Lewin", - "email": "carlchristianlewin@gmail.com" - }, - { - "name": "CESAR RAMOS", - "email": "c@imagenproactiva.com" - }, - { - "name": "Christopher De Cairos", - "email": "chris.decairos@gmail.com" - }, - { - "name": "Davit Barbakadze", - "email": "jayarjo@gmail.com" - }, - { - "name": "ddivernois", - "email": "david-emmanuel.divernois@amadeus.com" - }, - { - "name": "Demis Palma", - "email": "demis.palma@gmail.com" - }, - { - "name": "Dmitry Tyschenko", - "email": "dtyschenko@gmail.com" - }, - { - "name": "Douglas Li", - "email": "doug@knotch.it" - }, - { - "name": "Dumitru Uzun", - "email": "contact@duzun.me" - }, - { - "name": "Erik Hesselink", - "email": "hesselink@gmail.com" - }, - { - "name": "Fabian Becker", - "email": "halfdan@xnorfz.de" - }, - { - "name": "Faisal Salman", - "email": "fyzlman@gmail.com" - }, - { - "name": "Frédéric Camblor", - "email": "fcamblor@gmail.com" - }, - { - "name": "Grigory Dmitrenko", - "email": "grigory@snsk.ru" - }, - { - "name": "Hendrik Helwich", - "email": "h.helwich@iplabs.de" - }, - { - "name": "jackpoll", - "email": "jackpoll123456@gmail.com" - }, - { - "name": "Jake Mc", - "email": "startswithaj@users.noreply.github.com" - }, - { - "name": "John Tantalo", - "email": "john.tantalo@gmail.com" - }, - { - "name": "John Yanarella", - "email": "jmy@codecatalyst.com" - }, - { - "name": "Jon Buckley", - "email": "jon@jbuckley.ca" - }, - { - "name": "Kendall Buchanan", - "email": "kendall@kendagriff.com" - }, - { - "name": "Lee Treveil", - "email": "leetreveil@gmail.com" - }, - { - "name": "leonardo", - "email": "leofiore@libero.it" - }, - { - "name": "Levente Balogh", - "email": "noreply@github.com" - }, - { - "name": "Liam Quinn", - "email": "lquinn@blackberry.com" - }, - { - "name": "Lithin", - "email": "lithin@webklipper.com" - }, - { - "name": "Lukas Eipert", - "email": "leipert@users.noreply.github.com" - }, - { - "name": "Malash", - "email": "i@malash.me" - }, - { - "name": "Martynas", - "email": "noreply@github.com" - }, - { - "name": "Maximilian Haupt", - "email": "mail@maximilianhaupt.com" - }, - { - "name": "Max Maurer", - "email": "maxemanuel.maurer@gmail.com" - }, - { - "name": "Michael Hess", - "email": "mhess@connectify.me" - }, - { - "name": "naoh", - "email": "noreply@github.com" - }, - { - "name": "Nik Rolls", - "email": "nik@rolls.cc" - }, - { - "name": "niris", - "email": "nirisix@gmail.com" - }, - { - "name": "otakuSiD", - "email": "otakusid@gmail.com" - }, - { - "name": "Peter Dave Hello", - "email": "PeterDaveHello@users.noreply.github.com" - }, - { - "name": "philippsimon", - "email": "github@philippsimon.de" - }, - { - "name": "Pieter Hendrickx", - "email": "pieter.hendrickx@belfius.be" - }, - { - "name": "Robert Tod", - "email": "robert@qubit.com" - }, - { - "name": "Ross Noble", - "email": "rosshnoble@gmail.com" - }, - { - "name": "Sandro Sonntag", - "email": "sandro.sonntag@adorsys.de" - }, - { - "name": "sgautrea", - "email": "shanegautreau@gmail.com" - }, - { - "name": "Shane Gautreau", - "email": "sgautrea@opentext.com" - }, - { - "name": "Shane Thacker", - "email": "shane@steadymade.com" - }, - { - "name": "Simon Eisenmann", - "email": "simon@longsleep.org" - }, - { - "name": "Simon Lang", - "email": "me@simonlang.org" - }, - { - "name": "Sylvain Gizard", - "email": "sylvain.gizard@gmail.com" - }, - { - "name": "szchenghuang", - "email": "szchenghuang@gmail.com" - }, - { - "name": "Vadim Kurachevsky", - "email": "vadim@hmvs.org" - }, - { - "name": "Yun Young-jin", - "email": "yupmin@yupmin-office-macmini.local" - } - ], - "demo": "https://faisalman.github.io/ua-parser-js", + "title": "UAParser.js", + "name": "ua-parser-js", + "version": "0.7.17", + "author": "Faisal Salman (http://faisalman.com)", "description": "Lightweight JavaScript-based user-agent string parser", - "devDependencies": { - "jshint": "~1.1.0", - "mocha": "~1.8.0", - "requirejs": "^2.3.2", - "uglify-js": "~2.7.5", - "verup": "^1.3.x" - }, - "directories": { - "dist": "dist", - "src": "src", - "test": "test" - }, - "download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.min.js", - "engines": { - "node": "*" - }, - "homepage": "http://github.com/faisalman/ua-parser-js", "keywords": [ "user-agent", "parser", @@ -303,21 +15,75 @@ "jquery-plugin", "ecosystem:jquery" ], - "license": "(GPL-2.0 OR MIT)", + "homepage": "http://github.com/faisalman/ua-parser-js", + "contributors": [ + "Aamir Poonawalla ", + "Admas ", + "algenon ", + "Andrea Vaghi ", + "Anton Zhiyanov ", + "Austin Pray ", + "Benjamin Bertrand ", + "boneyao ", + "Carl C Von Lewin ", + "CESAR RAMOS ", + "Christopher De Cairos ", + "Davit Barbakadze ", + "ddivernois ", + "Demis Palma ", + "Dmitry Tyschenko ", + "Douglas Li ", + "Dumitru Uzun ", + "Erik Hesselink ", + "Fabian Becker ", + "Faisal Salman ", + "Frédéric Camblor ", + "Grigory Dmitrenko ", + "Hendrik Helwich ", + "jackpoll ", + "Jake Mc ", + "John Tantalo ", + "John Yanarella ", + "Jon Buckley ", + "Kendall Buchanan ", + "Lee Treveil ", + "leonardo ", + "Levente Balogh ", + "Liam Quinn ", + "Lithin ", + "Lukas Eipert ", + "Malash ", + "Martynas ", + "Maximilian Haupt ", + "Max Maurer ", + "Michael Hess ", + "naoh ", + "Nik Rolls ", + "niris ", + "otakuSiD ", + "Peter Dave Hello ", + "philippsimon ", + "Pieter Hendrickx ", + "Robert Tod ", + "Ross Noble ", + "Sandro Sonntag ", + "sgautrea ", + "Shane Gautreau ", + "Shane Thacker ", + "Simon Eisenmann ", + "Simon Lang ", + "Sylvain Gizard ", + "szchenghuang ", + "Vadim Kurachevsky ", + "Yun Young-jin " + ], "main": "src/ua-parser.js", - "name": "ua-parser-js", - "repository": { - "type": "git", - "url": "git+https://github.com/faisalman/ua-parser-js.git" - }, "scripts": { "build": "uglifyjs src/ua-parser.js -o dist/ua-parser.min.js --comments '/UAParser\\.js/' && uglifyjs src/ua-parser.js -o dist/ua-parser.pack.js --comments '/UAParser\\.js/' --compress --mangle", "test": "jshint src/ua-parser.js && mocha -R nyan test/test.js", - "version": "node ./node_modules/verup 0", - "verup": "node ./node_modules/verup" + "verup": "node ./node_modules/verup", + "version": "node ./node_modules/verup 0" }, - "title": "UAParser.js", - "version": "0.7.17", "verup": { "files": [ "bower.json", @@ -328,5 +94,28 @@ "^((?:\\$|(\\s*\\*\\s*@)|(\\s*(?:var|,)?\\s+))(?:LIBVERSION|version)[\\s\\:='\"]+)([0-9]+(?:\\.[0-9]+){2,2})", "^(\\s?\\*.*v)([0-9]+(?:\\.[0-9]+){2,2})" ] - } + }, + "devDependencies": { + "jshint": "~1.1.0", + "mocha": "~1.8.0", + "requirejs": "^2.3.2", + "uglify-js": "~2.7.5", + "verup": "^1.3.x" + }, + "repository": { + "type": "git", + "url": "https://github.com/faisalman/ua-parser-js.git" + }, + "license": "(GPL-2.0 OR MIT)", + "engines": { + "node": "*" + }, + "directories": { + "dist": "dist", + "src": "src", + "test": "test" + }, + "bugs": "https://github.com/faisalman/ua-parser-js/issues", + "demo": "https://faisalman.github.io/ua-parser-js", + "download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.min.js" } diff --git a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/whatwg-fetch/package.json b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/whatwg-fetch/package.json index 174e3a72..e6d80cc9 100644 --- a/goTorrentWebUI/node_modules/material-ui-icons/node_modules/whatwg-fetch/package.json +++ b/goTorrentWebUI/node_modules/material-ui-icons/node_modules/whatwg-fetch/package.json @@ -1,36 +1,10 @@ { - "_args": [ - [ - "whatwg-fetch@2.0.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "whatwg-fetch@2.0.3", - "_id": "whatwg-fetch@2.0.3", - "_inBundle": false, - "_integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=", - "_location": "/material-ui-icons/whatwg-fetch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "whatwg-fetch@2.0.3", - "name": "whatwg-fetch", - "escapedName": "whatwg-fetch", - "rawSpec": "2.0.3", - "saveSpec": null, - "fetchSpec": "2.0.3" - }, - "_requiredBy": [ - "/material-ui-icons/isomorphic-fetch" - ], - "_resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", - "_spec": "2.0.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/github/fetch/issues" - }, + "name": "whatwg-fetch", "description": "A window.fetch polyfill.", + "version": "2.0.3", + "main": "fetch.js", + "repository": "github/fetch", + "license": "MIT", "devDependencies": { "chai": "1.10.0", "jshint": "2.8.0", @@ -43,16 +17,7 @@ "LICENSE", "fetch.js" ], - "homepage": "https://github.com/github/fetch#readme", - "license": "MIT", - "main": "fetch.js", - "name": "whatwg-fetch", - "repository": { - "type": "git", - "url": "git+https://github.com/github/fetch.git" - }, "scripts": { "test": "make" - }, - "version": "2.0.3" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/asap/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/asap/package.json index 2fa37154..ae9f303b 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/asap/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/asap/package.json @@ -1,32 +1,18 @@ { - "_args": [ - [ - "asap@2.0.6", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "asap", + "version": "2.0.6", + "description": "High-priority task queue for Node.js and browsers", + "keywords": [ + "event", + "task", + "queue" ], - "_from": "asap@2.0.6", - "_id": "asap@2.0.6", - "_inBundle": false, - "_integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", - "_location": "/material-ui/asap", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "asap@2.0.6", - "name": "asap", - "escapedName": "asap", - "rawSpec": "2.0.6", - "saveSpec": null, - "fetchSpec": "2.0.6" + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/kriskowal/asap.git" }, - "_requiredBy": [ - "/material-ui/promise" - ], - "_resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "_spec": "2.0.6", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "main": "./asap.js", "browser": { "./asap": "./browser-asap.js", "./asap.js": "./browser-asap.js", @@ -34,12 +20,29 @@ "./raw.js": "./browser-raw.js", "./test/domain.js": "./test/browser-domain.js" }, - "bugs": { - "url": "https://github.com/kriskowal/asap/issues" + "react-native": { + "domain": false + }, + "files": [ + "raw.js", + "asap.js", + "browser-raw.js", + "browser-asap.js" + ], + "scripts": { + "test": "npm run lint && npm run test-node", + "test-travis": "npm run lint && npm run test-node && npm run test-saucelabs && npm run test-saucelabs-worker", + "test-node": "node test/asap-test.js", + "test-publish": "node scripts/publish-bundle.js test/asap-test.js | pbcopy", + "test-browser": "node scripts/publish-bundle.js test/asap-test.js | xargs opener", + "test-saucelabs": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-spot-configurations.json", + "test-saucelabs-all": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-all-configurations.json", + "test-saucelabs-worker": "node scripts/saucelabs-worker-test.js scripts/saucelabs-spot-configurations.json", + "test-saucelabs-worker-all": "node scripts/saucelabs-worker-test.js scripts/saucelabs-all-configurations.json", + "lint": "jshint raw.js asap.js browser-raw.js browser-asap.js $(find scripts -name '*.js' | grep -v gauntlet)", + "benchmarks": "node benchmarks" }, - "description": "High-priority task queue for Node.js and browsers", "devDependencies": { - "benchmark": "^1.0.0", "events": "^1.0.1", "jshint": "^2.5.1", "knox": "^0.8.10", @@ -49,42 +52,7 @@ "q-io": "^2.0.3", "saucelabs": "^0.1.1", "wd": "^0.2.21", - "weak-map": "^1.0.5" - }, - "files": [ - "raw.js", - "asap.js", - "browser-raw.js", - "browser-asap.js" - ], - "homepage": "https://github.com/kriskowal/asap#readme", - "keywords": [ - "event", - "task", - "queue" - ], - "license": "MIT", - "main": "./asap.js", - "name": "asap", - "react-native": { - "domain": false - }, - "repository": { - "type": "git", - "url": "git+https://github.com/kriskowal/asap.git" - }, - "scripts": { - "benchmarks": "node benchmarks", - "lint": "jshint raw.js asap.js browser-raw.js browser-asap.js $(find scripts -name '*.js' | grep -v gauntlet)", - "test": "npm run lint && npm run test-node", - "test-browser": "node scripts/publish-bundle.js test/asap-test.js | xargs opener", - "test-node": "node test/asap-test.js", - "test-publish": "node scripts/publish-bundle.js test/asap-test.js | pbcopy", - "test-saucelabs": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-spot-configurations.json", - "test-saucelabs-all": "node scripts/saucelabs.js test/asap-test.js scripts/saucelabs-all-configurations.json", - "test-saucelabs-worker": "node scripts/saucelabs-worker-test.js scripts/saucelabs-spot-configurations.json", - "test-saucelabs-worker-all": "node scripts/saucelabs-worker-test.js scripts/saucelabs-all-configurations.json", - "test-travis": "npm run lint && npm run test-node && npm run test-saucelabs && npm run test-saucelabs-worker" - }, - "version": "2.0.6" + "weak-map": "^1.0.5", + "benchmark": "^1.0.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/babel-runtime/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/babel-runtime/package.json index 18c0df5b..c17eb9a3 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/babel-runtime/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/babel-runtime/package.json @@ -1,52 +1,16 @@ { - "_args": [ - [ - "babel-runtime@6.26.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "babel-runtime@6.26.0", - "_id": "babel-runtime@6.26.0", - "_inBundle": false, - "_integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "_location": "/material-ui/babel-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "babel-runtime@6.26.0", - "name": "babel-runtime", - "escapedName": "babel-runtime", - "rawSpec": "6.26.0", - "saveSpec": null, - "fetchSpec": "6.26.0" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/react-event-listener", - "/material-ui/react-scrollbar-size" - ], - "_resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-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" - }, + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "license": "MIT", + "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", + "author": "Sebastian McKenzie ", "dependencies": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" }, - "description": "babel selfContained runtime", "devDependencies": { "babel-helpers": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0" - }, - "license": "MIT", - "name": "babel-runtime", - "repository": { - "type": "git", - "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" - }, - "version": "6.26.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/brcast/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/brcast/package.json index 22e98843..24a89323 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/brcast/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/brcast/package.json @@ -1,42 +1,43 @@ { - "_args": [ - [ - "brcast@3.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "brcast@3.0.1", - "_id": "brcast@3.0.1", - "_inBundle": false, - "_integrity": "sha512-eI3yqf9YEqyGl9PCNTR46MGvDylGtaHjalcz6Q3fAPnP/PhpKkkve52vFdfGpwp4VUvK6LUr4TQN+2stCrEwTg==", - "_location": "/material-ui/brcast", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "brcast@3.0.1", - "name": "brcast", - "escapedName": "brcast", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/theming" - ], - "_resolved": "https://registry.npmjs.org/brcast/-/brcast-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "brcast", "amdName": "brcast", + "version": "3.0.1", + "description": "Tiny data broadcaster with 0 dependencies", + "jsnext:main": "dist/brcast.es.js", + "module": "dist/brcast.es.js", + "main": "dist/brcast.cjs.js", + "umd:main": "dist/brcast.umd.js", + "scripts": { + "bump": "standard-version", + "testonly": "jest --coverage", + "lint": "standard", + "format": "prettier --write --semi false '*.js' && standard --fix", + "test": "npm run lint && npm run testonly", + "build": "npm-run-all test clean rollup rollup:min size", + "clean": "rimraf dist", + "rollup": "rollup -c", + "rollup:min": "cross-env MINIFY=minify rollup -c", + "size": "echo \"Gzipped Size: $(cat dist/brcast.umd.min.js | gzip-size)\"", + "precommit": "lint-staged", + "release": "npm run build && npm run bump && git push --follow-tags origin master && npm publish" + }, + "repository": "vesparny/brcast", + "keywords": [ + "events", + "eventemitter", + "pubsub", + "broadcast" + ], + "homepage": "https://github.com/vesparny/brcast", "authors": [ "Alessandro Arnodo " ], - "bugs": { - "url": "https://github.com/vesparny/brcast/issues" - }, - "dependencies": {}, - "description": "Tiny data broadcaster with 0 dependencies", + "license": "MIT", + "files": [ + "dist", + "index.js", + "index.spec.js" + ], "devDependencies": { "babel-core": "^6.24.1", "babel-eslint": "^7.2.2", @@ -56,48 +57,7 @@ "standard": "^10.0.2", "standard-version": "^4.0.0" }, - "files": [ - "dist", - "index.js", - "index.spec.js" - ], - "homepage": "https://github.com/vesparny/brcast", - "jsnext:main": "dist/brcast.es.js", - "keywords": [ - "events", - "eventemitter", - "pubsub", - "broadcast" - ], - "license": "MIT", - "lint-staged": { - "*.js": [ - "prettier --write --semi false --single-quote", - "standard --fix", - "git add" - ] - }, - "main": "dist/brcast.cjs.js", - "module": "dist/brcast.es.js", - "name": "brcast", - "repository": { - "type": "git", - "url": "git+https://github.com/vesparny/brcast.git" - }, - "scripts": { - "build": "npm-run-all test clean rollup rollup:min size", - "bump": "standard-version", - "clean": "rimraf dist", - "format": "prettier --write --semi false '*.js' && standard --fix", - "lint": "standard", - "precommit": "lint-staged", - "release": "npm run build && npm run bump && git push --follow-tags origin master && npm publish", - "rollup": "rollup -c", - "rollup:min": "cross-env MINIFY=minify rollup -c", - "size": "echo \"Gzipped Size: $(cat dist/brcast.umd.min.js | gzip-size)\"", - "test": "npm run lint && npm run testonly", - "testonly": "jest --coverage" - }, + "dependencies": {}, "standard": { "parser": "babel-eslint", "globals": [ @@ -108,6 +68,11 @@ "describe" ] }, - "umd:main": "dist/brcast.umd.js", - "version": "3.0.1" + "lint-staged": { + "*.js": [ + "prettier --write --semi false --single-quote", + "standard --fix", + "git add" + ] + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/chain-function/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/chain-function/package.json index 8ebfe053..54398807 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/chain-function/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/chain-function/package.json @@ -1,54 +1,24 @@ { - "_args": [ - [ - "chain-function@1.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "chain-function@1.0.0", - "_id": "chain-function@1.0.0", - "_inBundle": false, - "_integrity": "sha1-DUqzfn4Y6tC9xHuSB2QRjOWHM9w=", - "_location": "/material-ui/chain-function", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "chain-function@1.0.0", - "name": "chain-function", - "escapedName": "chain-function", - "rawSpec": "1.0.0", - "saveSpec": null, - "fetchSpec": "1.0.0" - }, - "_requiredBy": [ - "/material-ui/react-transition-group" - ], - "_resolved": "https://registry.npmjs.org/chain-function/-/chain-function-1.0.0.tgz", - "_spec": "1.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "jquense" - }, - "bugs": { - "url": "https://github.com/jquense/chain-function/issues" - }, + "name": "chain-function", + "version": "1.0.0", "description": "chain a bunch of functions together into a single call", - "homepage": "https://github.com/jquense/chain-function#readme", + "main": "index.js", + "scripts": { + "test": "node ./test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/jquense/chain-function.git" + }, "keywords": [ "chain", "compose", "function" ], + "author": "jquense", "license": "MIT", - "main": "index.js", - "name": "chain-function", - "repository": { - "type": "git", - "url": "git+https://github.com/jquense/chain-function.git" + "bugs": { + "url": "https://github.com/jquense/chain-function/issues" }, - "scripts": { - "test": "node ./test.js" - }, - "version": "1.0.0" + "homepage": "https://github.com/jquense/chain-function#readme" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/change-emitter/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/change-emitter/package.json index 016e7d87..f6f84a2f 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/change-emitter/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/change-emitter/package.json @@ -1,35 +1,42 @@ { - "_args": [ - [ - "change-emitter@0.1.6", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "change-emitter", + "version": "0.1.6", + "description": "Listen for changes. Like an event emitter that only emits a single event type. Really tiny.", + "main": "lib/index.js", + "files": [ + "lib" ], - "_from": "change-emitter@0.1.6", - "_id": "change-emitter@0.1.6", - "_inBundle": false, - "_integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=", - "_location": "/material-ui/change-emitter", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "change-emitter@0.1.6", - "name": "change-emitter", - "escapedName": "change-emitter", - "rawSpec": "0.1.6", - "saveSpec": null, - "fetchSpec": "0.1.6" + "scripts": { + "check": "eslint src", + "build": "babel src --out-dir lib", + "test": "ava", + "test:watch": "yarn run test -- --watch", + "prepublish": "yarn run check && yarn run test && yarn run build" }, - "_requiredBy": [ - "/material-ui/recompose" + "repository": { + "type": "git", + "url": "git+https://github.com/acdlite/change-emitter.git" + }, + "keywords": [ + "change", + "event", + "emitter" ], - "_resolved": "https://registry.npmjs.org/change-emitter/-/change-emitter-0.1.6.tgz", - "_spec": "0.1.6", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andrew Clark", - "email": "acdlite@me.com" + "author": "Andrew Clark ", + "license": "MIT", + "bugs": { + "url": "https://github.com/acdlite/change-emitter/issues" + }, + "homepage": "https://github.com/acdlite/change-emitter#readme", + "devDependencies": { + "ava": "^0.14.0", + "babel-cli": "^6.8.0", + "babel-core": "^6.8.0", + "babel-preset-es2015": "^6.6.0", + "eslint": "^2.10.1", + "eslint-config-airbnb-base": "^3.0.1", + "eslint-plugin-import": "^1.8.0", + "sinon": "^1.17.4" }, "ava": { "babel": "inherit", @@ -42,43 +49,5 @@ "require": [ "babel-register" ] - }, - "bugs": { - "url": "https://github.com/acdlite/change-emitter/issues" - }, - "description": "Listen for changes. Like an event emitter that only emits a single event type. Really tiny.", - "devDependencies": { - "ava": "^0.14.0", - "babel-cli": "^6.8.0", - "babel-core": "^6.8.0", - "babel-preset-es2015": "^6.6.0", - "eslint": "^2.10.1", - "eslint-config-airbnb-base": "^3.0.1", - "eslint-plugin-import": "^1.8.0", - "sinon": "^1.17.4" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/acdlite/change-emitter#readme", - "keywords": [ - "change", - "event", - "emitter" - ], - "license": "MIT", - "main": "lib/index.js", - "name": "change-emitter", - "repository": { - "type": "git", - "url": "git+https://github.com/acdlite/change-emitter.git" - }, - "scripts": { - "build": "babel src --out-dir lib", - "check": "eslint src", - "prepublish": "yarn run check && yarn run test && yarn run build", - "test": "ava", - "test:watch": "yarn run test -- --watch" - }, - "version": "0.1.6" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/classnames/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/classnames/package.json index 3e78c02e..04eec26c 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/classnames/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/classnames/package.json @@ -1,45 +1,19 @@ { - "_args": [ - [ - "classnames@2.2.5", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "classnames@2.2.5", - "_id": "classnames@2.2.5", - "_inBundle": false, - "_integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0=", - "_location": "/material-ui/classnames", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "classnames@2.2.5", - "name": "classnames", - "escapedName": "classnames", - "rawSpec": "2.2.5", - "saveSpec": null, - "fetchSpec": "2.2.5" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/react-transition-group" - ], - "_resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz", - "_spec": "2.2.5", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jed Watson" - }, - "bugs": { - "url": "https://github.com/JedWatson/classnames/issues" - }, + "name": "classnames", + "version": "2.2.5", "description": "A simple utility for conditionally joining classNames together", - "devDependencies": { - "benchmark": "^1.0.0", - "mocha": "^2.1.0" + "main": "index.js", + "author": "Jed Watson", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/JedWatson/classnames.git" + }, + "scripts": { + "benchmarks": "node ./benchmarks/run", + "unit": "mocha tests/*.js", + "test": "npm run unit" }, - "homepage": "https://github.com/JedWatson/classnames#readme", "keywords": [ "react", "css", @@ -49,17 +23,8 @@ "util", "utility" ], - "license": "MIT", - "main": "index.js", - "name": "classnames", - "repository": { - "type": "git", - "url": "git+https://github.com/JedWatson/classnames.git" - }, - "scripts": { - "benchmarks": "node ./benchmarks/run", - "test": "npm run unit", - "unit": "mocha tests/*.js" - }, - "version": "2.2.5" + "devDependencies": { + "benchmark": "^1.0.0", + "mocha": "^2.1.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/core-js/package.json index 55cebd21..444bafff 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/core-js/package.json @@ -1,62 +1,45 @@ { - "_args": [ - [ - "core-js@2.5.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@2.5.1", - "_id": "core-js@2.5.1", - "_inBundle": false, - "_integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=", - "_location": "/material-ui/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@2.5.1", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "2.5.1", - "saveSpec": null, - "fetchSpec": "2.5.1" - }, - "_requiredBy": [ - "/material-ui/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz", - "_spec": "2.5.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "2.5.1", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "3.5.x", "LiveScript": "1.3.x", + "grunt": "1.0.x", + "grunt-cli": "1.2.x", + "grunt-livescript": "0.6.x", + "grunt-contrib-uglify": "3.0.x", + "grunt-contrib-watch": "1.0.x", + "grunt-contrib-clean": "1.1.x", + "grunt-contrib-copy": "1.0.x", + "grunt-karma": "2.0.x", + "karma": "1.7.x", + "karma-qunit": "1.2.x", + "karma-chrome-launcher": "2.2.x", + "karma-ie-launcher": "1.0.x", + "karma-firefox-launcher": "1.0.x", + "karma-phantomjs-launcher": "1.0.x", + "qunitjs": "2.4.x", + "phantomjs-prebuilt": "2.1.x", + "promises-aplus-tests": "2.1.x", "es-observable-tests": "0.2.x", "eslint": "4.5.x", "eslint-plugin-import": "2.7.x", - "grunt": "1.0.x", - "grunt-cli": "1.2.x", - "grunt-contrib-clean": "1.1.x", - "grunt-contrib-copy": "1.0.x", - "grunt-contrib-uglify": "3.0.x", - "grunt-contrib-watch": "1.0.x", - "grunt-karma": "2.0.x", - "grunt-livescript": "0.6.x", - "karma": "1.7.x", - "karma-chrome-launcher": "2.2.x", - "karma-firefox-launcher": "1.0.x", - "karma-ie-launcher": "1.0.x", - "karma-phantomjs-launcher": "1.0.x", - "karma-qunit": "1.2.x", - "phantomjs-prebuilt": "2.1.x", - "promises-aplus-tests": "2.1.x", - "qunitjs": "2.4.x", - "temp": "0.8.x", - "webpack": "3.5.x" + "temp": "0.8.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint ./", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", + "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES3", "ES5", @@ -85,20 +68,5 @@ "Dict", "polyfill", "shim" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint ./", - "observables-tests": "node tests/observables/adapter && node tests/observables/adapter-library", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs" - }, - "version": "2.5.1" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/css-vendor/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/css-vendor/package.json index 036d98e3..624da86e 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/css-vendor/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/css-vendor/package.json @@ -1,43 +1,45 @@ { - "_args": [ - [ - "css-vendor@0.3.8", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "css-vendor@0.3.8", - "_id": "css-vendor@0.3.8", - "_inBundle": false, - "_integrity": "sha1-ZCHP0wNM5mT+dnOXL9ARn8KJQfo=", - "_location": "/material-ui/css-vendor", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "css-vendor@0.3.8", - "name": "css-vendor", - "escapedName": "css-vendor", - "rawSpec": "0.3.8", - "saveSpec": null, - "fetchSpec": "0.3.8" - }, - "_requiredBy": [ - "/material-ui/jss-vendor-prefixer" - ], - "_resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-0.3.8.tgz", - "_spec": "0.3.8", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "css-vendor", + "description": "CSS vendor prefix detection and property feature testing.", + "version": "0.3.8", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/css-vendor/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/css-vendor.git" }, - "dependencies": { - "is-in-browser": "^1.0.2" + "keywords": [ + "css", + "vendor", + "feature", + "test", + "prefix", + "cssinjs", + "jss", + "css-in-js" + ], + "engines": {}, + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/react-jss.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-jss.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublish": "npm run all" }, - "description": "CSS vendor prefix detection and property feature testing.", + "license": "MIT", + "main": "./lib/index", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -73,48 +75,14 @@ "rimraf": "^2.5.4", "webpack": "^1.12.2" }, - "engines": {}, - "homepage": "https://github.com/cssinjs/css-vendor#readme", - "keywords": [ - "css", - "vendor", - "feature", - "test", - "prefix", - "cssinjs", - "jss", - "css-in-js" - ], - "license": "MIT", + "dependencies": { + "is-in-browser": "^1.0.2" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "./lib/index", - "name": "css-vendor", - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/css-vendor.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/react-jss.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-jss.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublish": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "0.3.8" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/deepmerge/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/deepmerge/package.json index d4f2f045..fd1ce96c 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/deepmerge/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/deepmerge/package.json @@ -1,51 +1,7 @@ { - "_args": [ - [ - "deepmerge@2.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "deepmerge@2.0.1", - "_id": "deepmerge@2.0.1", - "_inBundle": false, - "_integrity": "sha512-VIPwiMJqJ13ZQfaCsIFnp5Me9tnjURiaIFxfz7EH0Ci0dTSQpZtSLrqOicXqEd/z2r+z+Klk9GzmnRsgpgbOsQ==", - "_location": "/material-ui/deepmerge", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "deepmerge@2.0.1", - "name": "deepmerge", - "escapedName": "deepmerge", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/material-ui" - ], - "_resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Nick Fisher" - }, - "bugs": { - "url": "https://github.com/KyleAMathews/deepmerge/issues" - }, + "author": "Nick Fisher", + "name": "deepmerge", "description": "A library for deep (recursive) merging of Javascript objects", - "devDependencies": { - "is-mergeable-object": "1.1.0", - "jsmd": "0.3.1", - "rollup": "0.49.3", - "rollup-plugin-commonjs": "8.2.1", - "rollup-plugin-node-resolve": "3.0.0", - "tap": "~7.1.2" - }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/KyleAMathews/deepmerge", "keywords": [ "merge", "deep", @@ -54,17 +10,28 @@ "clone", "recursive" ], - "license": "MIT", - "main": "dist/umd.js", - "module": "dist/es.js", - "name": "deepmerge", + "version": "2.0.1", + "homepage": "https://github.com/KyleAMathews/deepmerge", "repository": { "type": "git", "url": "git://github.com/KyleAMathews/deepmerge.git" }, + "main": "dist/umd.js", + "module": "dist/es.js", + "engines": { + "node": ">=0.10.0" + }, "scripts": { "build": "rollup -c", "test": "npm run build && tap test/*.js && jsmd readme.md" }, - "version": "2.0.1" + "devDependencies": { + "is-mergeable-object": "1.1.0", + "jsmd": "0.3.1", + "rollup": "0.49.3", + "rollup-plugin-commonjs": "8.2.1", + "rollup-plugin-node-resolve": "3.0.0", + "tap": "~7.1.2" + }, + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/dom-helpers/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/dom-helpers/package.json index 61d7be4d..4ebfcd0f 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/dom-helpers/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/dom-helpers/package.json @@ -1,42 +1,14 @@ { - "_args": [ - [ - "dom-helpers@3.2.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "dom-helpers@3.2.1", - "_id": "dom-helpers@3.2.1", - "_inBundle": false, - "_integrity": "sha1-MgPgf+0he9H0JLAZc1WC/Deyglo=", - "_location": "/material-ui/dom-helpers", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "dom-helpers@3.2.1", - "name": "dom-helpers", - "escapedName": "dom-helpers", - "rawSpec": "3.2.1", - "saveSpec": null, - "fetchSpec": "3.2.1" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/react-transition-group" - ], - "_resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.2.1.tgz", - "_spec": "3.2.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "dom-helpers", + "version": "3.2.1", + "description": "tiny modular DOM lib for ie8+ ", "author": { "name": "Jason Quense", "email": "monastic.panic@gmail.com" }, - "bugs": { - "url": "https://github.com/jquense/dom-helpers/issues" - }, - "description": "tiny modular DOM lib for ie8+ ", - "homepage": "https://github.com/jquense/dom-helpers#readme", + "repository": "jquense/dom-helpers", + "license": "MIT", + "main": "index.js", "keywords": [ "dom-helpers", "react-component", @@ -51,13 +23,5 @@ "class", "classlist", "css" - ], - "license": "MIT", - "main": "index.js", - "name": "dom-helpers", - "repository": { - "type": "git", - "url": "git+https://github.com/jquense/dom-helpers.git" - }, - "version": "3.2.1" + ] } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/dom-walk/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/dom-walk/package.json index 32e6e980..37492d9b 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/dom-walk/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/dom-walk/package.json @@ -1,64 +1,30 @@ { - "_args": [ - [ - "dom-walk@0.1.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "dom-walk@0.1.1", - "_id": "dom-walk@0.1.1", - "_inBundle": false, - "_integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=", - "_location": "/material-ui/dom-walk", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "dom-walk@0.1.1", - "name": "dom-walk", - "escapedName": "dom-walk", - "rawSpec": "0.1.1", - "saveSpec": null, - "fetchSpec": "0.1.1" - }, - "_requiredBy": [ - "/material-ui/min-document" - ], - "_resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", - "_spec": "0.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/dom-walk/issues", - "email": "raynos2@gmail.com" - }, + "name": "dom-walk", + "version": "0.1.1", + "description": "iteratively walk a DOM node", + "keywords": [], + "author": "Raynos ", + "repository": "git://github.com/Raynos/dom-walk.git", + "main": "index", + "homepage": "https://github.com/Raynos/dom-walk", "contributors": [ { "name": "Jake Verbaten" } ], + "bugs": { + "url": "https://github.com/Raynos/dom-walk/issues", + "email": "raynos2@gmail.com" + }, "dependencies": {}, - "description": "iteratively walk a DOM node", "devDependencies": { "browserify-server": "~0.5.6" }, - "homepage": "https://github.com/Raynos/dom-walk", - "keywords": [], "licenses": [ { "type": "MIT", "url": "http://github.com/Raynos/dom-walk/raw/master/LICENSE" } ], - "main": "index", - "name": "dom-walk", - "repository": { - "type": "git", - "url": "git://github.com/Raynos/dom-walk.git" - }, - "scripts": {}, - "version": "0.1.1" + "scripts": {} } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/encoding/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/encoding/package.json index ae75172c..a8f7a2c8 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/encoding/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/encoding/package.json @@ -1,56 +1,19 @@ { - "_args": [ - [ - "encoding@0.1.12", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "encoding@0.1.12", - "_id": "encoding@0.1.12", - "_inBundle": false, - "_integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "_location": "/material-ui/encoding", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "encoding@0.1.12", - "name": "encoding", - "escapedName": "encoding", - "rawSpec": "0.1.12", - "saveSpec": null, - "fetchSpec": "0.1.12" - }, - "_requiredBy": [ - "/material-ui/node-fetch" - ], - "_resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "_spec": "0.1.12", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andris Reinman" - }, - "bugs": { - "url": "https://github.com/andris9/encoding/issues" - }, - "dependencies": { - "iconv-lite": "~0.4.13" - }, - "description": "Convert encodings, uses iconv by default and fallbacks to iconv-lite if needed", - "devDependencies": { - "iconv": "~2.1.11", - "nodeunit": "~0.9.1" - }, - "homepage": "https://github.com/andris9/encoding#readme", - "license": "MIT", - "main": "lib/encoding.js", "name": "encoding", - "repository": { - "type": "git", - "url": "git+https://github.com/andris9/encoding.git" - }, + "version": "0.1.12", + "description": "Convert encodings, uses iconv by default and fallbacks to iconv-lite if needed", + "main": "lib/encoding.js", "scripts": { "test": "nodeunit test" }, - "version": "0.1.12" + "repository": "https://github.com/andris9/encoding.git", + "author": "Andris Reinman", + "license": "MIT", + "dependencies": { + "iconv-lite": "~0.4.13" + }, + "devDependencies": { + "iconv": "~2.1.11", + "nodeunit": "~0.9.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/fbjs/node_modules/core-js/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/fbjs/node_modules/core-js/package.json index 8f94594c..65cfc650 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/fbjs/node_modules/core-js/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/fbjs/node_modules/core-js/package.json @@ -1,59 +1,41 @@ { - "_args": [ - [ - "core-js@1.2.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "core-js@1.2.7", - "_id": "core-js@1.2.7", - "_inBundle": false, - "_integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", - "_location": "/material-ui/fbjs/core-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "core-js@1.2.7", - "name": "core-js", - "escapedName": "core-js", - "rawSpec": "1.2.7", - "saveSpec": null, - "fetchSpec": "1.2.7" - }, - "_requiredBy": [ - "/material-ui/fbjs" - ], - "_resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "_spec": "1.2.7", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "bugs": { - "url": "https://github.com/zloirock/core-js/issues" - }, + "name": "core-js", "description": "Standard library", + "version": "1.2.7", + "repository": { + "type": "git", + "url": "https://github.com/zloirock/core-js.git" + }, + "main": "index.js", "devDependencies": { + "webpack": "1.12.x", "LiveScript": "1.3.x", - "eslint": "1.9.x", "grunt": "0.4.x", "grunt-cli": "0.1.x", - "grunt-contrib-clean": "0.6.x", - "grunt-contrib-copy": "0.8.x", + "grunt-livescript": "0.5.x", "grunt-contrib-uglify": "0.10.x", "grunt-contrib-watch": "0.6.x", + "grunt-contrib-clean": "0.6.x", + "grunt-contrib-copy": "0.8.x", "grunt-karma": "0.12.x", - "grunt-livescript": "0.5.x", "karma": "0.13.x", - "karma-chrome-launcher": "0.2.x", - "karma-firefox-launcher": "0.1.x", - "karma-ie-launcher": "0.2.x", - "karma-phantomjs-launcher": "0.2.x", "karma-qunit": "0.1.x", - "phantomjs": "1.9.x", + "karma-chrome-launcher": "0.2.x", + "karma-ie-launcher": "0.2.x", + "karma-firefox-launcher": "0.1.x", + "karma-phantomjs-launcher": "0.2.x", "promises-aplus-tests": "2.1.x", + "eslint": "1.9.x", "qunitjs": "1.23.x", - "webpack": "1.12.x" + "phantomjs": "1.9.x" }, - "homepage": "https://github.com/zloirock/core-js#readme", + "scripts": { + "grunt": "grunt", + "lint": "eslint es5 es6 es7 js web core fn modules", + "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", + "test": "npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs" + }, + "license": "MIT", "keywords": [ "ES5", "ECMAScript 5", @@ -73,19 +55,5 @@ "setImmediate", "Dict", "partial application" - ], - "license": "MIT", - "main": "index.js", - "name": "core-js", - "repository": { - "type": "git", - "url": "git+https://github.com/zloirock/core-js.git" - }, - "scripts": { - "grunt": "grunt", - "lint": "eslint es5 es6 es7 js web core fn modules", - "promises-tests": "promises-aplus-tests tests/promises-aplus/adapter", - "test": "npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs" - }, - "version": "1.2.7" -} + ] +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/global/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/global/package.json index 7bfb6b01..d79c2f27 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/global/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/global/package.json @@ -1,69 +1,36 @@ { - "_args": [ - [ - "global@4.3.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "global", + "version": "4.3.2", + "description": "Require global variables", + "keywords": [], + "author": "Raynos ", + "repository": "git://github.com/Raynos/global.git", + "main": "window.js", + "homepage": "https://github.com/Raynos/global", + "contributors": [ + { + "name": "Raynos" + } ], - "_from": "global@4.3.2", - "_id": "global@4.3.2", - "_inBundle": false, - "_integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", - "_location": "/material-ui/global", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "global@4.3.2", - "name": "global", - "escapedName": "global", - "rawSpec": "4.3.2", - "saveSpec": null, - "fetchSpec": "4.3.2" - }, - "_requiredBy": [ - "/material-ui/rafl" - ], - "_resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", - "_spec": "4.3.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Raynos", + "bugs": { + "url": "https://github.com/Raynos/global/issues", "email": "raynos2@gmail.com" }, "browser": { "min-document": false, "individual": false }, - "bugs": { - "url": "https://github.com/Raynos/global/issues", - "email": "raynos2@gmail.com" - }, - "contributors": [ - { - "name": "Raynos" - } - ], "dependencies": { "min-document": "^2.19.0", "process": "~0.5.1" }, - "description": "Require global variables", "devDependencies": { "tape": "^2.12.0" }, - "homepage": "https://github.com/Raynos/global", - "keywords": [], "license": "MIT", - "main": "window.js", - "name": "global", - "repository": { - "type": "git", - "url": "git://github.com/Raynos/global.git" - }, "scripts": { - "build": "browserify test/index.js -o test/static/bundle.js", "test": "node ./test", + "build": "browserify test/index.js -o test/static/bundle.js", "testem": "testem" }, "testling": { @@ -92,6 +59,5 @@ "5.1" ] } - }, - "version": "4.3.2" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/hoist-non-react-statics/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/hoist-non-react-statics/package.json index a4f62eb1..cf6a7ff0 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/hoist-non-react-statics/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/hoist-non-react-statics/package.json @@ -1,41 +1,20 @@ { - "_args": [ - [ - "hoist-non-react-statics@2.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "hoist-non-react-statics@2.3.1", - "_id": "hoist-non-react-statics@2.3.1", - "_inBundle": false, - "_integrity": "sha1-ND24TGAYxlB3iJgkATWhQg7iLOA=", - "_location": "/material-ui/hoist-non-react-statics", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "hoist-non-react-statics@2.3.1", - "name": "hoist-non-react-statics", - "escapedName": "hoist-non-react-statics", - "rawSpec": "2.3.1", - "saveSpec": null, - "fetchSpec": "2.3.1" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/recompose" - ], - "_resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.3.1.tgz", - "_spec": "2.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Michael Ridgway", - "email": "mcridgway@gmail.com" - }, - "bugs": { - "url": "https://github.com/mridgway/hoist-non-react-statics/issues" - }, + "name": "hoist-non-react-statics", + "version": "2.3.1", "description": "Copies non-react specific statics from a child component to a parent component", + "main": "index.js", + "types": "index.d.ts", + "repository": { + "type": "git", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + }, + "scripts": { + "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", + "lint": "eslint ./index.js", + "test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec" + }, + "author": "Michael Ridgway ", + "license": "BSD-3-Clause", "devDependencies": { "babel": "^6.23.0", "babel-cli": "^6.24.1", @@ -54,22 +33,7 @@ "pre-commit": "^1.0.7", "react": "^15.0.0" }, - "homepage": "https://github.com/mridgway/hoist-non-react-statics#readme", "keywords": [ "react" - ], - "license": "BSD-3-Clause", - "main": "index.js", - "name": "hoist-non-react-statics", - "repository": { - "type": "git", - "url": "git://github.com/mridgway/hoist-non-react-statics.git" - }, - "scripts": { - "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", - "lint": "eslint ./index.js", - "test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec" - }, - "types": "index.d.ts", - "version": "2.3.1" + ] } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/iconv-lite/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/iconv-lite/package.json index a9df3122..459dca34 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/iconv-lite/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/iconv-lite/package.json @@ -1,126 +1,57 @@ { - "_args": [ - [ - "iconv-lite@0.4.19", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "iconv-lite@0.4.19", - "_id": "iconv-lite@0.4.19", - "_inBundle": false, - "_integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", - "_location": "/material-ui/iconv-lite", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "iconv-lite@0.4.19", "name": "iconv-lite", - "escapedName": "iconv-lite", - "rawSpec": "0.4.19", - "saveSpec": null, - "fetchSpec": "0.4.19" - }, - "_requiredBy": [ - "/material-ui/encoding" - ], - "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "_spec": "0.4.19", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Alexander Shtuchkin", - "email": "ashtuchkin@gmail.com" - }, - "browser": { - "./extend-node": false, - "./streams": false - }, - "bugs": { - "url": "https://github.com/ashtuchkin/iconv-lite/issues" - }, - "contributors": [ - { - "name": "Jinwu Zhan", - "url": "https://github.com/jenkinv" + "description": "Convert character encodings in pure javascript.", + "version": "0.4.19", + "license": "MIT", + "keywords": [ + "iconv", + "convert", + "charset", + "icu" + ], + "author": "Alexander Shtuchkin ", + "contributors": [ + "Jinwu Zhan (https://github.com/jenkinv)", + "Adamansky Anton (https://github.com/adamansky)", + "George Stagas (https://github.com/stagas)", + "Mike D Pilsbury (https://github.com/pekim)", + "Niggler (https://github.com/Niggler)", + "wychi (https://github.com/wychi)", + "David Kuo (https://github.com/david50407)", + "ChangZhuo Chen (https://github.com/czchen)", + "Lee Treveil (https://github.com/leetreveil)", + "Brian White (https://github.com/mscdex)", + "Mithgol (https://github.com/Mithgol)", + "Nazar Leush (https://github.com/nleush)" + ], + "main": "./lib/index.js", + "typings": "./lib/index.d.ts", + "homepage": "https://github.com/ashtuchkin/iconv-lite", + "bugs": "https://github.com/ashtuchkin/iconv-lite/issues", + "repository": { + "type": "git", + "url": "git://github.com/ashtuchkin/iconv-lite.git" }, - { - "name": "Adamansky Anton", - "url": "https://github.com/adamansky" + "engines": { + "node": ">=0.10.0" }, - { - "name": "George Stagas", - "url": "https://github.com/stagas" + "scripts": { + "coverage": "istanbul cover _mocha -- --grep .", + "coverage-open": "open coverage/lcov-report/index.html", + "test": "mocha --reporter spec --grep ." }, - { - "name": "Mike D Pilsbury", - "url": "https://github.com/pekim" + "browser": { + "./extend-node": false, + "./streams": false }, - { - "name": "Niggler", - "url": "https://github.com/Niggler" - }, - { - "name": "wychi", - "url": "https://github.com/wychi" - }, - { - "name": "David Kuo", - "url": "https://github.com/david50407" - }, - { - "name": "ChangZhuo Chen", - "url": "https://github.com/czchen" - }, - { - "name": "Lee Treveil", - "url": "https://github.com/leetreveil" - }, - { - "name": "Brian White", - "url": "https://github.com/mscdex" - }, - { - "name": "Mithgol", - "url": "https://github.com/Mithgol" - }, - { - "name": "Nazar Leush", - "url": "https://github.com/nleush" + "devDependencies": { + "mocha": "*", + "request": "*", + "unorm": "*", + "errto": "*", + "async": "*", + "istanbul": "*", + "semver": "*", + "iconv": "*" } - ], - "description": "Convert character encodings in pure javascript.", - "devDependencies": { - "async": "*", - "errto": "*", - "iconv": "*", - "istanbul": "*", - "mocha": "*", - "request": "*", - "semver": "*", - "unorm": "*" - }, - "engines": { - "node": ">=0.10.0" - }, - "homepage": "https://github.com/ashtuchkin/iconv-lite", - "keywords": [ - "iconv", - "convert", - "charset", - "icu" - ], - "license": "MIT", - "main": "./lib/index.js", - "name": "iconv-lite", - "repository": { - "type": "git", - "url": "git://github.com/ashtuchkin/iconv-lite.git" - }, - "scripts": { - "coverage": "istanbul cover _mocha -- --grep .", - "coverage-open": "open coverage/lcov-report/index.html", - "test": "mocha --reporter spec --grep ." - }, - "typings": "./lib/index.d.ts", - "version": "0.4.19" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/is-function/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/is-function/package.json index 4d9394fc..119d203d 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/is-function/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/is-function/package.json @@ -1,60 +1,27 @@ { - "_args": [ - [ - "is-function@1.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "is-function@1.0.1", - "_id": "is-function@1.0.1", - "_inBundle": false, - "_integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU=", - "_location": "/material-ui/is-function", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-function@1.0.1", - "name": "is-function", - "escapedName": "is-function", - "rawSpec": "1.0.1", - "saveSpec": null, - "fetchSpec": "1.0.1" - }, - "_requiredBy": [ - "/material-ui/theming" - ], - "_resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz", - "_spec": "1.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Stephen Sugden", - "email": "me@stephensugden.com" - }, - "bugs": { - "url": "https://github.com/grncdr/js-is-function/issues" - }, - "dependencies": {}, + "name": "is-function", + "version": "1.0.1", "description": "is that thing a function? Use this module to find out", + "main": "index.js", + "dependencies": {}, "devDependencies": { "tape": "~2.3.2" }, + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/grncdr/js-is-function.git" + }, "homepage": "https://github.com/grncdr/js-is-function", "keywords": [ "polyfill", "is-function", "ie6" ], + "author": "Stephen Sugden ", "license": "MIT", - "main": "index.js", - "name": "is-function", - "repository": { - "type": "git", - "url": "git://github.com/grncdr/js-is-function.git" - }, - "scripts": { - "test": "tape test.js" - }, "testling": { "files": "test.js", "browsers": [ @@ -72,6 +39,5 @@ "iphone/6.0..latest", "android-browser/4.2" ] - }, - "version": "1.0.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/is-in-browser/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/is-in-browser/package.json index 2a33f1a5..4ee1c51b 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/is-in-browser/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/is-in-browser/package.json @@ -1,41 +1,18 @@ { - "_args": [ - [ - "is-in-browser@1.1.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "is-in-browser@1.1.3", - "_id": "is-in-browser@1.1.3", - "_inBundle": false, - "_integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=", - "_location": "/material-ui/is-in-browser", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-in-browser@1.1.3", - "name": "is-in-browser", - "escapedName": "is-in-browser", - "rawSpec": "1.1.3", - "saveSpec": null, - "fetchSpec": "1.1.3" - }, - "_requiredBy": [ - "/material-ui/css-vendor", - "/material-ui/jss" - ], - "_resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", - "_spec": "1.1.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jared Anderson" - }, - "bugs": { - "url": "https://github.com/tuxsudo/is-in-browser/issues" - }, - "dependencies": {}, + "name": "is-in-browser", + "version": "1.1.3", "description": "Simple check to see if current app is running in browser", + "main": "dist/index.js", + "module": "dist/module.js", + "types": "dist/index.d.ts", + "scripts": { + "build": "BABEL_ENV=cjs babel src -d dist && BABEL_ENV=module babel src/index.js -o dist/module.js && cpy src/index.d.ts dist", + "test": "babel-tape-runner test/*.js | tap-spec", + "prepublish": "npm run build" + }, + "keywords": [], + "license": "MIT", + "dependencies": {}, "devDependencies": { "babel": "^6.3.26", "babel-cli": "^6.4.5", @@ -52,21 +29,13 @@ "directories": { "test": "test" }, - "homepage": "https://github.com/tuxsudo/is-in-browser#readme", - "keywords": [], - "license": "MIT", - "main": "dist/index.js", - "module": "dist/module.js", - "name": "is-in-browser", "repository": { "type": "git", "url": "git+https://github.com/tuxsudo/is-in-browser.git" }, - "scripts": { - "build": "BABEL_ENV=cjs babel src -d dist && BABEL_ENV=module babel src/index.js -o dist/module.js && cpy src/index.d.ts dist", - "prepublish": "npm run build", - "test": "babel-tape-runner test/*.js | tap-spec" + "author": "Jared Anderson", + "bugs": { + "url": "https://github.com/tuxsudo/is-in-browser/issues" }, - "types": "dist/index.d.ts", - "version": "1.1.3" + "homepage": "https://github.com/tuxsudo/is-in-browser#readme" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/is-plain-object/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/is-plain-object/package.json index 08264ed0..dd604986 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/is-plain-object/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/is-plain-object/package.json @@ -1,60 +1,37 @@ { - "_args": [ - [ - "is-plain-object@2.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "is-plain-object", + "description": "Returns true if an object was created by the `Object` constructor.", + "version": "2.0.4", + "homepage": "https://github.com/jonschlinkert/is-plain-object", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Osman Nuri Okumuş (http://onokumus.com)", + "Steven Vachon (https://svachon.com)", + "(https://github.com/wtgtybhertgeghgtwtg)" ], - "_from": "is-plain-object@2.0.4", - "_id": "is-plain-object@2.0.4", - "_inBundle": false, - "_integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "_location": "/material-ui/is-plain-object", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-plain-object@2.0.4", - "name": "is-plain-object", - "escapedName": "is-plain-object", - "rawSpec": "2.0.4", - "saveSpec": null, - "fetchSpec": "2.0.4" - }, - "_requiredBy": [ - "/material-ui/theming" - ], - "_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "_spec": "2.0.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/is-plain-object", "bugs": { "url": "https://github.com/jonschlinkert/is-plain-object/issues" }, - "contributors": [ - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Osman Nuri Okumuş", - "url": "http://onokumus.com" - }, - { - "name": "Steven Vachon", - "url": "https://svachon.com" - }, - { - "url": "https://github.com/wtgtybhertgeghgtwtg" - } + "license": "MIT", + "files": [ + "index.d.ts", + "index.js" ], + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "browserify": "browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js", + "test_browser": "mocha-phantomjs test/browser.html", + "test_node": "mocha", + "test": "npm run test_node && npm run browserify && npm run test_browser" + }, "dependencies": { "isobject": "^3.0.1" }, - "description": "Returns true if an object was created by the `Object` constructor.", "devDependencies": { "browserify": "^14.4.0", "chai": "^4.0.2", @@ -64,14 +41,6 @@ "phantomjs": "^2.1.7", "uglify-js": "^3.0.24" }, - "engines": { - "node": ">=0.10.0" - }, - "files": [ - "index.d.ts", - "index.js" - ], - "homepage": "https://github.com/jonschlinkert/is-plain-object", "keywords": [ "check", "is", @@ -86,19 +55,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.js", - "name": "is-plain-object", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/is-plain-object.git" - }, - "scripts": { - "browserify": "browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js", - "test": "npm run test_node && npm run browserify && npm run test_browser", - "test_browser": "mocha-phantomjs test/browser.html", - "test_node": "mocha" - }, "types": "index.d.ts", "verb": { "toc": false, @@ -119,6 +75,5 @@ "lint": { "reflinks": true } - }, - "version": "2.0.4" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/is-stream/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/is-stream/package.json index beed30f4..0308918d 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/is-stream/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/is-stream/package.json @@ -1,53 +1,23 @@ { - "_args": [ - [ - "is-stream@1.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "is-stream@1.1.0", - "_id": "is-stream@1.1.0", - "_inBundle": false, - "_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "_location": "/material-ui/is-stream", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "is-stream@1.1.0", - "name": "is-stream", - "escapedName": "is-stream", - "rawSpec": "1.1.0", - "saveSpec": null, - "fetchSpec": "1.1.0" - }, - "_requiredBy": [ - "/material-ui/node-fetch" - ], - "_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "_spec": "1.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "is-stream", + "version": "1.1.0", + "description": "Check if something is a Node.js stream", + "license": "MIT", + "repository": "sindresorhus/is-stream", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, - "bugs": { - "url": "https://github.com/sindresorhus/is-stream/issues" - }, - "description": "Check if something is a Node.js stream", - "devDependencies": { - "ava": "*", - "tempfile": "^1.1.0", - "xo": "*" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "xo && ava" + }, "files": [ "index.js" ], - "homepage": "https://github.com/sindresorhus/is-stream#readme", "keywords": [ "stream", "type", @@ -60,14 +30,9 @@ "detect", "is" ], - "license": "MIT", - "name": "is-stream", - "repository": { - "type": "git", - "url": "git+https://github.com/sindresorhus/is-stream.git" - }, - "scripts": { - "test": "xo && ava" - }, - "version": "1.1.0" + "devDependencies": { + "ava": "*", + "tempfile": "^1.1.0", + "xo": "*" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/isobject/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/isobject/package.json index 75d8e1da..62aa8c1b 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/isobject/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/isobject/package.json @@ -1,74 +1,37 @@ { - "_args": [ - [ - "isobject@3.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] + "name": "isobject", + "description": "Returns true if the value is an object and not an array or null.", + "version": "3.0.1", + "homepage": "https://github.com/jonschlinkert/isobject", + "author": "Jon Schlinkert (https://github.com/jonschlinkert)", + "contributors": [ + "(https://github.com/LeSuisse)", + "Brian Woodward (https://twitter.com/doowb)", + "Jon Schlinkert (http://twitter.com/jonschlinkert)", + "Magnús Dæhlen (https://github.com/magnudae)", + "Tom MacWright (https://macwright.org)" ], - "_from": "isobject@3.0.1", - "_id": "isobject@3.0.1", - "_inBundle": false, - "_integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "_location": "/material-ui/isobject", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "isobject@3.0.1", - "name": "isobject", - "escapedName": "isobject", - "rawSpec": "3.0.1", - "saveSpec": null, - "fetchSpec": "3.0.1" - }, - "_requiredBy": [ - "/material-ui/is-plain-object" - ], - "_resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "_spec": "3.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert" - }, + "repository": "jonschlinkert/isobject", "bugs": { "url": "https://github.com/jonschlinkert/isobject/issues" }, - "contributors": [ - { - "url": "https://github.com/LeSuisse" - }, - { - "name": "Brian Woodward", - "url": "https://twitter.com/doowb" - }, - { - "name": "Jon Schlinkert", - "url": "http://twitter.com/jonschlinkert" - }, - { - "name": "Magnús Dæhlen", - "url": "https://github.com/magnudae" - }, - { - "name": "Tom MacWright", - "url": "https://macwright.org" - } - ], - "dependencies": {}, - "description": "Returns true if the value is an object and not an array or null.", - "devDependencies": { - "gulp-format-md": "^0.1.9", - "mocha": "^2.4.5" - }, - "engines": { - "node": ">=0.10.0" - }, + "license": "MIT", "files": [ "index.d.ts", "index.js" ], - "homepage": "https://github.com/jonschlinkert/isobject", + "main": "index.js", + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "mocha" + }, + "dependencies": {}, + "devDependencies": { + "gulp-format-md": "^0.1.9", + "mocha": "^2.4.5" + }, "keywords": [ "check", "is", @@ -83,16 +46,6 @@ "typeof", "value" ], - "license": "MIT", - "main": "index.js", - "name": "isobject", - "repository": { - "type": "git", - "url": "git+https://github.com/jonschlinkert/isobject.git" - }, - "scripts": { - "test": "mocha" - }, "types": "index.d.ts", "verb": { "related": { @@ -117,6 +70,5 @@ "reflinks": [ "verb" ] - }, - "version": "3.0.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/js-tokens/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/js-tokens/package.json index 1be5bca4..7f5bd780 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/js-tokens/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/js-tokens/package.json @@ -1,49 +1,9 @@ { - "_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": "/material-ui/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": [ - "/material-ui/loose-envify" - ], - "_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" - }, + "name": "js-tokens", + "version": "3.0.2", + "author": "Simon Lydell", + "license": "MIT", "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", @@ -51,17 +11,20 @@ "tokenize", "regex" ], - "license": "MIT", - "name": "js-tokens", - "repository": { - "type": "git", - "url": "git+https://github.com/lydell/js-tokens.git" - }, + "files": [ + "index.js" + ], + "repository": "lydell/js-tokens", "scripts": { - "build": "node generate-index.js", - "dev": "npm run build && npm test", + "test": "mocha --ui tdd", "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", - "test": "mocha --ui tdd" + "build": "node generate-index.js", + "dev": "npm run build && npm test" }, - "version": "3.0.2" + "devDependencies": { + "coffee-script": "~1.12.6", + "esprima": "^4.0.0", + "everything.js": "^1.0.3", + "mocha": "^3.4.2" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-camel-case/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-camel-case/package.json index 34fc5651..f85ccaf0 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-camel-case/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-camel-case/package.json @@ -1,40 +1,43 @@ { - "_args": [ - [ - "jss-camel-case@5.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-camel-case@5.0.0", - "_id": "jss-camel-case@5.0.0", - "_inBundle": false, - "_integrity": "sha512-vz11ip5EIlGuevtlUo9xIgiuD+it4Ebbb0+Y4o0A4oA8eOWY4aY7ihi/L7WvkQ54xnGOjUvLZ6nm2VYch2ufYg==", - "_location": "/material-ui/jss-camel-case", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-camel-case@5.0.0", - "name": "jss-camel-case", - "escapedName": "jss-camel-case", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-camel-case/-/jss-camel-case-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-camel-case", + "description": "JSS plugin that allows to write camel cased rule properties", + "version": "5.0.0", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-camel-case/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-camel-case.git" }, - "description": "JSS plugin that allows to write camel cased rule properties", + "keywords": [ + "cssinjs", + "css-in-js", + "css in js", + "jss", + "plugin", + "camel case" + ], + "engines": {}, + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-camel-case.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-camel-case.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublish": "npm run all" + }, + "license": "MIT", + "main": "lib/index.js", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -71,49 +74,14 @@ "rimraf": "^2.5.4", "webpack": "^1.13.1" }, - "engines": {}, - "homepage": "https://github.com/cssinjs/jss-camel-case#readme", - "keywords": [ - "cssinjs", - "css-in-js", - "css in js", - "jss", - "plugin", - "camel case" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "lib/index.js", - "name": "jss-camel-case", - "peerDependencies": { - "jss": "^8.0.0" - }, - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-camel-case.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-camel-case.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-camel-case.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublish": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "5.0.0" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-compose/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-compose/package.json index 7fa20b3d..0b4fa84e 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-compose/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-compose/package.json @@ -1,43 +1,43 @@ { - "_args": [ - [ - "jss-compose@4.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-compose@4.0.0", - "_id": "jss-compose@4.0.0", - "_inBundle": false, - "_integrity": "sha512-VnsEziD2Lwrfwp10wx39FNybRLW5+RX/E2qQAXPAMbS+nHc0Jf2dC6ZiCfn5FaBGrpzLfIZ9MalTJDx4CQoMAQ==", - "_location": "/material-ui/jss-compose", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-compose@4.0.0", - "name": "jss-compose", - "escapedName": "jss-compose", - "rawSpec": "4.0.0", - "saveSpec": null, - "fetchSpec": "4.0.0" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-compose/-/jss-compose-4.0.0.tgz", - "_spec": "4.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-compose", + "description": "JSS plugin for classes composition", + "version": "4.0.0", "author": { "name": "Pavel Davydov", "email": "typical000@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-compose/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-compose.git" }, - "dependencies": { - "warning": "^3.0.0" + "keywords": [ + "cssinnjs", + "css-in-js", + "css in js", + "jss", + "plugin", + "compose", + "composition" + ], + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-compose.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-compose.min.js", + "clean": "rimraf '{lib,dist,tests,tmp}/*'", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublishOnly": "npm run all" }, - "description": "JSS plugin for classes composition", + "license": "MIT", + "main": "./lib/index.js", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -68,49 +68,17 @@ "rimraf": "^2.5.4", "webpack": "^1.12.2" }, - "homepage": "https://github.com/cssinjs/jss-compose#readme", - "keywords": [ - "cssinnjs", - "css-in-js", - "css in js", - "jss", - "plugin", - "compose", - "composition" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "./lib/index.js", - "name": "jss-compose", - "peerDependencies": { - "jss": "^8.0.0" - }, "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-compose.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-compose.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-compose.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf '{lib,dist,tests,tmp}/*'", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublishOnly": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "4.0.0" + "dependencies": { + "warning": "^3.0.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-default-unit/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-default-unit/package.json index 7db5b1f1..8d6a1fc3 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-default-unit/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-default-unit/package.json @@ -1,40 +1,45 @@ { - "_args": [ - [ - "jss-default-unit@7.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-default-unit@7.0.0", - "_id": "jss-default-unit@7.0.0", - "_inBundle": false, - "_integrity": "sha512-U1Oi1h45vFRuISr+g1DQ3Oua7CkNKNs47fTdiT/lHkuBMc6BBDUbPv9IbPPhk9gsEaX45Iy9TX8CAuaHLPCfEA==", - "_location": "/material-ui/jss-default-unit", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-default-unit@7.0.0", - "name": "jss-default-unit", - "escapedName": "jss-default-unit", - "rawSpec": "7.0.0", - "saveSpec": null, - "fetchSpec": "7.0.0" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-default-unit/-/jss-default-unit-7.0.0.tgz", - "_spec": "7.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-default-unit", + "description": "JSS plugin that adds default custom unit to numeric values where needed", + "version": "7.0.0", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-default-unit/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-default-unit.git" }, - "description": "JSS plugin that adds default custom unit to numeric values where needed", + "keywords": [ + "cssinjs", + "css-in-js", + "css in js", + "jss", + "plugin", + "px", + "unit", + "default-unit" + ], + "engines": {}, + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-default-unit.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-default-unit.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublishOnly": "npm run all" + }, + "license": "MIT", + "main": "lib/index.js", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -72,51 +77,14 @@ "rimraf": "^2.5.4", "webpack": "^1.13.1" }, - "engines": {}, - "homepage": "https://github.com/cssinjs/jss-default-unit#readme", - "keywords": [ - "cssinjs", - "css-in-js", - "css in js", - "jss", - "plugin", - "px", - "unit", - "default-unit" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "lib/index.js", - "name": "jss-default-unit", - "peerDependencies": { - "jss": "^8.0.0" - }, - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-default-unit.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-default-unit.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-default-unit.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublishOnly": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "7.0.0" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-expand/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-expand/package.json index 7f957fd9..b57c8a64 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-expand/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-expand/package.json @@ -1,40 +1,43 @@ { - "_args": [ - [ - "jss-expand@4.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-expand@4.0.1", - "_id": "jss-expand@4.0.1", - "_inBundle": false, - "_integrity": "sha512-LRIMXXChAOgnhwSqYLJg8MS6dI98bf/sg52pAg04pbjOAtjfzyS0JTnQAiyk3PxqR3nKFR/Yv44ahpIpkdcxVA==", - "_location": "/material-ui/jss-expand", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-expand@4.0.1", - "name": "jss-expand", - "escapedName": "jss-expand", - "rawSpec": "4.0.1", - "saveSpec": null, - "fetchSpec": "4.0.1" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-expand/-/jss-expand-4.0.1.tgz", - "_spec": "4.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-expand", + "description": "JSS plugin that gives you a better syntax than CSS.", + "version": "4.0.1", "author": { "name": "Pavel Davydov", "email": "typical000@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-expand/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-expand.git" }, - "description": "JSS plugin that gives you a better syntax than CSS.", + "keywords": [ + "cssinjs", + "css-in-js", + "css in js", + "jss", + "plugin", + "expand" + ], + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-expand.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-expand.min.js", + "clean": "rimraf '{lib,dist,tests,tmp}/*'", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "bench": "cross-env NODE_ENV=test BENCHMARK=true karma start --single-run ", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublishOnly": "npm run all" + }, + "license": "MIT", + "main": "./lib/index.js", "devDependencies": { "babel-cli": "^6.14.0", "babel-core": "^6.14.0", @@ -70,49 +73,14 @@ "rimraf": "^2.5.4", "webpack": "^1.12.2" }, - "homepage": "https://github.com/cssinjs/jss-expand#readme", - "keywords": [ - "cssinjs", - "css-in-js", - "css in js", - "jss", - "plugin", - "expand" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "./lib/index.js", - "name": "jss-expand", - "peerDependencies": { - "jss": "^8.0.0" - }, - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-expand.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "bench": "cross-env NODE_ENV=test BENCHMARK=true karma start --single-run ", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-expand.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-expand.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf '{lib,dist,tests,tmp}/*'", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublishOnly": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "4.0.1" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-extend/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-extend/package.json index ffb8feea..f6b7e52d 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-extend/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-extend/package.json @@ -1,43 +1,42 @@ { - "_args": [ - [ - "jss-extend@5.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-extend@5.0.0", - "_id": "jss-extend@5.0.0", - "_inBundle": false, - "_integrity": "sha512-fUp+9KipbdmzSfTxNHoT3mrFnE7fYn7EyHg3LTUexfpWrwj5Afkwb3iCfYV7GYCpg9OKDsqc18atwjHvSPWWKg==", - "_location": "/material-ui/jss-extend", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-extend@5.0.0", - "name": "jss-extend", - "escapedName": "jss-extend", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-extend/-/jss-extend-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-extend", + "description": "JSS plugin that enables inheritance", + "version": "5.0.0", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-extend/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-extend.git" }, - "dependencies": { - "warning": "^3.0.0" + "keywords": [ + "jss", + "plugin", + "extend", + "css-in-js", + "cssinjs", + "css in js" + ], + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-extend.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-extend.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublishOnly": "npm run all" }, - "description": "JSS plugin that enables inheritance", + "license": "MIT", + "main": "./lib/index.js", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -79,48 +78,17 @@ "rimraf": "^2.5.4", "webpack": "^1.12.2" }, - "homepage": "https://github.com/cssinjs/jss-extend#readme", - "keywords": [ - "jss", - "plugin", - "extend", - "css-in-js", - "cssinjs", - "css in js" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "./lib/index.js", - "name": "jss-extend", - "peerDependencies": { - "jss": "^8.0.0" - }, "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-extend.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-extend.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-extend.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublishOnly": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "5.0.0" + "dependencies": { + "warning": "^3.0.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-global/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-global/package.json index b7d3307c..437b2eb3 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-global/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-global/package.json @@ -1,40 +1,50 @@ { - "_args": [ - [ - "jss-global@2.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-global@2.0.0", - "_id": "jss-global@2.0.0", - "_inBundle": false, - "_integrity": "sha512-/FSOMp4lF/vg47T/w8kKvL9tu7ka9am8N4izS63W81Qlay9hAq6xe9RxrPxygLpnn4KEb8LNbkKRoUv4SJfQsQ==", - "_location": "/material-ui/jss-global", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-global@2.0.0", - "name": "jss-global", - "escapedName": "jss-global", - "rawSpec": "2.0.0", - "saveSpec": null, - "fetchSpec": "2.0.0" + "name": "jss-global", + "version": "2.0.0", + "description": "Global styles for JSS", + "main": "lib/index.js", + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-global.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-global.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublishOnly": "npm run all" }, - "_requiredBy": [ - "/material-ui/jss-preset-default" + "repository": { + "type": "git", + "url": "https://github.com/cssinjs/jss-global.git" + }, + "keywords": [ + "cssinjs", + "css-in-js", + "css in js", + "jss", + "plugin", + "global", + "unscoped" ], - "_resolved": "https://registry.npmjs.org/jss-global/-/jss-global-2.0.0.tgz", - "_spec": "2.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, + "license": "MIT", "bugs": { "url": "https://github.com/cssinjs/jss/issues/new?title=[jss-global]" }, - "description": "Global styles for JSS", + "homepage": "https://github.com/cssinjs/jss-global", + "peerDependencies": { + "jss": "^8.0.0" + }, "devDependencies": { "babel-cli": "^6.10.1", "babel-core": "^6.9.1", @@ -69,49 +79,11 @@ "rimraf": "^2.5.4", "webpack": "^1.13.1" }, - "homepage": "https://github.com/cssinjs/jss-global", - "keywords": [ - "cssinjs", - "css-in-js", - "css in js", - "jss", - "plugin", - "global", - "unscoped" - ], - "license": "MIT", "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "lib/index.js", - "name": "jss-global", - "peerDependencies": { - "jss": "^8.0.0" - }, - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+https://github.com/cssinjs/jss-global.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-global.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-global.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublishOnly": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "2.0.0" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-props-sort/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-props-sort/package.json index 885cedc0..bf6ecac6 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-props-sort/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-props-sort/package.json @@ -1,40 +1,44 @@ { - "_args": [ - [ - "jss-props-sort@5.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-props-sort@5.0.0", - "_id": "jss-props-sort@5.0.0", - "_inBundle": false, - "_integrity": "sha512-xtoVE7BlcPaMN/dzypHPYJn+QiphLPB1skypAOp9zLkOozPbR/x0JVAFdZnd7zqmmjvg+Ma/txjSg0HN/eZsGA==", - "_location": "/material-ui/jss-props-sort", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-props-sort@5.0.0", - "name": "jss-props-sort", - "escapedName": "jss-props-sort", - "rawSpec": "5.0.0", - "saveSpec": null, - "fetchSpec": "5.0.0" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-props-sort/-/jss-props-sort-5.0.0.tgz", - "_spec": "5.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-props-sort", + "description": "JSS plugin that ensures style properties extend each other instead of override", + "version": "5.0.0", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-props-sort/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-props-sort.git" }, - "description": "JSS plugin that ensures style properties extend each other instead of override", + "keywords": [ + "cssinjs", + "css-in-js", + "css in js", + "jss", + "plugin", + "sort", + "props" + ], + "engines": {}, + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-props-sort.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-props-sort.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublish": "npm run all" + }, + "license": "MIT", + "main": "lib/index.js", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -70,50 +74,14 @@ "rimraf": "^2.5.4", "webpack": "^1.13.1" }, - "engines": {}, - "homepage": "https://github.com/cssinjs/jss-props-sort#readme", - "keywords": [ - "cssinjs", - "css-in-js", - "css in js", - "jss", - "plugin", - "sort", - "props" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "lib/index.js", - "name": "jss-props-sort", - "peerDependencies": { - "jss": "^8.0.0" - }, - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-props-sort.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-props-sort.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-props-sort.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublish": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "5.0.0" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-vendor-prefixer/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-vendor-prefixer/package.json index b3b82c37..d28534b8 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss-vendor-prefixer/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss-vendor-prefixer/package.json @@ -1,43 +1,45 @@ { - "_args": [ - [ - "jss-vendor-prefixer@6.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss-vendor-prefixer@6.0.0", - "_id": "jss-vendor-prefixer@6.0.0", - "_inBundle": false, - "_integrity": "sha512-leqW7B2QLXYsUNR3jsUZP3CkuOYcWXyfF8TSJc4XNxhVCNH7ztK5dcnF8nLoMnxT0w/ajloeJKcch2ty/viCAA==", - "_location": "/material-ui/jss-vendor-prefixer", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss-vendor-prefixer@6.0.0", - "name": "jss-vendor-prefixer", - "escapedName": "jss-vendor-prefixer", - "rawSpec": "6.0.0", - "saveSpec": null, - "fetchSpec": "6.0.0" - }, - "_requiredBy": [ - "/material-ui/jss-preset-default" - ], - "_resolved": "https://registry.npmjs.org/jss-vendor-prefixer/-/jss-vendor-prefixer-6.0.0.tgz", - "_spec": "6.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss-vendor-prefixer", + "description": "JSS plugin that handles vendor prefixes in the browser", + "version": "6.0.0", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss-vendor-prefixer/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss-vendor-prefixer.git" }, + "keywords": [ + "cssinjs", + "jss", + "plugin", + "vendor", + "prefixer" + ], + "engines": {}, + "scripts": { + "all": "npm run lint && npm run test && npm run build", + "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", + "build:lib": "babel src --out-dir lib", + "build:tests": "npm run build:tests:lib && npm run build:tests:local", + "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", + "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", + "build:dist": "npm run build:dist:max && npm run build:dist:min", + "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-vendor-prefixer.js", + "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-vendor-prefixer.min.js", + "clean": "rimraf {lib,dist,tests,tmp}/*", + "lint": "eslint ./src", + "lint:staged": "lint-staged", + "test": "cross-env NODE_ENV=test karma start --single-run ", + "test:watch": "cross-env NODE_ENV=test karma start", + "prepublish": "npm run all" + }, + "license": "MIT", "dependencies": { "css-vendor": "^0.3.8" }, - "description": "JSS plugin that handles vendor prefixes in the browser", + "main": "lib/index.js", "devDependencies": { "babel-cli": "^6.5.1", "babel-core": "^6.5.1", @@ -74,48 +76,14 @@ "rimraf": "^2.5.4", "webpack": "^1.13.1" }, - "engines": {}, - "homepage": "https://github.com/cssinjs/jss-vendor-prefixer#readme", - "keywords": [ - "cssinjs", - "jss", - "plugin", - "vendor", - "prefixer" - ], - "license": "MIT", + "peerDependencies": { + "jss": "^8.0.0" + }, "lint-staged": { "./src/*.js": [ "eslint", "git add" ] }, - "main": "lib/index.js", - "name": "jss-vendor-prefixer", - "peerDependencies": { - "jss": "^8.0.0" - }, - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss-vendor-prefixer.git" - }, - "scripts": { - "all": "npm run lint && npm run test && npm run build", - "build": "npm run clean && npm run build:lib && npm run build:tests && npm run build:dist", - "build:dist": "npm run build:dist:max && npm run build:dist:min", - "build:dist:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-vendor-prefixer.js", - "build:dist:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-vendor-prefixer.min.js", - "build:lib": "babel src --out-dir lib", - "build:tests": "npm run build:tests:lib && npm run build:tests:local", - "build:tests:lib": "cross-env NODE_ENV=test babel src --out-dir tests", - "build:tests:local": "cross-env NODE_ENV=test webpack src/index.test.js tmp/tests.js", - "clean": "rimraf {lib,dist,tests,tmp}/*", - "lint": "eslint ./src", - "lint:staged": "lint-staged", - "prepublish": "npm run all", - "test": "cross-env NODE_ENV=test karma start --single-run ", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "6.0.0" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/jss/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/jss/package.json index 29da62a2..d4b2ded3 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/jss/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/jss/package.json @@ -1,45 +1,31 @@ { - "_args": [ - [ - "jss@8.1.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "jss@8.1.0", - "_id": "jss@8.1.0", - "_inBundle": false, - "_integrity": "sha512-NZ4CNAoPaPlM2rqHxPG5uGQbQEFZ9n1PITn0+wGIdAk2ZtA/F6el0SphLHf8So1Sx6N34hnVFFIuc32/hdsEzw==", - "_location": "/material-ui/jss", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "jss@8.1.0", - "name": "jss", - "escapedName": "jss", - "rawSpec": "8.1.0", - "saveSpec": null, - "fetchSpec": "8.1.0" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/react-jss" - ], - "_resolved": "https://registry.npmjs.org/jss/-/jss-8.1.0.tgz", - "_spec": "8.1.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "jss", + "description": "A lib for generating Style Sheets with JavaScript.", + "version": "8.1.0", "author": { "name": "Oleg Slobodskoi", "email": "oleg008@gmail.com" }, - "bugs": { - "url": "https://github.com/cssinjs/jss/issues" + "repository": { + "type": "git", + "url": "git@github.com:cssinjs/jss.git" }, - "dependencies": { - "is-in-browser": "^1.0.2", - "warning": "^3.0.0" + "keywords": [ + "jss", + "style", + "sheet", + "stylesheet", + "css", + "components", + "composable", + "css in js", + "css-in-js" + ], + "license": "MIT", + "main": "./lib/index.js", + "engines": { + "node": ">=4" }, - "description": "A lib for generating Style Sheets with JavaScript.", "devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.20.0", @@ -98,8 +84,29 @@ "size-limit": "^0.2.0", "webpack": "^2.3.3" }, - "engines": { - "node": ">=4" + "scripts": { + "all": "npm run lint && npm run flow && npm run test && npm run build && npm run size", + "build": "npm run clean && npm run build:lib && npm run build:max && npm run build:min && npm run build:tests", + "build:lib": "babel src --out-dir lib && npm run flow:copy-src", + "build:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss.js", + "build:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss.min.js", + "build:tests": "cross-env NODE_ENV=test webpack tests/index.js tmp/tests.js", + "clean": "rimraf '{lib,dist,tmp}/*'", + "flow": "flow --show-all-errors", + "flow:copy-src": "flow-copy-source -i './src/**' src lib", + "lint": "eslint ./src ./tests ./benchmark ./*.js && npm run flow", + "lint:staged": "lint-staged && npm run flow", + "prepublishOnly": "npm run all", + "test": "cross-env NODE_ENV=test karma start --single-run", + "test:watch": "cross-env NODE_ENV=test karma start", + "posttest": "[ -z \"$TRAVIS\" ] || codecov", + "codecov": "codecov", + "bench": "cross-env BENCHMARK=true karma start --single-run", + "size": "size-limit 5.8KB dist/jss.js" + }, + "dependencies": { + "is-in-browser": "^1.0.2", + "warning": "^3.0.0" }, "files": [ "dist", @@ -109,51 +116,11 @@ "changelog.md", "LICENSE" ], - "homepage": "https://github.com/cssinjs/jss#readme", - "keywords": [ - "jss", - "style", - "sheet", - "stylesheet", - "css", - "components", - "composable", - "css in js", - "css-in-js" - ], - "license": "MIT", "lint-staged": { "./src ./tests ./benchmark ./*.js": [ "eslint", "git add" ] }, - "main": "./lib/index.js", - "name": "jss", - "pre-commit": "lint:staged", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/cssinjs/jss.git" - }, - "scripts": { - "all": "npm run lint && npm run flow && npm run test && npm run build && npm run size", - "bench": "cross-env BENCHMARK=true karma start --single-run", - "build": "npm run clean && npm run build:lib && npm run build:max && npm run build:min && npm run build:tests", - "build:lib": "babel src --out-dir lib && npm run flow:copy-src", - "build:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss.js", - "build:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss.min.js", - "build:tests": "cross-env NODE_ENV=test webpack tests/index.js tmp/tests.js", - "clean": "rimraf '{lib,dist,tmp}/*'", - "codecov": "codecov", - "flow": "flow --show-all-errors", - "flow:copy-src": "flow-copy-source -i './src/**' src lib", - "lint": "eslint ./src ./tests ./benchmark ./*.js && npm run flow", - "lint:staged": "lint-staged && npm run flow", - "posttest": "[ -z \"$TRAVIS\" ] || codecov", - "prepublishOnly": "npm run all", - "size": "size-limit 5.8KB dist/jss.js", - "test": "cross-env NODE_ENV=test karma start --single-run", - "test:watch": "cross-env NODE_ENV=test karma start" - }, - "version": "8.1.0" + "pre-commit": "lint:staged" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/keycode/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/keycode/package.json index 5f8d6f27..e2389caa 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/keycode/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/keycode/package.json @@ -1,49 +1,28 @@ { - "_args": [ - [ - "keycode@2.1.9", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "keycode@2.1.9", - "_id": "keycode@2.1.9", - "_inBundle": false, - "_integrity": "sha1-lkojxU5IiUBbSGGlyfBIDUUUHfo=", - "_location": "/material-ui/keycode", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "keycode@2.1.9", - "name": "keycode", - "escapedName": "keycode", - "rawSpec": "2.1.9", - "saveSpec": null, - "fetchSpec": "2.1.9" - }, - "_requiredBy": [ - "/material-ui" - ], - "_resolved": "https://registry.npmjs.org/keycode/-/keycode-2.1.9.tgz", - "_spec": "2.1.9", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Tim Oxley", - "email": "secoif@gmail.com" - }, - "bugs": { - "url": "https://github.com/timoxley/keycode/issues" - }, - "dependencies": {}, + "name": "keycode", "description": "Convert between keyboard keycodes and keynames and vice versa.", - "devDependencies": { - "mocha": "^3.0.2" - }, + "version": "2.1.9", + "main": "index.js", "directories": { "example": "examples", "test": "test" }, + "scripts": { + "test": "mocha test/keycode.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/timoxley/keycode.git" + }, + "license": "MIT", + "bugs": { + "url": "https://github.com/timoxley/keycode/issues" + }, + "devDependencies": { + "mocha": "^3.0.2" + }, "homepage": "https://github.com/timoxley/keycode", + "dependencies": {}, "keywords": [ "keyboard", "keycode", @@ -55,16 +34,6 @@ "keyname", "keypress" ], - "license": "MIT", - "main": "index.js", - "name": "keycode", - "repository": { - "type": "git", - "url": "git://github.com/timoxley/keycode.git" - }, - "scripts": { - "test": "mocha test/keycode.js" - }, - "typings": "./keycode.d.ts", - "version": "2.1.9" + "author": "Tim Oxley ", + "typings": "./keycode.d.ts" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/lodash/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/lodash/package.json index 72abd9af..028960d1 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/lodash/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/lodash/package.json @@ -1,69 +1,17 @@ { - "_args": [ - [ - "lodash@4.17.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "lodash@4.17.4", - "_id": "lodash@4.17.4", - "_inBundle": false, - "_integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", - "_location": "/material-ui/lodash", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "lodash@4.17.4", - "name": "lodash", - "escapedName": "lodash", - "rawSpec": "4.17.4", - "saveSpec": null, - "fetchSpec": "4.17.4" - }, - "_requiredBy": [ - "/material-ui" - ], - "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "_spec": "4.17.4", - "_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": "Mathias Bynens", - "email": "mathias@qiwi.be", - "url": "https://mathiasbynens.be/" - } - ], + "name": "lodash", + "version": "4.17.4", "description": "Lodash modular utilities.", + "keywords": "modules, stdlib, util", "homepage": "https://lodash.com/", + "repository": "lodash/lodash", "icon": "https://lodash.com/icon.svg", - "keywords": [ - "modules", - "stdlib", - "util" - ], "license": "MIT", "main": "lodash.js", - "name": "lodash", - "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.17.4" + "author": "John-David Dalton (http://allyoucanleet.com/)", + "contributors": [ + "John-David Dalton (http://allyoucanleet.com/)", + "Mathias Bynens (https://mathiasbynens.be/)" + ], + "scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/loose-envify/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/loose-envify/package.json index 14b53c87..7952efa5 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/loose-envify/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/loose-envify/package.json @@ -1,55 +1,7 @@ { - "_args": [ - [ - "loose-envify@1.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "loose-envify@1.3.1", - "_id": "loose-envify@1.3.1", - "_inBundle": false, - "_integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", - "_location": "/material-ui/loose-envify", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "loose-envify@1.3.1", - "name": "loose-envify", - "escapedName": "loose-envify", - "rawSpec": "1.3.1", - "saveSpec": null, - "fetchSpec": "1.3.1" - }, - "_requiredBy": [ - "/material-ui/fbjs", - "/material-ui/prop-types", - "/material-ui/react-transition-group", - "/material-ui/warning" - ], - "_resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "_spec": "1.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Andres Suarez", - "email": "zertosh@gmail.com" - }, - "bin": { - "loose-envify": "cli.js" - }, - "bugs": { - "url": "https://github.com/zertosh/loose-envify/issues" - }, - "dependencies": { - "js-tokens": "^3.0.0" - }, + "name": "loose-envify", + "version": "1.3.1", "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", - "devDependencies": { - "browserify": "^13.1.1", - "envify": "^3.4.0", - "tap": "^8.0.0" - }, - "homepage": "https://github.com/zertosh/loose-envify", "keywords": [ "environment", "variables", @@ -59,9 +11,13 @@ "source", "configuration" ], + "homepage": "https://github.com/zertosh/loose-envify", "license": "MIT", + "author": "Andres Suarez ", "main": "index.js", - "name": "loose-envify", + "bin": { + "loose-envify": "cli.js" + }, "repository": { "type": "git", "url": "git://github.com/zertosh/loose-envify.git" @@ -69,5 +25,12 @@ "scripts": { "test": "tap test/*.js" }, - "version": "1.3.1" + "dependencies": { + "js-tokens": "^3.0.0" + }, + "devDependencies": { + "browserify": "^13.1.1", + "envify": "^3.4.0", + "tap": "^8.0.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/min-document/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/min-document/package.json index e4c1641b..80749020 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/min-document/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/min-document/package.json @@ -1,76 +1,43 @@ { - "_args": [ - [ - "min-document@2.19.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "min-document@2.19.0", - "_id": "min-document@2.19.0", - "_inBundle": false, - "_integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", - "_location": "/material-ui/min-document", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "min-document@2.19.0", - "name": "min-document", - "escapedName": "min-document", - "rawSpec": "2.19.0", - "saveSpec": null, - "fetchSpec": "2.19.0" - }, - "_requiredBy": [ - "/material-ui/global" - ], - "_resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "_spec": "2.19.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Raynos", - "email": "raynos2@gmail.com" - }, - "bugs": { - "url": "https://github.com/Raynos/min-document/issues", - "email": "raynos2@gmail.com" - }, + "name": "min-document", + "version": "2.19.0", + "description": "A minimal DOM implementation", + "keywords": [], + "author": "Raynos ", + "repository": "git://github.com/Raynos/min-document.git", + "main": "index", + "homepage": "https://github.com/Raynos/min-document", "contributors": [ { "name": "Raynos" } ], + "bugs": { + "url": "https://github.com/Raynos/min-document/issues", + "email": "raynos2@gmail.com" + }, "dependencies": { "dom-walk": "^0.1.0" }, - "description": "A minimal DOM implementation", "devDependencies": { - "run-browser": "git://github.com/Raynos/run-browser.git", + "run-browser": "git://github.com/Raynos/run-browser", "tap-dot": "^0.2.1", "tap-spec": "^0.1.8", "tape": "^2.12.3" }, - "homepage": "https://github.com/Raynos/min-document", - "keywords": [], "licenses": [ { "type": "MIT", "url": "http://github.com/Raynos/min-document/raw/master/LICENSE" } ], - "main": "index", - "name": "min-document", - "repository": { - "type": "git", - "url": "git://github.com/Raynos/min-document.git" - }, "scripts": { - "browser": "run-browser test/index.js", - "cover": "istanbul cover --report none --print detail ./test/index.js", - "dot": "node ./test/index.js | tap-dot", - "phantom": "run-browser test/index.js -b | tap-spec", "test": "node ./test/index.js | tap-spec", - "view-cover": "istanbul report html && google-chrome ./coverage/index.html" + "dot": "node ./test/index.js | tap-dot", + "cover": "istanbul cover --report none --print detail ./test/index.js", + "view-cover": "istanbul report html && google-chrome ./coverage/index.html", + "browser": "run-browser test/index.js", + "phantom": "run-browser test/index.js -b | tap-spec" }, "testling": { "files": "test/index.js", @@ -87,6 +54,5 @@ "iphone/6.0..latest", "android-browser/4.2..latest" ] - }, - "version": "2.19.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/node-fetch/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/node-fetch/package.json index 357bbc62..6bf8e40e 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/node-fetch/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/node-fetch/package.json @@ -1,43 +1,28 @@ { - "_args": [ - [ - "node-fetch@1.7.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "node-fetch@1.7.3", - "_id": "node-fetch@1.7.3", - "_inBundle": false, - "_integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "_location": "/material-ui/node-fetch", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "node-fetch@1.7.3", - "name": "node-fetch", - "escapedName": "node-fetch", - "rawSpec": "1.7.3", - "saveSpec": null, - "fetchSpec": "1.7.3" + "name": "node-fetch", + "version": "1.7.3", + "description": "A light-weight module that brings window.fetch to node.js and io.js", + "main": "index.js", + "scripts": { + "test": "mocha test/test.js", + "report": "istanbul cover _mocha -- -R spec test/test.js", + "coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && codecov" }, - "_requiredBy": [ - "/material-ui/isomorphic-fetch" - ], - "_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "_spec": "1.7.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "David Frank" + "repository": { + "type": "git", + "url": "https://github.com/bitinn/node-fetch.git" }, + "keywords": [ + "fetch", + "http", + "promise" + ], + "author": "David Frank", + "license": "MIT", "bugs": { "url": "https://github.com/bitinn/node-fetch/issues" }, - "dependencies": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" - }, - "description": "A light-weight module that brings window.fetch to node.js and io.js", + "homepage": "https://github.com/bitinn/node-fetch", "devDependencies": { "bluebird": "^3.3.4", "chai": "^3.5.0", @@ -50,23 +35,8 @@ "promise": "^7.1.1", "resumer": "0.0.0" }, - "homepage": "https://github.com/bitinn/node-fetch", - "keywords": [ - "fetch", - "http", - "promise" - ], - "license": "MIT", - "main": "index.js", - "name": "node-fetch", - "repository": { - "type": "git", - "url": "git+https://github.com/bitinn/node-fetch.git" - }, - "scripts": { - "coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && codecov", - "report": "istanbul cover _mocha -- -R spec test/test.js", - "test": "mocha test/test.js" - }, - "version": "1.7.3" + "dependencies": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/normalize-scroll-left/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/normalize-scroll-left/package.json index 016007f0..1643ec0b 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/normalize-scroll-left/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/normalize-scroll-left/package.json @@ -1,40 +1,36 @@ { - "_args": [ - [ - "normalize-scroll-left@0.1.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "normalize-scroll-left@0.1.2", - "_id": "normalize-scroll-left@0.1.2", - "_inBundle": false, - "_integrity": "sha512-F9YMRls0zCF6BFIE2YnXDRpHPpfd91nOIaNdDgrx5YMoPLo8Wqj+6jNXHQsYBavJeXP4ww8HCt0xQAKc5qk2Fg==", - "_location": "/material-ui/normalize-scroll-left", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "normalize-scroll-left@0.1.2", - "name": "normalize-scroll-left", - "escapedName": "normalize-scroll-left", - "rawSpec": "0.1.2", - "saveSpec": null, - "fetchSpec": "0.1.2" - }, - "_requiredBy": [ - "/material-ui" - ], - "_resolved": "https://registry.npmjs.org/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz", - "_spec": "0.1.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "normalize-scroll-left", + "description": "Utility library to determine and normalize Element.scrollLeft behavior", + "version": "0.1.2", "author": { "name": "Ali Taheri Moghaddar", "email": "ali.taheri.m@gmail.com" }, - "bugs": { - "url": "https://github.com/alitaheri/normalize-scroll-left/issues" + "files": [ + "lib" + ], + "repository": { + "type": "git", + "url": "git@github.com:alitaheri/normalize-scroll-left.git" }, - "description": "Utility library to determine and normalize Element.scrollLeft behavior", + "keywords": [ + "rtl", + "dom", + "scroll-left", + "scrollLeft", + "normalize", + "browser", + "element" + ], + "scripts": { + "build": "rimraf lib && tsc", + "prepublishOnly": "npm run build", + "lint": "tslint -e \"node_modules/**\" \"src/**/*.ts\"", + "test": "mocha --compilers ts:ts-node/register \"src/**/*.spec.ts\"" + }, + "license": "MIT", + "main": "lib/main.js", + "types": "lib/main.d.ts", "devDependencies": { "@types/chai": "^4.0.4", "@types/mocha": "^2.2.43", @@ -48,33 +44,5 @@ "tslint-eslint-rules": "^4.1.1", "tslint-microsoft-contrib": "^5.0.1", "typescript": "^2.5.3" - }, - "files": [ - "lib" - ], - "homepage": "https://github.com/alitaheri/normalize-scroll-left#readme", - "keywords": [ - "rtl", - "dom", - "scroll-left", - "scrollLeft", - "normalize", - "browser", - "element" - ], - "license": "MIT", - "main": "lib/main.js", - "name": "normalize-scroll-left", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/alitaheri/normalize-scroll-left.git" - }, - "scripts": { - "build": "rimraf lib && tsc", - "lint": "tslint -e \"node_modules/**\" \"src/**/*.ts\"", - "prepublishOnly": "npm run build", - "test": "mocha --compilers ts:ts-node/register \"src/**/*.spec.ts\"" - }, - "types": "lib/main.d.ts", - "version": "0.1.2" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/object-assign/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/object-assign/package.json index b70f6fcb..503eb1e6 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/object-assign/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/object-assign/package.json @@ -1,55 +1,24 @@ { - "_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": "/material-ui/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": [ - "/material-ui/fbjs", - "/material-ui/prop-types" - ], - "_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", + "name": "object-assign", + "version": "4.1.1", + "description": "ES2015 `Object.assign()` ponyfill", + "license": "MIT", + "repository": "sindresorhus/object-assign", "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", @@ -64,15 +33,10 @@ "shim", "browser" ], - "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" + "devDependencies": { + "ava": "^0.16.0", + "lodash": "^4.16.4", + "matcha": "^0.7.0", + "xo": "^0.16.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/popper.js/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/popper.js/package.json index fd081d6a..aa684503 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/popper.js/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/popper.js/package.json @@ -1,55 +1,20 @@ { - "_args": [ - [ - "popper.js@1.12.7", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "popper.js@1.12.7", - "_id": "popper.js@1.12.7", - "_inBundle": false, - "_integrity": "sha1-uNIlYY5dleJ6wrWR3r9YGFepwW0=", - "_location": "/material-ui/popper.js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "popper.js@1.12.7", - "name": "popper.js", - "escapedName": "popper.js", - "rawSpec": "1.12.7", - "saveSpec": null, - "fetchSpec": "1.12.7" + "name": "popper.js", + "version": "1.12.7", + "description": "A kickass library to manage your poppers", + "homepage": "https://popper.js.org", + "repository": { + "type": "git", + "url": "git+https://github.com/FezVrasta/popper.js.git" }, - "_requiredBy": [ - "/material-ui/react-popper" + "author": "Federico Zivolo ", + "contributors": [ + "Contributors (https://github.com/FezVrasta/popper.js/graphs/contributors)" ], - "_resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.12.7.tgz", - "_spec": "1.12.7", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Federico Zivolo", - "email": "federico.zivolo@gmail.com" - }, + "license": "MIT", "bugs": { "url": "https://github.com/FezVrasta/popper.js/issues" }, - "contributors": [ - { - "name": "Contributors", - "url": "https://github.com/FezVrasta/popper.js/graphs/contributors" - } - ], - "description": "A kickass library to manage your poppers", - "devDependencies": { - "@popperjs/bundle": "^1.0.2", - "@popperjs/eslint-config-popper": "^1.0.0", - "@popperjs/test": "^1.0.0", - "@popperjs/test-utils": "^1.0.0", - "eslint": "^4.1.1", - "nuget-publish": "^1.0.3" - }, - "homepage": "https://popper.js.org", "keywords": [ "popperjs", "component", @@ -59,28 +24,29 @@ "position", "attached" ], - "license": "MIT", "main": "dist/umd/popper.js", "module": "dist/esm/popper.js", - "name": "popper.js", - "repository": { - "type": "git", - "url": "git+https://github.com/FezVrasta/popper.js.git" + "types": "index.d.ts", + "scripts": { + "prepare": "yarn build", + "postpublish": "nuget-publish && ./bower-publish.sh", + "prebuild": "yarn lint", + "pretest": "yarn lint", + "build": "node bundle.js", + "lint": "eslint .", + "test": "popper-karma", + "test:dev": "BROWSERS=Chrome NODE_ENV=development yarn test", + "coverage": "COVERAGE=true yarn test" + }, + "devDependencies": { + "@popperjs/bundle": "^1.0.2", + "@popperjs/eslint-config-popper": "^1.0.0", + "@popperjs/test": "^1.0.0", + "@popperjs/test-utils": "^1.0.0", + "eslint": "^4.1.1", + "nuget-publish": "^1.0.3" }, "resolutions": { "micromatch": "^3.0.3" - }, - "scripts": { - "build": "node bundle.js", - "coverage": "COVERAGE=true yarn test", - "lint": "eslint .", - "postpublish": "nuget-publish && ./bower-publish.sh", - "prebuild": "yarn lint", - "prepare": "yarn build", - "pretest": "yarn lint", - "test": "popper-karma", - "test:dev": "BROWSERS=Chrome NODE_ENV=development yarn test" - }, - "types": "index.d.ts", - "version": "1.12.7" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/process/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/process/package.json index c51c5d68..a0eb7744 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/process/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/process/package.json @@ -1,53 +1,18 @@ { - "_args": [ - [ - "process@0.5.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "process@0.5.2", - "_id": "process@0.5.2", - "_inBundle": false, - "_integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=", - "_location": "/material-ui/process", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "process@0.5.2", - "name": "process", - "escapedName": "process", - "rawSpec": "0.5.2", - "saveSpec": null, - "fetchSpec": "0.5.2" - }, - "_requiredBy": [ - "/material-ui/global" - ], - "_resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", - "_spec": "0.5.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Roman Shtylman", - "email": "shtylman@gmail.com" - }, - "browser": "./browser.js", - "bugs": { - "url": "https://github.com/shtylman/node-process/issues" - }, + "author": "Roman Shtylman ", + "name": "process", "description": "process information for node.js and browsers", - "engines": { - "node": ">= 0.6.0" - }, - "homepage": "https://github.com/shtylman/node-process#readme", "keywords": [ "process" ], - "main": "./index.js", - "name": "process", + "version": "0.5.2", "repository": { "type": "git", "url": "git://github.com/shtylman/node-process.git" }, - "version": "0.5.2" + "browser": "./browser.js", + "main": "./index.js", + "engines": { + "node": ">= 0.6.0" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/promise/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/promise/package.json index 3da4dc89..6f605ea9 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/promise/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/promise/package.json @@ -1,42 +1,26 @@ { - "_args": [ - [ - "promise@7.3.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "promise@7.3.1", - "_id": "promise@7.3.1", - "_inBundle": false, - "_integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "_location": "/material-ui/promise", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "promise@7.3.1", - "name": "promise", - "escapedName": "promise", - "rawSpec": "7.3.1", - "saveSpec": null, - "fetchSpec": "7.3.1" - }, - "_requiredBy": [ - "/material-ui/fbjs" - ], - "_resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "_spec": "7.3.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "ForbesLindesay" - }, - "bugs": { - "url": "https://github.com/then/promise/issues" - }, - "dependencies": { - "asap": "~2.0.3" - }, + "name": "promise", + "version": "7.3.1", "description": "Bare bones Promises/A+ implementation", + "main": "index.js", + "scripts": { + "prepublish": "node build", + "pretest": "node build", + "pretest-resolve": "node build", + "pretest-extensions": "node build", + "pretest-memory-leak": "node build", + "test": "mocha --bail --timeout 200 --slow 99999 -R dot && npm run test-memory-leak", + "test-resolve": "mocha test/resolver-tests.js --timeout 200 --slow 999999", + "test-extensions": "mocha test/extensions-tests.js --timeout 200 --slow 999999", + "test-memory-leak": "node --expose-gc test/memory-leak.js", + "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --bail --timeout 200 --slow 99999 -R dot" + }, + "repository": { + "type": "git", + "url": "https://github.com/then/promise.git" + }, + "author": "ForbesLindesay", + "license": "MIT", "devDependencies": { "acorn": "^1.0.1", "better-assert": "*", @@ -45,25 +29,7 @@ "promises-aplus-tests": "*", "rimraf": "^2.3.2" }, - "homepage": "https://github.com/then/promise#readme", - "license": "MIT", - "main": "index.js", - "name": "promise", - "repository": { - "type": "git", - "url": "git+https://github.com/then/promise.git" - }, - "scripts": { - "coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --bail --timeout 200 --slow 99999 -R dot", - "prepublish": "node build", - "pretest": "node build", - "pretest-extensions": "node build", - "pretest-memory-leak": "node build", - "pretest-resolve": "node build", - "test": "mocha --bail --timeout 200 --slow 99999 -R dot && npm run test-memory-leak", - "test-extensions": "mocha test/extensions-tests.js --timeout 200 --slow 999999", - "test-memory-leak": "node --expose-gc test/memory-leak.js", - "test-resolve": "mocha test/resolver-tests.js --timeout 200 --slow 999999" - }, - "version": "7.3.1" -} + "dependencies": { + "asap": "~2.0.3" + } +} \ No newline at end of file diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/rafl/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/rafl/package.json index f61870fa..c1afc4f8 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/rafl/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/rafl/package.json @@ -1,57 +1,18 @@ { - "_args": [ - [ - "rafl@1.2.2", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "rafl@1.2.2", - "_id": "rafl@1.2.2", - "_inBundle": false, - "_integrity": "sha1-/pMPdYIRAg1H44gV9Rlqi+QVB0A=", - "_location": "/material-ui/rafl", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "rafl@1.2.2", - "name": "rafl", - "escapedName": "rafl", - "rawSpec": "1.2.2", - "saveSpec": null, - "fetchSpec": "1.2.2" - }, - "_requiredBy": [ - "/material-ui/scroll" - ], - "_resolved": "https://registry.npmjs.org/rafl/-/rafl-1.2.2.tgz", - "_spec": "1.2.2", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Michael Rhodes" - }, - "bugs": { - "url": "https://github.com/michaelrhodes/raf/issues" - }, - "dependencies": { - "global": "~4.3.0" - }, + "name": "rafl", "description": "request animation frame", - "devDependencies": { - "tape": "~4.5.1" - }, - "homepage": "https://github.com/michaelrhodes/raf#readme", + "version": "1.2.2", "keywords": [ "animate", "requestAnimationFrame", "performance" ], - "license": "MIT", "main": "index.js", - "name": "rafl", - "repository": { - "type": "git", - "url": "git+https://github.com/michaelrhodes/raf.git" + "dependencies": { + "global": "~4.3.0" + }, + "devDependencies": { + "tape": "~4.5.1" }, "scripts": { "test": "tape test.js" @@ -59,5 +20,10 @@ "testling": { "files": "test.js" }, - "version": "1.2.2" + "repository": { + "type": "git", + "url": "git+https://github.com/michaelrhodes/raf.git" + }, + "author": "Michael Rhodes", + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/react-flow-types/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/react-flow-types/package.json index 78ef670c..b3365946 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/react-flow-types/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/react-flow-types/package.json @@ -1,48 +1,17 @@ { - "_args": [ - [ - "react-flow-types@0.2.0-beta.3", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "react-flow-types@0.2.0-beta.3", - "_id": "react-flow-types@0.2.0-beta.3", - "_inBundle": false, - "_integrity": "sha512-wrzQ4TJaRAqNA3hFxj23QnnuFfvb3t3J1aXouWX95DwyUfo2CFpmaB+dP7jpwXF0fsv6awHqsxdSnjRVLTfTiA==", - "_location": "/material-ui/react-flow-types", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "react-flow-types@0.2.0-beta.3", - "name": "react-flow-types", - "escapedName": "react-flow-types", - "rawSpec": "0.2.0-beta.3", - "saveSpec": null, - "fetchSpec": "0.2.0-beta.3" - }, - "_requiredBy": [ - "/material-ui" - ], - "_resolved": "https://registry.npmjs.org/react-flow-types/-/react-flow-types-0.2.0-beta.3.tgz", - "_spec": "0.2.0-beta.3", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Aria Minaei", - "url": "aria.minaei@gmail.com" - }, + "name": "react-flow-types", + "version": "0.2.0-beta.3", "description": "A small collection of flow type definitions for working with React components", + "main": "index.js", + "scripts": { + "test": "flow" + }, + "keywords": [], + "author": "Aria Minaei (aria.minaei@gmail.com)", + "license": "MIT", "devDependencies": { "flow-bin": "^0.57.3", "react": "^15.4.2", "react-dom": "^15.4.2" - }, - "keywords": [], - "license": "MIT", - "main": "index.js", - "name": "react-flow-types", - "scripts": { - "test": "flow" - }, - "version": "0.2.0-beta.3" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/react-jss/node_modules/hoist-non-react-statics/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/react-jss/node_modules/hoist-non-react-statics/package.json index 54affb12..b516a84b 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/react-jss/node_modules/hoist-non-react-statics/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/react-jss/node_modules/hoist-non-react-statics/package.json @@ -1,40 +1,24 @@ { - "_args": [ - [ - "hoist-non-react-statics@1.2.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "hoist-non-react-statics@1.2.0", - "_id": "hoist-non-react-statics@1.2.0", - "_inBundle": false, - "_integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=", - "_location": "/material-ui/react-jss/hoist-non-react-statics", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "hoist-non-react-statics@1.2.0", - "name": "hoist-non-react-statics", - "escapedName": "hoist-non-react-statics", - "rawSpec": "1.2.0", - "saveSpec": null, - "fetchSpec": "1.2.0" - }, - "_requiredBy": [ - "/material-ui/react-jss" - ], - "_resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz", - "_spec": "1.2.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Michael Ridgway", - "email": "mridgway@yahoo-inc.com" - }, - "bugs": { - "url": "https://github.com/mridgway/hoist-non-react-statics/issues" - }, + "name": "hoist-non-react-statics", + "version": "1.2.0", "description": "Copies non-react specific statics from a child component to a parent component", + "main": "index.js", + "repository": { + "type": "git", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + }, + "scripts": { + "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", + "lint": "eslint ./index.js", + "test": "mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec" + }, + "author": "Michael Ridgway ", + "licenses": [ + { + "type": "BSD", + "url": "https://github.com/mridgway/hoist-non-react-statics/blob/master/LICENSE.md" + } + ], "devDependencies": { "babel": "^5.0.7", "babel-eslint": "^3.0.1", @@ -46,26 +30,7 @@ "pre-commit": "^1.0.7", "react": "^15.0.0" }, - "homepage": "https://github.com/mridgway/hoist-non-react-statics#readme", "keywords": [ "react" - ], - "licenses": [ - { - "type": "BSD", - "url": "https://github.com/mridgway/hoist-non-react-statics/blob/master/LICENSE.md" - } - ], - "main": "index.js", - "name": "hoist-non-react-statics", - "repository": { - "type": "git", - "url": "git://github.com/mridgway/hoist-non-react-statics.git" - }, - "scripts": { - "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", - "lint": "eslint ./index.js", - "test": "mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec" - }, - "version": "1.2.0" + ] } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/regenerator-runtime/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/regenerator-runtime/package.json index 77f22fb6..7dcf6c37 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/regenerator-runtime/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/regenerator-runtime/package.json @@ -1,49 +1,18 @@ { - "_args": [ - [ - "regenerator-runtime@0.11.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "regenerator-runtime@0.11.0", - "_id": "regenerator-runtime@0.11.0", - "_inBundle": false, - "_integrity": "sha512-/aA0kLeRb5N9K0d4fw7ooEbI+xDe+DKD499EQqygGqeS8N3xto15p09uY2xj7ixP81sNPXvRLnAQIqdVStgb1A==", - "_location": "/material-ui/regenerator-runtime", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "regenerator-runtime@0.11.0", - "name": "regenerator-runtime", - "escapedName": "regenerator-runtime", - "rawSpec": "0.11.0", - "saveSpec": null, - "fetchSpec": "0.11.0" - }, - "_requiredBy": [ - "/material-ui/babel-runtime" - ], - "_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz", - "_spec": "0.11.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Ben Newman", - "email": "bn@cs.stanford.edu" - }, + "name": "regenerator-runtime", + "author": "Ben Newman ", "description": "Runtime for Regenerator-compiled generator and async functions.", + "version": "0.11.0", + "main": "runtime-module.js", "keywords": [ "regenerator", "runtime", "generator", "async" ], - "license": "MIT", - "main": "runtime-module.js", - "name": "regenerator-runtime", "repository": { "type": "git", "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" }, - "version": "0.11.0" + "license": "MIT" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/scroll/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/scroll/package.json index c5e91776..a8d6882f 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/scroll/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/scroll/package.json @@ -1,100 +1,43 @@ { - "_args": [ - [ - "scroll@2.0.1", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "scroll@2.0.1", - "_id": "scroll@2.0.1", - "_inBundle": false, - "_integrity": "sha1-tMfSfovPOuiligQvJyaK4/VfnM0=", - "_location": "/material-ui/scroll", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "scroll@2.0.1", - "name": "scroll", - "escapedName": "scroll", - "rawSpec": "2.0.1", - "saveSpec": null, - "fetchSpec": "2.0.1" - }, - "_requiredBy": [ - "/material-ui" - ], - "_resolved": "https://registry.npmjs.org/scroll/-/scroll-2.0.1.tgz", - "_spec": "2.0.1", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Michael Rhodes" - }, - "bugs": { - "url": "https://github.com/michaelrhodes/scroll/issues" - }, + "name": "scroll", + "version": "2.0.1", + "description": "A function that animates an element’s scrollTop or scrollLeft position.", + "main": "index.js", "dependencies": { "rafl": "~1.2.1" }, - "description": "A function that animates an element’s scrollTop or scrollLeft position.", "devDependencies": { "ease-component": "~1.0.0", "tape": "~2.3.2" }, - "homepage": "https://github.com/michaelrhodes/scroll", - "keywords": [ - "scrollTop", - "scrollTo", - "animate" - ], - "license": "MIT", - "main": "index.js", - "name": "scroll", - "repository": { - "type": "git", - "url": "git+ssh://git@github.com/michaelrhodes/scroll.git" - }, "scripts": { "test": "tape test/*.js" }, "testling": { "files": "test/*.js", "browsers": { - "ie": [ - 6, - 7, - 8, - 9, - 10 - ], - "chrome": [ - 20, - 25, - 29 - ], - "firefox": [ - 3, - 4, - 7, - 19, - 24 - ], - "safari": [ - 5.1, - 6 - ], - "opera": [ - 10, - 12, - 15 - ], - "iphone": [ - 6 - ], - "android": [ - 4.2 - ] - } + "ie": [6, 7, 8, 9, 10], + "chrome": [20, 25, 29], + "firefox": [3, 4, 7, 19, 24], + "safari": [5.1, 6], + "opera": [10, 12, 15], + "iphone": [6], + "android": [4.2] + } }, - "version": "2.0.1" + "repository": { + "type": "git", + "url": "git@github.com:michaelrhodes/scroll.git" + }, + "keywords": [ + "scrollTop", + "scrollTo", + "animate" + ], + "author": "Michael Rhodes", + "license": "MIT", + "bugs": { + "url": "https://github.com/michaelrhodes/scroll/issues" + }, + "homepage": "https://github.com/michaelrhodes/scroll" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/setimmediate/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/setimmediate/package.json index e81d7a8a..9b211e43 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/setimmediate/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/setimmediate/package.json @@ -1,77 +1,30 @@ { - "_args": [ - [ - "setimmediate@1.0.5", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "setimmediate@1.0.5", - "_id": "setimmediate@1.0.5", - "_inBundle": false, - "_integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "_location": "/material-ui/setimmediate", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "setimmediate@1.0.5", "name": "setimmediate", - "escapedName": "setimmediate", - "rawSpec": "1.0.5", - "saveSpec": null, - "fetchSpec": "1.0.5" - }, - "_requiredBy": [ - "/material-ui/fbjs" - ], - "_resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "_spec": "1.0.5", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "YuzuJS" - }, - "bugs": { - "url": "https://github.com/YuzuJS/setImmediate/issues" - }, - "contributors": [ - { - "name": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me" + "description": "A shim for the setImmediate efficient script yielding API", + "version": "1.0.5", + "author": "YuzuJS", + "contributors": [ + "Domenic Denicola (https://domenic.me)", + "Donavon West (http://donavon.com)", + "Yaffle" + ], + "license": "MIT", + "repository": "YuzuJS/setImmediate", + "main": "setImmediate.js", + "files": [ + "setImmediate.js" + ], + "scripts": { + "lint": "jshint setImmediate.js", + "test": "mocha test/tests.js", + "test-browser": "opener http://localhost:9008/__zuul && zuul test/tests.js --ui mocha-bdd --local 9008", + "test-browser-only": "opener http://localhost:9007/test/browserOnly/index.html && http-server . -p 9007" }, - { - "name": "Donavon West", - "email": "github@donavon.com", - "url": "http://donavon.com" - }, - { - "name": "Yaffle" + "devDependencies": { + "jshint": "^2.5.0", + "mocha": "~1.18.2", + "http-server": "~0.6.1", + "opener": "^1.3", + "zuul": "^1.6.4" } - ], - "description": "A shim for the setImmediate efficient script yielding API", - "devDependencies": { - "http-server": "~0.6.1", - "jshint": "^2.5.0", - "mocha": "~1.18.2", - "opener": "^1.3", - "zuul": "^1.6.4" - }, - "files": [ - "setImmediate.js" - ], - "homepage": "https://github.com/YuzuJS/setImmediate#readme", - "license": "MIT", - "main": "setImmediate.js", - "name": "setimmediate", - "repository": { - "type": "git", - "url": "git+https://github.com/YuzuJS/setImmediate.git" - }, - "scripts": { - "lint": "jshint setImmediate.js", - "test": "mocha test/tests.js", - "test-browser": "opener http://localhost:9008/__zuul && zuul test/tests.js --ui mocha-bdd --local 9008", - "test-browser-only": "opener http://localhost:9007/test/browserOnly/index.html && http-server . -p 9007" - }, - "version": "1.0.5" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/symbol-observable/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/symbol-observable/package.json index 79b6be37..b938f69a 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/symbol-observable/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/symbol-observable/package.json @@ -1,52 +1,21 @@ { - "_args": [ - [ - "symbol-observable@1.0.4", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "symbol-observable@1.0.4", - "_id": "symbol-observable@1.0.4", - "_inBundle": false, - "_integrity": "sha1-Kb9hXUqnEhvdiYsi1LP5vE4qoD0=", - "_location": "/material-ui/symbol-observable", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "symbol-observable@1.0.4", - "name": "symbol-observable", - "escapedName": "symbol-observable", - "rawSpec": "1.0.4", - "saveSpec": null, - "fetchSpec": "1.0.4" - }, - "_requiredBy": [ - "/material-ui/recompose" - ], - "_resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz", - "_spec": "1.0.4", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", + "name": "symbol-observable", + "version": "1.0.4", + "description": "Symbol.observable ponyfill", + "license": "MIT", + "repository": "blesh/symbol-observable", "author": { "name": "Ben Lesh", "email": "ben@benlesh.com" }, - "bugs": { - "url": "https://github.com/blesh/symbol-observable/issues" - }, - "description": "Symbol.observable ponyfill", - "devDependencies": { - "babel-cli": "^6.9.0", - "babel-preset-es2015": "^6.9.0", - "babel-preset-es3": "^1.0.0", - "chai": "^3.5.0", - "check-es3-syntax-cli": "^0.1.0", - "mocha": "^2.4.5", - "typescript": "^1.8.10" - }, "engines": { "node": ">=0.10.0" }, + "scripts": { + "test": "npm run build && mocha && tsc ./ts-test/test.ts && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill", + "build": "babel es --out-dir lib", + "prepublish": "npm test" + }, "files": [ "index.js", "ponyfill.js", @@ -56,8 +25,8 @@ "lib/index.js", "lib/ponyfill.js" ], - "homepage": "https://github.com/blesh/symbol-observable#readme", "jsnext:main": "es/index.js", + "typings": "index.d.ts", "keywords": [ "symbol", "observable", @@ -66,17 +35,13 @@ "polyfill", "shim" ], - "license": "MIT", - "name": "symbol-observable", - "repository": { - "type": "git", - "url": "git+https://github.com/blesh/symbol-observable.git" - }, - "scripts": { - "build": "babel es --out-dir lib", - "prepublish": "npm test", - "test": "npm run build && mocha && tsc ./ts-test/test.ts && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill" - }, - "typings": "index.d.ts", - "version": "1.0.4" + "devDependencies": { + "babel-cli": "^6.9.0", + "babel-preset-es2015": "^6.9.0", + "babel-preset-es3": "^1.0.0", + "chai": "^3.5.0", + "check-es3-syntax-cli": "^0.1.0", + "mocha": "^2.4.5", + "typescript": "^1.8.10" + } } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/ua-parser-js/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/ua-parser-js/package.json index 35f02566..7b873104 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/ua-parser-js/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/ua-parser-js/package.json @@ -1,297 +1,9 @@ { - "_args": [ - [ - "ua-parser-js@0.7.17", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "ua-parser-js@0.7.17", - "_id": "ua-parser-js@0.7.17", - "_inBundle": false, - "_integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==", - "_location": "/material-ui/ua-parser-js", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "ua-parser-js@0.7.17", - "name": "ua-parser-js", - "escapedName": "ua-parser-js", - "rawSpec": "0.7.17", - "saveSpec": null, - "fetchSpec": "0.7.17" - }, - "_requiredBy": [ - "/material-ui/fbjs" - ], - "_resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", - "_spec": "0.7.17", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Faisal Salman", - "email": "f@faisalman.com", - "url": "http://faisalman.com" - }, - "bugs": { - "url": "https://github.com/faisalman/ua-parser-js/issues" - }, - "contributors": [ - { - "name": "Aamir Poonawalla", - "email": "aamir@urx.com" - }, - { - "name": "Admas", - "email": "mollases@users.noreply.github.com" - }, - { - "name": "algenon", - "email": "m@antonz.ru" - }, - { - "name": "Andrea Vaghi", - "email": "andrea.vaghi@jobrapido.com" - }, - { - "name": "Anton Zhiyanov", - "email": "m@antonz.ru" - }, - { - "name": "Austin Pray", - "email": "austin@austinpray.com" - }, - { - "name": "Benjamin Bertrand", - "email": "bertrand.design@gmail.com" - }, - { - "name": "boneyao", - "email": "admin@boneyao.com" - }, - { - "name": "Carl C Von Lewin", - "email": "carlchristianlewin@gmail.com" - }, - { - "name": "CESAR RAMOS", - "email": "c@imagenproactiva.com" - }, - { - "name": "Christopher De Cairos", - "email": "chris.decairos@gmail.com" - }, - { - "name": "Davit Barbakadze", - "email": "jayarjo@gmail.com" - }, - { - "name": "ddivernois", - "email": "david-emmanuel.divernois@amadeus.com" - }, - { - "name": "Demis Palma", - "email": "demis.palma@gmail.com" - }, - { - "name": "Dmitry Tyschenko", - "email": "dtyschenko@gmail.com" - }, - { - "name": "Douglas Li", - "email": "doug@knotch.it" - }, - { - "name": "Dumitru Uzun", - "email": "contact@duzun.me" - }, - { - "name": "Erik Hesselink", - "email": "hesselink@gmail.com" - }, - { - "name": "Fabian Becker", - "email": "halfdan@xnorfz.de" - }, - { - "name": "Faisal Salman", - "email": "fyzlman@gmail.com" - }, - { - "name": "Frédéric Camblor", - "email": "fcamblor@gmail.com" - }, - { - "name": "Grigory Dmitrenko", - "email": "grigory@snsk.ru" - }, - { - "name": "Hendrik Helwich", - "email": "h.helwich@iplabs.de" - }, - { - "name": "jackpoll", - "email": "jackpoll123456@gmail.com" - }, - { - "name": "Jake Mc", - "email": "startswithaj@users.noreply.github.com" - }, - { - "name": "John Tantalo", - "email": "john.tantalo@gmail.com" - }, - { - "name": "John Yanarella", - "email": "jmy@codecatalyst.com" - }, - { - "name": "Jon Buckley", - "email": "jon@jbuckley.ca" - }, - { - "name": "Kendall Buchanan", - "email": "kendall@kendagriff.com" - }, - { - "name": "Lee Treveil", - "email": "leetreveil@gmail.com" - }, - { - "name": "leonardo", - "email": "leofiore@libero.it" - }, - { - "name": "Levente Balogh", - "email": "noreply@github.com" - }, - { - "name": "Liam Quinn", - "email": "lquinn@blackberry.com" - }, - { - "name": "Lithin", - "email": "lithin@webklipper.com" - }, - { - "name": "Lukas Eipert", - "email": "leipert@users.noreply.github.com" - }, - { - "name": "Malash", - "email": "i@malash.me" - }, - { - "name": "Martynas", - "email": "noreply@github.com" - }, - { - "name": "Maximilian Haupt", - "email": "mail@maximilianhaupt.com" - }, - { - "name": "Max Maurer", - "email": "maxemanuel.maurer@gmail.com" - }, - { - "name": "Michael Hess", - "email": "mhess@connectify.me" - }, - { - "name": "naoh", - "email": "noreply@github.com" - }, - { - "name": "Nik Rolls", - "email": "nik@rolls.cc" - }, - { - "name": "niris", - "email": "nirisix@gmail.com" - }, - { - "name": "otakuSiD", - "email": "otakusid@gmail.com" - }, - { - "name": "Peter Dave Hello", - "email": "PeterDaveHello@users.noreply.github.com" - }, - { - "name": "philippsimon", - "email": "github@philippsimon.de" - }, - { - "name": "Pieter Hendrickx", - "email": "pieter.hendrickx@belfius.be" - }, - { - "name": "Robert Tod", - "email": "robert@qubit.com" - }, - { - "name": "Ross Noble", - "email": "rosshnoble@gmail.com" - }, - { - "name": "Sandro Sonntag", - "email": "sandro.sonntag@adorsys.de" - }, - { - "name": "sgautrea", - "email": "shanegautreau@gmail.com" - }, - { - "name": "Shane Gautreau", - "email": "sgautrea@opentext.com" - }, - { - "name": "Shane Thacker", - "email": "shane@steadymade.com" - }, - { - "name": "Simon Eisenmann", - "email": "simon@longsleep.org" - }, - { - "name": "Simon Lang", - "email": "me@simonlang.org" - }, - { - "name": "Sylvain Gizard", - "email": "sylvain.gizard@gmail.com" - }, - { - "name": "szchenghuang", - "email": "szchenghuang@gmail.com" - }, - { - "name": "Vadim Kurachevsky", - "email": "vadim@hmvs.org" - }, - { - "name": "Yun Young-jin", - "email": "yupmin@yupmin-office-macmini.local" - } - ], - "demo": "https://faisalman.github.io/ua-parser-js", + "title": "UAParser.js", + "name": "ua-parser-js", + "version": "0.7.17", + "author": "Faisal Salman (http://faisalman.com)", "description": "Lightweight JavaScript-based user-agent string parser", - "devDependencies": { - "jshint": "~1.1.0", - "mocha": "~1.8.0", - "requirejs": "^2.3.2", - "uglify-js": "~2.7.5", - "verup": "^1.3.x" - }, - "directories": { - "dist": "dist", - "src": "src", - "test": "test" - }, - "download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.min.js", - "engines": { - "node": "*" - }, - "homepage": "http://github.com/faisalman/ua-parser-js", "keywords": [ "user-agent", "parser", @@ -303,21 +15,75 @@ "jquery-plugin", "ecosystem:jquery" ], - "license": "(GPL-2.0 OR MIT)", + "homepage": "http://github.com/faisalman/ua-parser-js", + "contributors": [ + "Aamir Poonawalla ", + "Admas ", + "algenon ", + "Andrea Vaghi ", + "Anton Zhiyanov ", + "Austin Pray ", + "Benjamin Bertrand ", + "boneyao ", + "Carl C Von Lewin ", + "CESAR RAMOS ", + "Christopher De Cairos ", + "Davit Barbakadze ", + "ddivernois ", + "Demis Palma ", + "Dmitry Tyschenko ", + "Douglas Li ", + "Dumitru Uzun ", + "Erik Hesselink ", + "Fabian Becker ", + "Faisal Salman ", + "Frédéric Camblor ", + "Grigory Dmitrenko ", + "Hendrik Helwich ", + "jackpoll ", + "Jake Mc ", + "John Tantalo ", + "John Yanarella ", + "Jon Buckley ", + "Kendall Buchanan ", + "Lee Treveil ", + "leonardo ", + "Levente Balogh ", + "Liam Quinn ", + "Lithin ", + "Lukas Eipert ", + "Malash ", + "Martynas ", + "Maximilian Haupt ", + "Max Maurer ", + "Michael Hess ", + "naoh ", + "Nik Rolls ", + "niris ", + "otakuSiD ", + "Peter Dave Hello ", + "philippsimon ", + "Pieter Hendrickx ", + "Robert Tod ", + "Ross Noble ", + "Sandro Sonntag ", + "sgautrea ", + "Shane Gautreau ", + "Shane Thacker ", + "Simon Eisenmann ", + "Simon Lang ", + "Sylvain Gizard ", + "szchenghuang ", + "Vadim Kurachevsky ", + "Yun Young-jin " + ], "main": "src/ua-parser.js", - "name": "ua-parser-js", - "repository": { - "type": "git", - "url": "git+https://github.com/faisalman/ua-parser-js.git" - }, "scripts": { "build": "uglifyjs src/ua-parser.js -o dist/ua-parser.min.js --comments '/UAParser\\.js/' && uglifyjs src/ua-parser.js -o dist/ua-parser.pack.js --comments '/UAParser\\.js/' --compress --mangle", "test": "jshint src/ua-parser.js && mocha -R nyan test/test.js", - "version": "node ./node_modules/verup 0", - "verup": "node ./node_modules/verup" + "verup": "node ./node_modules/verup", + "version": "node ./node_modules/verup 0" }, - "title": "UAParser.js", - "version": "0.7.17", "verup": { "files": [ "bower.json", @@ -328,5 +94,28 @@ "^((?:\\$|(\\s*\\*\\s*@)|(\\s*(?:var|,)?\\s+))(?:LIBVERSION|version)[\\s\\:='\"]+)([0-9]+(?:\\.[0-9]+){2,2})", "^(\\s?\\*.*v)([0-9]+(?:\\.[0-9]+){2,2})" ] - } + }, + "devDependencies": { + "jshint": "~1.1.0", + "mocha": "~1.8.0", + "requirejs": "^2.3.2", + "uglify-js": "~2.7.5", + "verup": "^1.3.x" + }, + "repository": { + "type": "git", + "url": "https://github.com/faisalman/ua-parser-js.git" + }, + "license": "(GPL-2.0 OR MIT)", + "engines": { + "node": "*" + }, + "directories": { + "dist": "dist", + "src": "src", + "test": "test" + }, + "bugs": "https://github.com/faisalman/ua-parser-js/issues", + "demo": "https://faisalman.github.io/ua-parser-js", + "download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.min.js" } diff --git a/goTorrentWebUI/node_modules/material-ui/node_modules/warning/package.json b/goTorrentWebUI/node_modules/material-ui/node_modules/warning/package.json index 9c042455..985e005c 100644 --- a/goTorrentWebUI/node_modules/material-ui/node_modules/warning/package.json +++ b/goTorrentWebUI/node_modules/material-ui/node_modules/warning/package.json @@ -1,80 +1,42 @@ { - "_args": [ - [ - "warning@3.0.0", - "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI" - ] - ], - "_from": "warning@3.0.0", - "_id": "warning@3.0.0", - "_inBundle": false, - "_integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=", - "_location": "/material-ui/warning", - "_phantomChildren": {}, - "_requested": { - "type": "version", - "registry": true, - "raw": "warning@3.0.0", - "name": "warning", - "escapedName": "warning", - "rawSpec": "3.0.0", - "saveSpec": null, - "fetchSpec": "3.0.0" - }, - "_requiredBy": [ - "/material-ui", - "/material-ui/jss", - "/material-ui/jss-compose", - "/material-ui/jss-extend", - "/material-ui/jss-nested", - "/material-ui/react-event-listener", - "/material-ui/react-transition-group" - ], - "_resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz", - "_spec": "3.0.0", - "_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI", - "author": { - "name": "Berkeley Martinez", - "email": "berkeley@r3dm.com", - "url": "http://www.freecodecamp.com" - }, + "name": "warning", + "version": "3.0.0", + "description": "A mirror of Facebook's Warning", + "main": "warning.js", "browser": "browser.js", "browserify": { "transform": [ "loose-envify" ] }, - "bugs": { - "url": "https://github.com/BerkeleyTrue/warning/issues" - }, - "dependencies": { - "loose-envify": "^1.0.0" - }, - "description": "A mirror of Facebook's Warning", - "devDependencies": { - "browserify": "^11.0.1", - "tap": "^1.4.0" - }, "files": [ "browser.js", "warning.js" ], - "homepage": "https://github.com/BerkeleyTrue/warning", + "scripts": { + "test": "NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js" + }, + "dependencies": { + "loose-envify": "^1.0.0" + }, + "devDependencies": { + "browserify": "^11.0.1", + "tap": "^1.4.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/BerkeleyTrue/warning.git" + }, "keywords": [ "warning", "facebook", "react", "invariant" ], + "author": "Berkeley Martinez (http://www.freecodecamp.com)", "license": "BSD-3-Clause", - "main": "warning.js", - "name": "warning", - "repository": { - "type": "git", - "url": "git+https://github.com/BerkeleyTrue/warning.git" + "bugs": { + "url": "https://github.com/BerkeleyTrue/warning/issues" }, - "scripts": { - "test": "NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js" - }, - "version": "3.0.0" + "homepage": "https://github.com/BerkeleyTrue/warning" } diff --git a/goTorrentWebUI/node_modules/react-dom/LICENSE b/goTorrentWebUI/node_modules/react-dom/LICENSE deleted file mode 100644 index 188fb2b0..00000000 --- a/goTorrentWebUI/node_modules/react-dom/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-present, Facebook, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/goTorrentWebUI/node_modules/react-dom/README.md b/goTorrentWebUI/node_modules/react-dom/README.md deleted file mode 100644 index 79e5133a..00000000 --- a/goTorrentWebUI/node_modules/react-dom/README.md +++ /dev/null @@ -1,54 +0,0 @@ -# `react-dom` - -This package serves as the entry point of the DOM-related rendering paths. It is intended to be paired with the isomorphic React, which will be shipped as `react` to npm. - -## Installation - -```sh -npm install react react-dom -``` - -## Usage - -### In the browser - -```js -var React = require('react'); -var ReactDOM = require('react-dom'); - -class MyComponent extends React.Component { - render() { - return
Hello World
; - } -} - -ReactDOM.render(, node); -``` - -### On the server - -```js -var React = require('react'); -var ReactDOMServer = require('react-dom/server'); - -class MyComponent extends React.Component { - render() { - return
Hello World
; - } -} - -ReactDOMServer.renderToString(); -``` - -## API - -### `react-dom` - -- `findDOMNode` -- `render` -- `unmountComponentAtNode` - -### `react-dom/server` - -- `renderToString` -- `renderToStaticMarkup` diff --git a/goTorrentWebUI/node_modules/react-dom/cjs/react-dom-server.browser.development.js b/goTorrentWebUI/node_modules/react-dom/cjs/react-dom-server.browser.development.js deleted file mode 100644 index 8cd94fc4..00000000 --- a/goTorrentWebUI/node_modules/react-dom/cjs/react-dom-server.browser.development.js +++ /dev/null @@ -1,2520 +0,0 @@ -/** @license React v16.1.0 - * react-dom-server.browser.development.js - * - * Copyright (c) 2013-present, Facebook, Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -'use strict'; - -if (process.env.NODE_ENV !== "production") { - (function() { -'use strict'; - -var invariant = require('fbjs/lib/invariant'); -var _assign = require('object-assign'); -var React = require('react'); -var emptyFunction = require('fbjs/lib/emptyFunction'); -var emptyObject = require('fbjs/lib/emptyObject'); -var hyphenateStyleName = require('fbjs/lib/hyphenateStyleName'); -var memoizeStringOnly = require('fbjs/lib/memoizeStringOnly'); -var warning = require('fbjs/lib/warning'); -var checkPropTypes = require('prop-types/checkPropTypes'); -var camelizeStyleName = require('fbjs/lib/camelizeStyleName'); - -/** - * WARNING: DO NOT manually require this module. - * This is a replacement for `invariant(...)` used by the error code system - * and will _only_ be required by the corresponding babel pass. - * It always throws. - */ - -// These attributes should be all lowercase to allow for -// case insensitive checks -var RESERVED_PROPS = { - children: true, - dangerouslySetInnerHTML: true, - defaultValue: true, - defaultChecked: true, - innerHTML: true, - suppressContentEditableWarning: true, - suppressHydrationWarning: true, - style: true -}; - -function checkMask(value, bitmask) { - return (value & bitmask) === bitmask; -} - -var DOMPropertyInjection = { - /** - * Mapping from normalized, camelcased property names to a configuration that - * specifies how the associated DOM property should be accessed or rendered. - */ - MUST_USE_PROPERTY: 0x1, - HAS_BOOLEAN_VALUE: 0x4, - HAS_NUMERIC_VALUE: 0x8, - HAS_POSITIVE_NUMERIC_VALUE: 0x10 | 0x8, - HAS_OVERLOADED_BOOLEAN_VALUE: 0x20, - HAS_STRING_BOOLEAN_VALUE: 0x40, - - /** - * Inject some specialized knowledge about the DOM. This takes a config object - * with the following properties: - * - * Properties: object mapping DOM property name to one of the - * DOMPropertyInjection constants or null. If your attribute isn't in here, - * it won't get written to the DOM. - * - * DOMAttributeNames: object mapping React attribute name to the DOM - * attribute name. Attribute names not specified use the **lowercase** - * normalized name. - * - * DOMAttributeNamespaces: object mapping React attribute name to the DOM - * attribute namespace URL. (Attribute names not specified use no namespace.) - * - * DOMPropertyNames: similar to DOMAttributeNames but for DOM properties. - * Property names not specified use the normalized name. - * - * DOMMutationMethods: Properties that require special mutation methods. If - * `value` is undefined, the mutation method should unset the property. - * - * @param {object} domPropertyConfig the config as described above. - */ - injectDOMPropertyConfig: function (domPropertyConfig) { - var Injection = DOMPropertyInjection; - var Properties = domPropertyConfig.Properties || {}; - var DOMAttributeNamespaces = domPropertyConfig.DOMAttributeNamespaces || {}; - var DOMAttributeNames = domPropertyConfig.DOMAttributeNames || {}; - var DOMMutationMethods = domPropertyConfig.DOMMutationMethods || {}; - - for (var propName in Properties) { - !!properties.hasOwnProperty(propName) ? invariant(false, "injectDOMPropertyConfig(...): You're trying to inject DOM property '%s' which has already been injected. You may be accidentally injecting the same DOM property config twice, or you may be injecting two configs that have conflicting property names.", propName) : void 0; - - var lowerCased = propName.toLowerCase(); - var propConfig = Properties[propName]; - - var propertyInfo = { - attributeName: lowerCased, - attributeNamespace: null, - propertyName: propName, - mutationMethod: null, - - mustUseProperty: checkMask(propConfig, Injection.MUST_USE_PROPERTY), - hasBooleanValue: checkMask(propConfig, Injection.HAS_BOOLEAN_VALUE), - hasNumericValue: checkMask(propConfig, Injection.HAS_NUMERIC_VALUE), - hasPositiveNumericValue: checkMask(propConfig, Injection.HAS_POSITIVE_NUMERIC_VALUE), - hasOverloadedBooleanValue: checkMask(propConfig, Injection.HAS_OVERLOADED_BOOLEAN_VALUE), - hasStringBooleanValue: checkMask(propConfig, Injection.HAS_STRING_BOOLEAN_VALUE) - }; - !(propertyInfo.hasBooleanValue + propertyInfo.hasNumericValue + propertyInfo.hasOverloadedBooleanValue <= 1) ? invariant(false, "DOMProperty: Value can be one of boolean, overloaded boolean, or numeric value, but not a combination: %s", propName) : void 0; - - if (DOMAttributeNames.hasOwnProperty(propName)) { - var attributeName = DOMAttributeNames[propName]; - - propertyInfo.attributeName = attributeName; - } - - if (DOMAttributeNamespaces.hasOwnProperty(propName)) { - propertyInfo.attributeNamespace = DOMAttributeNamespaces[propName]; - } - - if (DOMMutationMethods.hasOwnProperty(propName)) { - propertyInfo.mutationMethod = DOMMutationMethods[propName]; - } - - // Downcase references to whitelist properties to check for membership - // without case-sensitivity. This allows the whitelist to pick up - // `allowfullscreen`, which should be written using the property configuration - // for `allowFullscreen` - properties[propName] = propertyInfo; - } - } -}; - -/* eslint-disable max-len */ -var ATTRIBUTE_NAME_START_CHAR = ":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD"; -/* eslint-enable max-len */ -var ATTRIBUTE_NAME_CHAR = ATTRIBUTE_NAME_START_CHAR + "\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040"; - - -var ROOT_ATTRIBUTE_NAME = 'data-reactroot'; - -/** - * Map from property "standard name" to an object with info about how to set - * the property in the DOM. Each object contains: - * - * attributeName: - * Used when rendering markup or with `*Attribute()`. - * attributeNamespace - * propertyName: - * Used on DOM node instances. (This includes properties that mutate due to - * external factors.) - * mutationMethod: - * If non-null, used instead of the property or `setAttribute()` after - * initial render. - * mustUseProperty: - * Whether the property must be accessed and mutated as an object property. - * hasBooleanValue: - * Whether the property should be removed when set to a falsey value. - * hasNumericValue: - * Whether the property must be numeric or parse as a numeric and should be - * removed when set to a falsey value. - * hasPositiveNumericValue: - * Whether the property must be positive numeric or parse as a positive - * numeric and should be removed when set to a falsey value. - * hasOverloadedBooleanValue: - * Whether the property can be used as a flag as well as with a value. - * Removed when strictly equal to false; present without a value when - * strictly equal to true; present with a value otherwise. - */ -var properties = {}; - -/** - * Checks whether a property name is a writeable attribute. - * @method - */ -function shouldSetAttribute(name, value) { - if (isReservedProp(name)) { - return false; - } - if (name.length > 2 && (name[0] === 'o' || name[0] === 'O') && (name[1] === 'n' || name[1] === 'N')) { - return false; - } - if (value === null) { - return true; - } - switch (typeof value) { - case 'boolean': - return shouldAttributeAcceptBooleanValue(name); - case 'undefined': - case 'number': - case 'string': - case 'object': - return true; - default: - // function, symbol - return false; - } -} - -function getPropertyInfo(name) { - return properties.hasOwnProperty(name) ? properties[name] : null; -} - -function shouldAttributeAcceptBooleanValue(name) { - if (isReservedProp(name)) { - return true; - } - var propertyInfo = getPropertyInfo(name); - if (propertyInfo) { - return propertyInfo.hasBooleanValue || propertyInfo.hasStringBooleanValue || propertyInfo.hasOverloadedBooleanValue; - } - var prefix = name.toLowerCase().slice(0, 5); - return prefix === 'data-' || prefix === 'aria-'; -} - -/** - * Checks to see if a property name is within the list of properties - * reserved for internal React operations. These properties should - * not be set on an HTML element. - * - * @private - * @param {string} name - * @return {boolean} If the name is within reserved props - */ -function isReservedProp(name) { - return RESERVED_PROPS.hasOwnProperty(name); -} - -var injection = DOMPropertyInjection; - -var MUST_USE_PROPERTY = injection.MUST_USE_PROPERTY; -var HAS_BOOLEAN_VALUE = injection.HAS_BOOLEAN_VALUE; -var HAS_NUMERIC_VALUE = injection.HAS_NUMERIC_VALUE; -var HAS_POSITIVE_NUMERIC_VALUE = injection.HAS_POSITIVE_NUMERIC_VALUE; -var HAS_OVERLOADED_BOOLEAN_VALUE = injection.HAS_OVERLOADED_BOOLEAN_VALUE; -var HAS_STRING_BOOLEAN_VALUE = injection.HAS_STRING_BOOLEAN_VALUE; - -var HTMLDOMPropertyConfig = { - // When adding attributes to this list, be sure to also add them to - // the `possibleStandardNames` module to ensure casing and incorrect - // name warnings. - Properties: { - allowFullScreen: HAS_BOOLEAN_VALUE, - autoFocus: HAS_STRING_BOOLEAN_VALUE, - // specifies target context for links with `preload` type - async: HAS_BOOLEAN_VALUE, - // autoFocus is polyfilled/normalized by AutoFocusUtils - // autoFocus: HAS_BOOLEAN_VALUE, - autoPlay: HAS_BOOLEAN_VALUE, - capture: HAS_BOOLEAN_VALUE, - checked: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE, - cols: HAS_POSITIVE_NUMERIC_VALUE, - contentEditable: HAS_STRING_BOOLEAN_VALUE, - controls: HAS_BOOLEAN_VALUE, - 'default': HAS_BOOLEAN_VALUE, - defer: HAS_BOOLEAN_VALUE, - disabled: HAS_BOOLEAN_VALUE, - download: HAS_OVERLOADED_BOOLEAN_VALUE, - draggable: HAS_STRING_BOOLEAN_VALUE, - formNoValidate: HAS_BOOLEAN_VALUE, - hidden: HAS_BOOLEAN_VALUE, - loop: HAS_BOOLEAN_VALUE, - // Caution; `option.selected` is not updated if `select.multiple` is - // disabled with `removeAttribute`. - multiple: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE, - muted: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE, - noValidate: HAS_BOOLEAN_VALUE, - open: HAS_BOOLEAN_VALUE, - playsInline: HAS_BOOLEAN_VALUE, - readOnly: HAS_BOOLEAN_VALUE, - required: HAS_BOOLEAN_VALUE, - reversed: HAS_BOOLEAN_VALUE, - rows: HAS_POSITIVE_NUMERIC_VALUE, - rowSpan: HAS_NUMERIC_VALUE, - scoped: HAS_BOOLEAN_VALUE, - seamless: HAS_BOOLEAN_VALUE, - selected: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE, - size: HAS_POSITIVE_NUMERIC_VALUE, - start: HAS_NUMERIC_VALUE, - // support for projecting regular DOM Elements via V1 named slots ( shadow dom ) - span: HAS_POSITIVE_NUMERIC_VALUE, - spellCheck: HAS_STRING_BOOLEAN_VALUE, - // Style must be explicitly set in the attribute list. React components - // expect a style object - style: 0, - // Keep it in the whitelist because it is case-sensitive for SVG. - tabIndex: 0, - // itemScope is for for Microdata support. - // See http://schema.org/docs/gs.html - itemScope: HAS_BOOLEAN_VALUE, - // These attributes must stay in the white-list because they have - // different attribute names (see DOMAttributeNames below) - acceptCharset: 0, - className: 0, - htmlFor: 0, - httpEquiv: 0, - // Attributes with mutation methods must be specified in the whitelist - // Set the string boolean flag to allow the behavior - value: HAS_STRING_BOOLEAN_VALUE - }, - DOMAttributeNames: { - acceptCharset: 'accept-charset', - className: 'class', - htmlFor: 'for', - httpEquiv: 'http-equiv' - }, - DOMMutationMethods: { - value: function (node, value) { - if (value == null) { - return node.removeAttribute('value'); - } - - // Number inputs get special treatment due to some edge cases in - // Chrome. Let everything else assign the value attribute as normal. - // https://github.com/facebook/react/issues/7253#issuecomment-236074326 - if (node.type !== 'number' || node.hasAttribute('value') === false) { - node.setAttribute('value', '' + value); - } else if (node.validity && !node.validity.badInput && node.ownerDocument.activeElement !== node) { - // Don't assign an attribute if validation reports bad - // input. Chrome will clear the value. Additionally, don't - // operate on inputs that have focus, otherwise Chrome might - // strip off trailing decimal places and cause the user's - // cursor position to jump to the beginning of the input. - // - // In ReactDOMInput, we have an onBlur event that will trigger - // this function again when focus is lost. - node.setAttribute('value', '' + value); - } - } - } -}; - -var HAS_STRING_BOOLEAN_VALUE$1 = injection.HAS_STRING_BOOLEAN_VALUE; - - -var NS = { - xlink: 'http://www.w3.org/1999/xlink', - xml: 'http://www.w3.org/XML/1998/namespace' -}; - -/** - * This is a list of all SVG attributes that need special casing, - * namespacing, or boolean value assignment. - * - * When adding attributes to this list, be sure to also add them to - * the `possibleStandardNames` module to ensure casing and incorrect - * name warnings. - * - * SVG Attributes List: - * https://www.w3.org/TR/SVG/attindex.html - * SMIL Spec: - * https://www.w3.org/TR/smil - */ -var ATTRS = ['accent-height', 'alignment-baseline', 'arabic-form', 'baseline-shift', 'cap-height', 'clip-path', 'clip-rule', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'dominant-baseline', 'enable-background', 'fill-opacity', 'fill-rule', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'glyph-name', 'glyph-orientation-horizontal', 'glyph-orientation-vertical', 'horiz-adv-x', 'horiz-origin-x', 'image-rendering', 'letter-spacing', 'lighting-color', 'marker-end', 'marker-mid', 'marker-start', 'overline-position', 'overline-thickness', 'paint-order', 'panose-1', 'pointer-events', 'rendering-intent', 'shape-rendering', 'stop-color', 'stop-opacity', 'strikethrough-position', 'strikethrough-thickness', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'text-anchor', 'text-decoration', 'text-rendering', 'underline-position', 'underline-thickness', 'unicode-bidi', 'unicode-range', 'units-per-em', 'v-alphabetic', 'v-hanging', 'v-ideographic', 'v-mathematical', 'vector-effect', 'vert-adv-y', 'vert-origin-x', 'vert-origin-y', 'word-spacing', 'writing-mode', 'x-height', 'xlink:actuate', 'xlink:arcrole', 'xlink:href', 'xlink:role', 'xlink:show', 'xlink:title', 'xlink:type', 'xml:base', 'xmlns:xlink', 'xml:lang', 'xml:space']; - -var SVGDOMPropertyConfig = { - Properties: { - autoReverse: HAS_STRING_BOOLEAN_VALUE$1, - externalResourcesRequired: HAS_STRING_BOOLEAN_VALUE$1, - preserveAlpha: HAS_STRING_BOOLEAN_VALUE$1 - }, - DOMAttributeNames: { - autoReverse: 'autoReverse', - externalResourcesRequired: 'externalResourcesRequired', - preserveAlpha: 'preserveAlpha' - }, - DOMAttributeNamespaces: { - xlinkActuate: NS.xlink, - xlinkArcrole: NS.xlink, - xlinkHref: NS.xlink, - xlinkRole: NS.xlink, - xlinkShow: NS.xlink, - xlinkTitle: NS.xlink, - xlinkType: NS.xlink, - xmlBase: NS.xml, - xmlLang: NS.xml, - xmlSpace: NS.xml - } -}; - -var CAMELIZE = /[\-\:]([a-z])/g; -var capitalize = function (token) { - return token[1].toUpperCase(); -}; - -ATTRS.forEach(function (original) { - var reactName = original.replace(CAMELIZE, capitalize); - - SVGDOMPropertyConfig.Properties[reactName] = 0; - SVGDOMPropertyConfig.DOMAttributeNames[reactName] = original; -}); - -injection.injectDOMPropertyConfig(HTMLDOMPropertyConfig); -injection.injectDOMPropertyConfig(SVGDOMPropertyConfig); - -// TODO: this is special because it gets imported during build. - -var ReactVersion = '16.1.0'; - -var describeComponentFrame = function (name, source, ownerName) { - return '\n in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : ''); -}; - -var ReactInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; - - -var ReactDebugCurrentFrame = ReactInternals.ReactDebugCurrentFrame; - -// code copied and modified from escape-html -/** - * Module variables. - * @private - */ - -var matchHtmlRegExp = /["'&<>]/; - -/** - * Escape special characters in the given string of html. - * - * @param {string} string The string to escape for inserting into HTML - * @return {string} - * @public - */ - -function escapeHtml(string) { - var str = '' + string; - var match = matchHtmlRegExp.exec(str); - - if (!match) { - return str; - } - - var escape; - var html = ''; - var index = 0; - var lastIndex = 0; - - for (index = match.index; index < str.length; index++) { - switch (str.charCodeAt(index)) { - case 34: - // " - escape = '"'; - break; - case 38: - // & - escape = '&'; - break; - case 39: - // ' - escape = '''; // modified from escape-html; used to be ''' - break; - case 60: - // < - escape = '<'; - break; - case 62: - // > - escape = '>'; - break; - default: - continue; - } - - if (lastIndex !== index) { - html += str.substring(lastIndex, index); - } - - lastIndex = index + 1; - html += escape; - } - - return lastIndex !== index ? html + str.substring(lastIndex, index) : html; -} -// end code copied and modified from escape-html - -/** - * Escapes text to prevent scripting attacks. - * - * @param {*} text Text value to escape. - * @return {string} An escaped string. - */ -function escapeTextContentForBrowser(text) { - if (typeof text === 'boolean' || typeof text === 'number') { - // this shortcircuit helps perf for types that we know will never have - // special characters, especially given that this function is used often - // for numeric dom ids. - return '' + text; - } - return escapeHtml(text); -} - -/** - * Escapes attribute value to prevent scripting attacks. - * - * @param {*} value Value to escape. - * @return {string} An escaped string. - */ -function quoteAttributeValueForBrowser(value) { - return '"' + escapeTextContentForBrowser(value) + '"'; -} - -// isAttributeNameSafe() is currently duplicated in DOMPropertyOperations. -// TODO: Find a better place for this. -var VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + ATTRIBUTE_NAME_START_CHAR + '][' + ATTRIBUTE_NAME_CHAR + ']*$'); -var illegalAttributeNameCache = {}; -var validatedAttributeNameCache = {}; -function isAttributeNameSafe(attributeName) { - if (validatedAttributeNameCache.hasOwnProperty(attributeName)) { - return true; - } - if (illegalAttributeNameCache.hasOwnProperty(attributeName)) { - return false; - } - if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) { - validatedAttributeNameCache[attributeName] = true; - return true; - } - illegalAttributeNameCache[attributeName] = true; - { - warning(false, 'Invalid attribute name: `%s`', attributeName); - } - return false; -} - -// shouldIgnoreValue() is currently duplicated in DOMPropertyOperations. -// TODO: Find a better place for this. -function shouldIgnoreValue(propertyInfo, value) { - return value == null || propertyInfo.hasBooleanValue && !value || propertyInfo.hasNumericValue && isNaN(value) || propertyInfo.hasPositiveNumericValue && value < 1 || propertyInfo.hasOverloadedBooleanValue && value === false; -} - -/** - * Operations for dealing with DOM properties. - */ - -/** - * Creates markup for the ID property. - * - * @param {string} id Unescaped ID. - * @return {string} Markup string. - */ - - -function createMarkupForRoot() { - return ROOT_ATTRIBUTE_NAME + '=""'; -} - -/** - * Creates markup for a property. - * - * @param {string} name - * @param {*} value - * @return {?string} Markup string, or null if the property was invalid. - */ -function createMarkupForProperty(name, value) { - var propertyInfo = getPropertyInfo(name); - if (propertyInfo) { - if (shouldIgnoreValue(propertyInfo, value)) { - return ''; - } - var attributeName = propertyInfo.attributeName; - if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) { - return attributeName + '=""'; - } else if (typeof value !== 'boolean' || shouldAttributeAcceptBooleanValue(name)) { - return attributeName + '=' + quoteAttributeValueForBrowser(value); - } - } else if (shouldSetAttribute(name, value)) { - if (value == null) { - return ''; - } - return name + '=' + quoteAttributeValueForBrowser(value); - } - return null; -} - -/** - * Creates markup for a custom property. - * - * @param {string} name - * @param {*} value - * @return {string} Markup string, or empty string if the property was invalid. - */ -function createMarkupForCustomAttribute(name, value) { - if (!isAttributeNameSafe(name) || value == null) { - return ''; - } - return name + '=' + quoteAttributeValueForBrowser(value); -} - -var HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml'; -var MATH_NAMESPACE = 'http://www.w3.org/1998/Math/MathML'; -var SVG_NAMESPACE = 'http://www.w3.org/2000/svg'; - -var Namespaces = { - html: HTML_NAMESPACE, - mathml: MATH_NAMESPACE, - svg: SVG_NAMESPACE -}; - -// Assumes there is no parent namespace. -function getIntrinsicNamespace(type) { - switch (type) { - case 'svg': - return SVG_NAMESPACE; - case 'math': - return MATH_NAMESPACE; - default: - return HTML_NAMESPACE; - } -} - -function getChildNamespace(parentNamespace, type) { - if (parentNamespace == null || parentNamespace === HTML_NAMESPACE) { - // No (or default) parent namespace: potential entry point. - return getIntrinsicNamespace(type); - } - if (parentNamespace === SVG_NAMESPACE && type === 'foreignObject') { - // We're leaving SVG. - return HTML_NAMESPACE; - } - // By default, pass namespace below. - return parentNamespace; -} - -var ReactControlledValuePropTypes = { - checkPropTypes: null -}; - -{ - var hasReadOnlyValue = { - button: true, - checkbox: true, - image: true, - hidden: true, - radio: true, - reset: true, - submit: true - }; - - var propTypes = { - value: function (props, propName, componentName) { - if (!props[propName] || hasReadOnlyValue[props.type] || props.onChange || props.readOnly || props.disabled) { - return null; - } - return new Error('You provided a `value` prop to a form field without an ' + '`onChange` handler. This will render a read-only field. If ' + 'the field should be mutable use `defaultValue`. Otherwise, ' + 'set either `onChange` or `readOnly`.'); - }, - checked: function (props, propName, componentName) { - if (!props[propName] || props.onChange || props.readOnly || props.disabled) { - return null; - } - return new Error('You provided a `checked` prop to a form field without an ' + '`onChange` handler. This will render a read-only field. If ' + 'the field should be mutable use `defaultChecked`. Otherwise, ' + 'set either `onChange` or `readOnly`.'); - } - }; - - /** - * Provide a linked `value` attribute for controlled forms. You should not use - * this outside of the ReactDOM controlled form components. - */ - ReactControlledValuePropTypes.checkPropTypes = function (tagName, props, getStack) { - checkPropTypes(propTypes, props, 'prop', tagName, getStack); - }; -} - -// For HTML, certain tags should omit their close tag. We keep a whitelist for -// those special-case tags. - -var omittedCloseTags = { - area: true, - base: true, - br: true, - col: true, - embed: true, - hr: true, - img: true, - input: true, - keygen: true, - link: true, - meta: true, - param: true, - source: true, - track: true, - wbr: true -}; - -// For HTML, certain tags cannot have children. This has the same purpose as -// `omittedCloseTags` except that `menuitem` should still have its closing tag. - -var voidElementTags = _assign({ - menuitem: true -}, omittedCloseTags); - -var HTML = '__html'; - -function assertValidProps(tag, props, getStack) { - if (!props) { - return; - } - // Note the use of `==` which checks for null or undefined. - if (voidElementTags[tag]) { - !(props.children == null && props.dangerouslySetInnerHTML == null) ? invariant(false, '%s is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.%s', tag, getStack()) : void 0; - } - if (props.dangerouslySetInnerHTML != null) { - !(props.children == null) ? invariant(false, 'Can only set one of `children` or `props.dangerouslySetInnerHTML`.') : void 0; - !(typeof props.dangerouslySetInnerHTML === 'object' && HTML in props.dangerouslySetInnerHTML) ? invariant(false, '`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://fb.me/react-invariant-dangerously-set-inner-html for more information.') : void 0; - } - { - warning(props.suppressContentEditableWarning || !props.contentEditable || props.children == null, 'A component is `contentEditable` and contains `children` managed by ' + 'React. It is now your responsibility to guarantee that none of ' + 'those nodes are unexpectedly modified or duplicated. This is ' + 'probably not intentional.%s', getStack()); - } - !(props.style == null || typeof props.style === 'object') ? invariant(false, 'The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + \'em\'}} when using JSX.%s', getStack()) : void 0; -} - -/** - * CSS properties which accept numbers but are not in units of "px". - */ -var isUnitlessNumber = { - animationIterationCount: true, - borderImageOutset: true, - borderImageSlice: true, - borderImageWidth: true, - boxFlex: true, - boxFlexGroup: true, - boxOrdinalGroup: true, - columnCount: true, - columns: true, - flex: true, - flexGrow: true, - flexPositive: true, - flexShrink: true, - flexNegative: true, - flexOrder: true, - gridRow: true, - gridRowEnd: true, - gridRowSpan: true, - gridRowStart: true, - gridColumn: true, - gridColumnEnd: true, - gridColumnSpan: true, - gridColumnStart: true, - fontWeight: true, - lineClamp: true, - lineHeight: true, - opacity: true, - order: true, - orphans: true, - tabSize: true, - widows: true, - zIndex: true, - zoom: true, - - // SVG-related properties - fillOpacity: true, - floodOpacity: true, - stopOpacity: true, - strokeDasharray: true, - strokeDashoffset: true, - strokeMiterlimit: true, - strokeOpacity: true, - strokeWidth: true -}; - -/** - * @param {string} prefix vendor-specific prefix, eg: Webkit - * @param {string} key style name, eg: transitionDuration - * @return {string} style name prefixed with `prefix`, properly camelCased, eg: - * WebkitTransitionDuration - */ -function prefixKey(prefix, key) { - return prefix + key.charAt(0).toUpperCase() + key.substring(1); -} - -/** - * Support style names that may come passed in prefixed by adding permutations - * of vendor prefixes. - */ -var prefixes = ['Webkit', 'ms', 'Moz', 'O']; - -// Using Object.keys here, or else the vanilla for-in loop makes IE8 go into an -// infinite loop, because it iterates over the newly added props too. -Object.keys(isUnitlessNumber).forEach(function (prop) { - prefixes.forEach(function (prefix) { - isUnitlessNumber[prefixKey(prefix, prop)] = isUnitlessNumber[prop]; - }); -}); - -/** - * Convert a value into the proper css writable value. The style name `name` - * should be logical (no hyphens), as specified - * in `CSSProperty.isUnitlessNumber`. - * - * @param {string} name CSS property name such as `topMargin`. - * @param {*} value CSS property value such as `10px`. - * @return {string} Normalized style value with dimensions applied. - */ -function dangerousStyleValue(name, value, isCustomProperty) { - // Note that we've removed escapeTextForBrowser() calls here since the - // whole string will be escaped when the attribute is injected into - // the markup. If you provide unsafe user data here they can inject - // arbitrary CSS which may be problematic (I couldn't repro this): - // https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet - // http://www.thespanner.co.uk/2007/11/26/ultimate-xss-css-injection/ - // This is not an XSS hole but instead a potential CSS injection issue - // which has lead to a greater discussion about how we're going to - // trust URLs moving forward. See #2115901 - - var isEmpty = value == null || typeof value === 'boolean' || value === ''; - if (isEmpty) { - return ''; - } - - if (!isCustomProperty && typeof value === 'number' && value !== 0 && !(isUnitlessNumber.hasOwnProperty(name) && isUnitlessNumber[name])) { - return value + 'px'; // Presumes implicit 'px' suffix for unitless numbers - } - - return ('' + value).trim(); -} - -function isCustomComponent(tagName, props) { - if (tagName.indexOf('-') === -1) { - return typeof props.is === 'string'; - } - switch (tagName) { - // These are reserved SVG and MathML elements. - // We don't mind this whitelist too much because we expect it to never grow. - // The alternative is to track the namespace in a few places which is convoluted. - // https://w3c.github.io/webcomponents/spec/custom/#custom-elements-core-concepts - case 'annotation-xml': - case 'color-profile': - case 'font-face': - case 'font-face-src': - case 'font-face-uri': - case 'font-face-format': - case 'font-face-name': - case 'missing-glyph': - return false; - default: - return true; - } -} - -var warnValidStyle = emptyFunction; - -{ - // 'msTransform' is correct, but the other prefixes should be capitalized - var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/; - - // style values shouldn't contain a semicolon - var badStyleValueWithSemicolonPattern = /;\s*$/; - - var warnedStyleNames = {}; - var warnedStyleValues = {}; - var warnedForNaNValue = false; - var warnedForInfinityValue = false; - - var warnHyphenatedStyleName = function (name, getStack) { - if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) { - return; - } - - warnedStyleNames[name] = true; - warning(false, 'Unsupported style property %s. Did you mean %s?%s', name, camelizeStyleName(name), getStack()); - }; - - var warnBadVendoredStyleName = function (name, getStack) { - if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) { - return; - } - - warnedStyleNames[name] = true; - warning(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?%s', name, name.charAt(0).toUpperCase() + name.slice(1), getStack()); - }; - - var warnStyleValueWithSemicolon = function (name, value, getStack) { - if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) { - return; - } - - warnedStyleValues[value] = true; - warning(false, "Style property values shouldn't contain a semicolon. " + 'Try "%s: %s" instead.%s', name, value.replace(badStyleValueWithSemicolonPattern, ''), getStack()); - }; - - var warnStyleValueIsNaN = function (name, value, getStack) { - if (warnedForNaNValue) { - return; - } - - warnedForNaNValue = true; - warning(false, '`NaN` is an invalid value for the `%s` css style property.%s', name, getStack()); - }; - - var warnStyleValueIsInfinity = function (name, value, getStack) { - if (warnedForInfinityValue) { - return; - } - - warnedForInfinityValue = true; - warning(false, '`Infinity` is an invalid value for the `%s` css style property.%s', name, getStack()); - }; - - warnValidStyle = function (name, value, getStack) { - if (name.indexOf('-') > -1) { - warnHyphenatedStyleName(name, getStack); - } else if (badVendoredStyleNamePattern.test(name)) { - warnBadVendoredStyleName(name, getStack); - } else if (badStyleValueWithSemicolonPattern.test(value)) { - warnStyleValueWithSemicolon(name, value, getStack); - } - - if (typeof value === 'number') { - if (isNaN(value)) { - warnStyleValueIsNaN(name, value, getStack); - } else if (!isFinite(value)) { - warnStyleValueIsInfinity(name, value, getStack); - } - } - }; -} - -var warnValidStyle$1 = warnValidStyle; - -var ariaProperties = { - 'aria-current': 0, // state - 'aria-details': 0, - 'aria-disabled': 0, // state - 'aria-hidden': 0, // state - 'aria-invalid': 0, // state - 'aria-keyshortcuts': 0, - 'aria-label': 0, - 'aria-roledescription': 0, - // Widget Attributes - 'aria-autocomplete': 0, - 'aria-checked': 0, - 'aria-expanded': 0, - 'aria-haspopup': 0, - 'aria-level': 0, - 'aria-modal': 0, - 'aria-multiline': 0, - 'aria-multiselectable': 0, - 'aria-orientation': 0, - 'aria-placeholder': 0, - 'aria-pressed': 0, - 'aria-readonly': 0, - 'aria-required': 0, - 'aria-selected': 0, - 'aria-sort': 0, - 'aria-valuemax': 0, - 'aria-valuemin': 0, - 'aria-valuenow': 0, - 'aria-valuetext': 0, - // Live Region Attributes - 'aria-atomic': 0, - 'aria-busy': 0, - 'aria-live': 0, - 'aria-relevant': 0, - // Drag-and-Drop Attributes - 'aria-dropeffect': 0, - 'aria-grabbed': 0, - // Relationship Attributes - 'aria-activedescendant': 0, - 'aria-colcount': 0, - 'aria-colindex': 0, - 'aria-colspan': 0, - 'aria-controls': 0, - 'aria-describedby': 0, - 'aria-errormessage': 0, - 'aria-flowto': 0, - 'aria-labelledby': 0, - 'aria-owns': 0, - 'aria-posinset': 0, - 'aria-rowcount': 0, - 'aria-rowindex': 0, - 'aria-rowspan': 0, - 'aria-setsize': 0 -}; - -var warnedProperties = {}; -var rARIA = new RegExp('^(aria)-[' + ATTRIBUTE_NAME_CHAR + ']*$'); -var rARIACamel = new RegExp('^(aria)[A-Z][' + ATTRIBUTE_NAME_CHAR + ']*$'); - -var hasOwnProperty = Object.prototype.hasOwnProperty; - -function getStackAddendum$1() { - var stack = ReactDebugCurrentFrame.getStackAddendum(); - return stack != null ? stack : ''; -} - -function validateProperty(tagName, name) { - if (hasOwnProperty.call(warnedProperties, name) && warnedProperties[name]) { - return true; - } - - if (rARIACamel.test(name)) { - var ariaName = 'aria-' + name.slice(4).toLowerCase(); - var correctName = ariaProperties.hasOwnProperty(ariaName) ? ariaName : null; - - // If this is an aria-* attribute, but is not listed in the known DOM - // DOM properties, then it is an invalid aria-* attribute. - if (correctName == null) { - warning(false, 'Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.%s', name, getStackAddendum$1()); - warnedProperties[name] = true; - return true; - } - // aria-* attributes should be lowercase; suggest the lowercase version. - if (name !== correctName) { - warning(false, 'Invalid ARIA attribute `%s`. Did you mean `%s`?%s', name, correctName, getStackAddendum$1()); - warnedProperties[name] = true; - return true; - } - } - - if (rARIA.test(name)) { - var lowerCasedName = name.toLowerCase(); - var standardName = ariaProperties.hasOwnProperty(lowerCasedName) ? lowerCasedName : null; - - // If this is an aria-* attribute, but is not listed in the known DOM - // DOM properties, then it is an invalid aria-* attribute. - if (standardName == null) { - warnedProperties[name] = true; - return false; - } - // aria-* attributes should be lowercase; suggest the lowercase version. - if (name !== standardName) { - warning(false, 'Unknown ARIA attribute `%s`. Did you mean `%s`?%s', name, standardName, getStackAddendum$1()); - warnedProperties[name] = true; - return true; - } - } - - return true; -} - -function warnInvalidARIAProps(type, props) { - var invalidProps = []; - - for (var key in props) { - var isValid = validateProperty(type, key); - if (!isValid) { - invalidProps.push(key); - } - } - - var unknownPropString = invalidProps.map(function (prop) { - return '`' + prop + '`'; - }).join(', '); - - if (invalidProps.length === 1) { - warning(false, 'Invalid aria prop %s on <%s> tag. ' + 'For details, see https://fb.me/invalid-aria-prop%s', unknownPropString, type, getStackAddendum$1()); - } else if (invalidProps.length > 1) { - warning(false, 'Invalid aria props %s on <%s> tag. ' + 'For details, see https://fb.me/invalid-aria-prop%s', unknownPropString, type, getStackAddendum$1()); - } -} - -function validateProperties(type, props) { - if (isCustomComponent(type, props)) { - return; - } - warnInvalidARIAProps(type, props); -} - -var didWarnValueNull = false; - -function getStackAddendum$2() { - var stack = ReactDebugCurrentFrame.getStackAddendum(); - return stack != null ? stack : ''; -} - -function validateProperties$1(type, props) { - if (type !== 'input' && type !== 'textarea' && type !== 'select') { - return; - } - - if (props != null && props.value === null && !didWarnValueNull) { - didWarnValueNull = true; - if (type === 'select' && props.multiple) { - warning(false, '`value` prop on `%s` should not be null. ' + 'Consider using an empty array when `multiple` is set to `true` ' + 'to clear the component or `undefined` for uncontrolled components.%s', type, getStackAddendum$2()); - } else { - warning(false, '`value` prop on `%s` should not be null. ' + 'Consider using an empty string to clear the component or `undefined` ' + 'for uncontrolled components.%s', type, getStackAddendum$2()); - } - } -} - -/** - * Registers plugins so that they can extract and dispatch events. - * - * @see {EventPluginHub} - */ - -/** - * Ordered list of injected plugins. - */ -var plugins = []; - -/** - * Mapping from event name to dispatch config - */ - - -/** - * Mapping from registration name to plugin module - */ -var registrationNameModules = {}; - -/** - * Mapping from registration name to event name - */ - - -/** - * Mapping from lowercase registration names to the properly cased version, - * used to warn in the case of missing event handlers. Available - * only in true. - * @type {Object} - */ -var possibleRegistrationNames = {}; -// Trust the developer to only use possibleRegistrationNames in true - -/** - * Injects an ordering of plugins (by plugin name). This allows the ordering - * to be decoupled from injection of the actual plugins so that ordering is - * always deterministic regardless of packaging, on-the-fly injection, etc. - * - * @param {array} InjectedEventPluginOrder - * @internal - * @see {EventPluginHub.injection.injectEventPluginOrder} - */ - - -/** - * Injects plugins to be used by `EventPluginHub`. The plugin names must be - * in the ordering injected by `injectEventPluginOrder`. - * - * Plugins can be injected as part of page initialization or on-the-fly. - * - * @param {object} injectedNamesToPlugins Map from names to plugin modules. - * @internal - * @see {EventPluginHub.injection.injectEventPluginsByName} - */ - -// When adding attributes to the HTML or SVG whitelist, be sure to -// also add them to this module to ensure casing and incorrect name -// warnings. -var possibleStandardNames = { - // HTML - accept: 'accept', - acceptcharset: 'acceptCharset', - 'accept-charset': 'acceptCharset', - accesskey: 'accessKey', - action: 'action', - allowfullscreen: 'allowFullScreen', - alt: 'alt', - as: 'as', - async: 'async', - autocapitalize: 'autoCapitalize', - autocomplete: 'autoComplete', - autocorrect: 'autoCorrect', - autofocus: 'autoFocus', - autoplay: 'autoPlay', - autosave: 'autoSave', - capture: 'capture', - cellpadding: 'cellPadding', - cellspacing: 'cellSpacing', - challenge: 'challenge', - charset: 'charSet', - checked: 'checked', - children: 'children', - cite: 'cite', - 'class': 'className', - classid: 'classID', - classname: 'className', - cols: 'cols', - colspan: 'colSpan', - content: 'content', - contenteditable: 'contentEditable', - contextmenu: 'contextMenu', - controls: 'controls', - controlslist: 'controlsList', - coords: 'coords', - crossorigin: 'crossOrigin', - dangerouslysetinnerhtml: 'dangerouslySetInnerHTML', - data: 'data', - datetime: 'dateTime', - 'default': 'default', - defaultchecked: 'defaultChecked', - defaultvalue: 'defaultValue', - defer: 'defer', - dir: 'dir', - disabled: 'disabled', - download: 'download', - draggable: 'draggable', - enctype: 'encType', - 'for': 'htmlFor', - form: 'form', - formmethod: 'formMethod', - formaction: 'formAction', - formenctype: 'formEncType', - formnovalidate: 'formNoValidate', - formtarget: 'formTarget', - frameborder: 'frameBorder', - headers: 'headers', - height: 'height', - hidden: 'hidden', - high: 'high', - href: 'href', - hreflang: 'hrefLang', - htmlfor: 'htmlFor', - httpequiv: 'httpEquiv', - 'http-equiv': 'httpEquiv', - icon: 'icon', - id: 'id', - innerhtml: 'innerHTML', - inputmode: 'inputMode', - integrity: 'integrity', - is: 'is', - itemid: 'itemID', - itemprop: 'itemProp', - itemref: 'itemRef', - itemscope: 'itemScope', - itemtype: 'itemType', - keyparams: 'keyParams', - keytype: 'keyType', - kind: 'kind', - label: 'label', - lang: 'lang', - list: 'list', - loop: 'loop', - low: 'low', - manifest: 'manifest', - marginwidth: 'marginWidth', - marginheight: 'marginHeight', - max: 'max', - maxlength: 'maxLength', - media: 'media', - mediagroup: 'mediaGroup', - method: 'method', - min: 'min', - minlength: 'minLength', - multiple: 'multiple', - muted: 'muted', - name: 'name', - nonce: 'nonce', - novalidate: 'noValidate', - open: 'open', - optimum: 'optimum', - pattern: 'pattern', - placeholder: 'placeholder', - playsinline: 'playsInline', - poster: 'poster', - preload: 'preload', - profile: 'profile', - radiogroup: 'radioGroup', - readonly: 'readOnly', - referrerpolicy: 'referrerPolicy', - rel: 'rel', - required: 'required', - reversed: 'reversed', - role: 'role', - rows: 'rows', - rowspan: 'rowSpan', - sandbox: 'sandbox', - scope: 'scope', - scoped: 'scoped', - scrolling: 'scrolling', - seamless: 'seamless', - selected: 'selected', - shape: 'shape', - size: 'size', - sizes: 'sizes', - span: 'span', - spellcheck: 'spellCheck', - src: 'src', - srcdoc: 'srcDoc', - srclang: 'srcLang', - srcset: 'srcSet', - start: 'start', - step: 'step', - style: 'style', - summary: 'summary', - tabindex: 'tabIndex', - target: 'target', - title: 'title', - type: 'type', - usemap: 'useMap', - value: 'value', - width: 'width', - wmode: 'wmode', - wrap: 'wrap', - - // SVG - about: 'about', - accentheight: 'accentHeight', - 'accent-height': 'accentHeight', - accumulate: 'accumulate', - additive: 'additive', - alignmentbaseline: 'alignmentBaseline', - 'alignment-baseline': 'alignmentBaseline', - allowreorder: 'allowReorder', - alphabetic: 'alphabetic', - amplitude: 'amplitude', - arabicform: 'arabicForm', - 'arabic-form': 'arabicForm', - ascent: 'ascent', - attributename: 'attributeName', - attributetype: 'attributeType', - autoreverse: 'autoReverse', - azimuth: 'azimuth', - basefrequency: 'baseFrequency', - baselineshift: 'baselineShift', - 'baseline-shift': 'baselineShift', - baseprofile: 'baseProfile', - bbox: 'bbox', - begin: 'begin', - bias: 'bias', - by: 'by', - calcmode: 'calcMode', - capheight: 'capHeight', - 'cap-height': 'capHeight', - clip: 'clip', - clippath: 'clipPath', - 'clip-path': 'clipPath', - clippathunits: 'clipPathUnits', - cliprule: 'clipRule', - 'clip-rule': 'clipRule', - color: 'color', - colorinterpolation: 'colorInterpolation', - 'color-interpolation': 'colorInterpolation', - colorinterpolationfilters: 'colorInterpolationFilters', - 'color-interpolation-filters': 'colorInterpolationFilters', - colorprofile: 'colorProfile', - 'color-profile': 'colorProfile', - colorrendering: 'colorRendering', - 'color-rendering': 'colorRendering', - contentscripttype: 'contentScriptType', - contentstyletype: 'contentStyleType', - cursor: 'cursor', - cx: 'cx', - cy: 'cy', - d: 'd', - datatype: 'datatype', - decelerate: 'decelerate', - descent: 'descent', - diffuseconstant: 'diffuseConstant', - direction: 'direction', - display: 'display', - divisor: 'divisor', - dominantbaseline: 'dominantBaseline', - 'dominant-baseline': 'dominantBaseline', - dur: 'dur', - dx: 'dx', - dy: 'dy', - edgemode: 'edgeMode', - elevation: 'elevation', - enablebackground: 'enableBackground', - 'enable-background': 'enableBackground', - end: 'end', - exponent: 'exponent', - externalresourcesrequired: 'externalResourcesRequired', - fill: 'fill', - fillopacity: 'fillOpacity', - 'fill-opacity': 'fillOpacity', - fillrule: 'fillRule', - 'fill-rule': 'fillRule', - filter: 'filter', - filterres: 'filterRes', - filterunits: 'filterUnits', - floodopacity: 'floodOpacity', - 'flood-opacity': 'floodOpacity', - floodcolor: 'floodColor', - 'flood-color': 'floodColor', - focusable: 'focusable', - fontfamily: 'fontFamily', - 'font-family': 'fontFamily', - fontsize: 'fontSize', - 'font-size': 'fontSize', - fontsizeadjust: 'fontSizeAdjust', - 'font-size-adjust': 'fontSizeAdjust', - fontstretch: 'fontStretch', - 'font-stretch': 'fontStretch', - fontstyle: 'fontStyle', - 'font-style': 'fontStyle', - fontvariant: 'fontVariant', - 'font-variant': 'fontVariant', - fontweight: 'fontWeight', - 'font-weight': 'fontWeight', - format: 'format', - from: 'from', - fx: 'fx', - fy: 'fy', - g1: 'g1', - g2: 'g2', - glyphname: 'glyphName', - 'glyph-name': 'glyphName', - glyphorientationhorizontal: 'glyphOrientationHorizontal', - 'glyph-orientation-horizontal': 'glyphOrientationHorizontal', - glyphorientationvertical: 'glyphOrientationVertical', - 'glyph-orientation-vertical': 'glyphOrientationVertical', - glyphref: 'glyphRef', - gradienttransform: 'gradientTransform', - gradientunits: 'gradientUnits', - hanging: 'hanging', - horizadvx: 'horizAdvX', - 'horiz-adv-x': 'horizAdvX', - horizoriginx: 'horizOriginX', - 'horiz-origin-x': 'horizOriginX', - ideographic: 'ideographic', - imagerendering: 'imageRendering', - 'image-rendering': 'imageRendering', - in2: 'in2', - 'in': 'in', - inlist: 'inlist', - intercept: 'intercept', - k1: 'k1', - k2: 'k2', - k3: 'k3', - k4: 'k4', - k: 'k', - kernelmatrix: 'kernelMatrix', - kernelunitlength: 'kernelUnitLength', - kerning: 'kerning', - keypoints: 'keyPoints', - keysplines: 'keySplines', - keytimes: 'keyTimes', - lengthadjust: 'lengthAdjust', - letterspacing: 'letterSpacing', - 'letter-spacing': 'letterSpacing', - lightingcolor: 'lightingColor', - 'lighting-color': 'lightingColor', - limitingconeangle: 'limitingConeAngle', - local: 'local', - markerend: 'markerEnd', - 'marker-end': 'markerEnd', - markerheight: 'markerHeight', - markermid: 'markerMid', - 'marker-mid': 'markerMid', - markerstart: 'markerStart', - 'marker-start': 'markerStart', - markerunits: 'markerUnits', - markerwidth: 'markerWidth', - mask: 'mask', - maskcontentunits: 'maskContentUnits', - maskunits: 'maskUnits', - mathematical: 'mathematical', - mode: 'mode', - numoctaves: 'numOctaves', - offset: 'offset', - opacity: 'opacity', - operator: 'operator', - order: 'order', - orient: 'orient', - orientation: 'orientation', - origin: 'origin', - overflow: 'overflow', - overlineposition: 'overlinePosition', - 'overline-position': 'overlinePosition', - overlinethickness: 'overlineThickness', - 'overline-thickness': 'overlineThickness', - paintorder: 'paintOrder', - 'paint-order': 'paintOrder', - panose1: 'panose1', - 'panose-1': 'panose1', - pathlength: 'pathLength', - patterncontentunits: 'patternContentUnits', - patterntransform: 'patternTransform', - patternunits: 'patternUnits', - pointerevents: 'pointerEvents', - 'pointer-events': 'pointerEvents', - points: 'points', - pointsatx: 'pointsAtX', - pointsaty: 'pointsAtY', - pointsatz: 'pointsAtZ', - prefix: 'prefix', - preservealpha: 'preserveAlpha', - preserveaspectratio: 'preserveAspectRatio', - primitiveunits: 'primitiveUnits', - property: 'property', - r: 'r', - radius: 'radius', - refx: 'refX', - refy: 'refY', - renderingintent: 'renderingIntent', - 'rendering-intent': 'renderingIntent', - repeatcount: 'repeatCount', - repeatdur: 'repeatDur', - requiredextensions: 'requiredExtensions', - requiredfeatures: 'requiredFeatures', - resource: 'resource', - restart: 'restart', - result: 'result', - results: 'results', - rotate: 'rotate', - rx: 'rx', - ry: 'ry', - scale: 'scale', - security: 'security', - seed: 'seed', - shaperendering: 'shapeRendering', - 'shape-rendering': 'shapeRendering', - slope: 'slope', - spacing: 'spacing', - specularconstant: 'specularConstant', - specularexponent: 'specularExponent', - speed: 'speed', - spreadmethod: 'spreadMethod', - startoffset: 'startOffset', - stddeviation: 'stdDeviation', - stemh: 'stemh', - stemv: 'stemv', - stitchtiles: 'stitchTiles', - stopcolor: 'stopColor', - 'stop-color': 'stopColor', - stopopacity: 'stopOpacity', - 'stop-opacity': 'stopOpacity', - strikethroughposition: 'strikethroughPosition', - 'strikethrough-position': 'strikethroughPosition', - strikethroughthickness: 'strikethroughThickness', - 'strikethrough-thickness': 'strikethroughThickness', - string: 'string', - stroke: 'stroke', - strokedasharray: 'strokeDasharray', - 'stroke-dasharray': 'strokeDasharray', - strokedashoffset: 'strokeDashoffset', - 'stroke-dashoffset': 'strokeDashoffset', - strokelinecap: 'strokeLinecap', - 'stroke-linecap': 'strokeLinecap', - strokelinejoin: 'strokeLinejoin', - 'stroke-linejoin': 'strokeLinejoin', - strokemiterlimit: 'strokeMiterlimit', - 'stroke-miterlimit': 'strokeMiterlimit', - strokewidth: 'strokeWidth', - 'stroke-width': 'strokeWidth', - strokeopacity: 'strokeOpacity', - 'stroke-opacity': 'strokeOpacity', - suppresscontenteditablewarning: 'suppressContentEditableWarning', - suppresshydrationwarning: 'suppressHydrationWarning', - surfacescale: 'surfaceScale', - systemlanguage: 'systemLanguage', - tablevalues: 'tableValues', - targetx: 'targetX', - targety: 'targetY', - textanchor: 'textAnchor', - 'text-anchor': 'textAnchor', - textdecoration: 'textDecoration', - 'text-decoration': 'textDecoration', - textlength: 'textLength', - textrendering: 'textRendering', - 'text-rendering': 'textRendering', - to: 'to', - transform: 'transform', - 'typeof': 'typeof', - u1: 'u1', - u2: 'u2', - underlineposition: 'underlinePosition', - 'underline-position': 'underlinePosition', - underlinethickness: 'underlineThickness', - 'underline-thickness': 'underlineThickness', - unicode: 'unicode', - unicodebidi: 'unicodeBidi', - 'unicode-bidi': 'unicodeBidi', - unicoderange: 'unicodeRange', - 'unicode-range': 'unicodeRange', - unitsperem: 'unitsPerEm', - 'units-per-em': 'unitsPerEm', - unselectable: 'unselectable', - valphabetic: 'vAlphabetic', - 'v-alphabetic': 'vAlphabetic', - values: 'values', - vectoreffect: 'vectorEffect', - 'vector-effect': 'vectorEffect', - version: 'version', - vertadvy: 'vertAdvY', - 'vert-adv-y': 'vertAdvY', - vertoriginx: 'vertOriginX', - 'vert-origin-x': 'vertOriginX', - vertoriginy: 'vertOriginY', - 'vert-origin-y': 'vertOriginY', - vhanging: 'vHanging', - 'v-hanging': 'vHanging', - videographic: 'vIdeographic', - 'v-ideographic': 'vIdeographic', - viewbox: 'viewBox', - viewtarget: 'viewTarget', - visibility: 'visibility', - vmathematical: 'vMathematical', - 'v-mathematical': 'vMathematical', - vocab: 'vocab', - widths: 'widths', - wordspacing: 'wordSpacing', - 'word-spacing': 'wordSpacing', - writingmode: 'writingMode', - 'writing-mode': 'writingMode', - x1: 'x1', - x2: 'x2', - x: 'x', - xchannelselector: 'xChannelSelector', - xheight: 'xHeight', - 'x-height': 'xHeight', - xlinkactuate: 'xlinkActuate', - 'xlink:actuate': 'xlinkActuate', - xlinkarcrole: 'xlinkArcrole', - 'xlink:arcrole': 'xlinkArcrole', - xlinkhref: 'xlinkHref', - 'xlink:href': 'xlinkHref', - xlinkrole: 'xlinkRole', - 'xlink:role': 'xlinkRole', - xlinkshow: 'xlinkShow', - 'xlink:show': 'xlinkShow', - xlinktitle: 'xlinkTitle', - 'xlink:title': 'xlinkTitle', - xlinktype: 'xlinkType', - 'xlink:type': 'xlinkType', - xmlbase: 'xmlBase', - 'xml:base': 'xmlBase', - xmllang: 'xmlLang', - 'xml:lang': 'xmlLang', - xmlns: 'xmlns', - 'xml:space': 'xmlSpace', - xmlnsxlink: 'xmlnsXlink', - 'xmlns:xlink': 'xmlnsXlink', - xmlspace: 'xmlSpace', - y1: 'y1', - y2: 'y2', - y: 'y', - ychannelselector: 'yChannelSelector', - z: 'z', - zoomandpan: 'zoomAndPan' -}; - -function getStackAddendum$3() { - var stack = ReactDebugCurrentFrame.getStackAddendum(); - return stack != null ? stack : ''; -} - -{ - var warnedProperties$1 = {}; - var hasOwnProperty$1 = Object.prototype.hasOwnProperty; - var EVENT_NAME_REGEX = /^on[A-Z]/; - var rARIA$1 = new RegExp('^(aria)-[' + ATTRIBUTE_NAME_CHAR + ']*$'); - var rARIACamel$1 = new RegExp('^(aria)[A-Z][' + ATTRIBUTE_NAME_CHAR + ']*$'); - - var validateProperty$1 = function (tagName, name, value) { - if (hasOwnProperty$1.call(warnedProperties$1, name) && warnedProperties$1[name]) { - return true; - } - - if (registrationNameModules.hasOwnProperty(name)) { - return true; - } - - if (plugins.length === 0 && EVENT_NAME_REGEX.test(name)) { - // If no event plugins have been injected, we might be in a server environment. - // Don't check events in this case. - return true; - } - - var lowerCasedName = name.toLowerCase(); - var registrationName = possibleRegistrationNames.hasOwnProperty(lowerCasedName) ? possibleRegistrationNames[lowerCasedName] : null; - - if (registrationName != null) { - warning(false, 'Invalid event handler property `%s`. Did you mean `%s`?%s', name, registrationName, getStackAddendum$3()); - warnedProperties$1[name] = true; - return true; - } - - if (lowerCasedName.indexOf('on') === 0 && lowerCasedName.length > 2) { - warning(false, 'Unknown event handler property `%s`. It will be ignored.%s', name, getStackAddendum$3()); - warnedProperties$1[name] = true; - return true; - } - - // Let the ARIA attribute hook validate ARIA attributes - if (rARIA$1.test(name) || rARIACamel$1.test(name)) { - return true; - } - - if (lowerCasedName === 'onfocusin' || lowerCasedName === 'onfocusout') { - warning(false, 'React uses onFocus and onBlur instead of onFocusIn and onFocusOut. ' + 'All React events are normalized to bubble, so onFocusIn and onFocusOut ' + 'are not needed/supported by React.'); - warnedProperties$1[name] = true; - return true; - } - - if (lowerCasedName === 'innerhtml') { - warning(false, 'Directly setting property `innerHTML` is not permitted. ' + 'For more information, lookup documentation on `dangerouslySetInnerHTML`.'); - warnedProperties$1[name] = true; - return true; - } - - if (lowerCasedName === 'aria') { - warning(false, 'The `aria` attribute is reserved for future use in React. ' + 'Pass individual `aria-` attributes instead.'); - warnedProperties$1[name] = true; - return true; - } - - if (lowerCasedName === 'is' && value !== null && value !== undefined && typeof value !== 'string') { - warning(false, 'Received a `%s` for a string attribute `is`. If this is expected, cast ' + 'the value to a string.%s', typeof value, getStackAddendum$3()); - warnedProperties$1[name] = true; - return true; - } - - if (typeof value === 'number' && isNaN(value)) { - warning(false, 'Received NaN for the `%s` attribute. If this is expected, cast ' + 'the value to a string.%s', name, getStackAddendum$3()); - warnedProperties$1[name] = true; - return true; - } - - var isReserved = isReservedProp(name); - - // Known attributes should match the casing specified in the property config. - if (possibleStandardNames.hasOwnProperty(lowerCasedName)) { - var standardName = possibleStandardNames[lowerCasedName]; - if (standardName !== name) { - warning(false, 'Invalid DOM property `%s`. Did you mean `%s`?%s', name, standardName, getStackAddendum$3()); - warnedProperties$1[name] = true; - return true; - } - } else if (!isReserved && name !== lowerCasedName) { - // Unknown attributes should have lowercase casing since that's how they - // will be cased anyway with server rendering. - warning(false, 'React does not recognize the `%s` prop on a DOM element. If you ' + 'intentionally want it to appear in the DOM as a custom ' + 'attribute, spell it as lowercase `%s` instead. ' + 'If you accidentally passed it from a parent component, remove ' + 'it from the DOM element.%s', name, lowerCasedName, getStackAddendum$3()); - warnedProperties$1[name] = true; - return true; - } - - if (typeof value === 'boolean' && !shouldAttributeAcceptBooleanValue(name)) { - if (value) { - warning(false, 'Received `%s` for a non-boolean attribute `%s`.\n\n' + 'If you want to write it to the DOM, pass a string instead: ' + '%s="%s" or %s={value.toString()}.%s', value, name, name, value, name, getStackAddendum$3()); - } else { - warning(false, 'Received `%s` for a non-boolean attribute `%s`.\n\n' + 'If you want to write it to the DOM, pass a string instead: ' + '%s="%s" or %s={value.toString()}.\n\n' + 'If you used to conditionally omit it with %s={condition && value}, ' + 'pass %s={condition ? value : undefined} instead.%s', value, name, name, value, name, name, name, getStackAddendum$3()); - } - warnedProperties$1[name] = true; - return true; - } - - // Now that we've validated casing, do not validate - // data types for reserved props - if (isReserved) { - return true; - } - - // Warn when a known attribute is a bad type - if (!shouldSetAttribute(name, value)) { - warnedProperties$1[name] = true; - return false; - } - - return true; - }; -} - -var warnUnknownProperties = function (type, props) { - var unknownProps = []; - for (var key in props) { - var isValid = validateProperty$1(type, key, props[key]); - if (!isValid) { - unknownProps.push(key); - } - } - - var unknownPropString = unknownProps.map(function (prop) { - return '`' + prop + '`'; - }).join(', '); - if (unknownProps.length === 1) { - warning(false, 'Invalid value for prop %s on <%s> tag. Either remove it from the element, ' + 'or pass a string or number value to keep it in the DOM. ' + 'For details, see https://fb.me/react-attribute-behavior%s', unknownPropString, type, getStackAddendum$3()); - } else if (unknownProps.length > 1) { - warning(false, 'Invalid values for props %s on <%s> tag. Either remove them from the element, ' + 'or pass a string or number value to keep them in the DOM. ' + 'For details, see https://fb.me/react-attribute-behavior%s', unknownPropString, type, getStackAddendum$3()); - } -}; - -function validateProperties$2(type, props) { - if (isCustomComponent(type, props)) { - return; - } - warnUnknownProperties(type, props); -} - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -var REACT_FRAGMENT_TYPE = typeof Symbol === 'function' && Symbol['for'] && Symbol['for']('react.fragment') || 0xeacb; - -// Based on reading the React.Children implementation. TODO: type this somewhere? - -var toArray = React.Children.toArray; - -var getStackAddendum = emptyFunction.thatReturns(''); - -{ - var validatePropertiesInDevelopment = function (type, props) { - validateProperties(type, props); - validateProperties$1(type, props); - validateProperties$2(type, props); - }; - - var describeStackFrame = function (element) { - var source = element._source; - var type = element.type; - var name = getComponentName(type); - var ownerName = null; - return describeComponentFrame(name, source, ownerName); - }; - - var currentDebugStack = null; - var currentDebugElementStack = null; - var setCurrentDebugStack = function (stack) { - var frame = stack[stack.length - 1]; - currentDebugElementStack = frame.debugElementStack; - // We are about to enter a new composite stack, reset the array. - currentDebugElementStack.length = 0; - currentDebugStack = stack; - ReactDebugCurrentFrame.getCurrentStack = getStackAddendum; - }; - var pushElementToDebugStack = function (element) { - if (currentDebugElementStack !== null) { - currentDebugElementStack.push(element); - } - }; - var resetCurrentDebugStack = function () { - currentDebugElementStack = null; - currentDebugStack = null; - ReactDebugCurrentFrame.getCurrentStack = null; - }; - getStackAddendum = function () { - if (currentDebugStack === null) { - return ''; - } - var stack = ''; - var debugStack = currentDebugStack; - for (var i = debugStack.length - 1; i >= 0; i--) { - var frame = debugStack[i]; - var _debugElementStack = frame.debugElementStack; - for (var ii = _debugElementStack.length - 1; ii >= 0; ii--) { - stack += describeStackFrame(_debugElementStack[ii]); - } - } - return stack; - }; -} - -var didWarnDefaultInputValue = false; -var didWarnDefaultChecked = false; -var didWarnDefaultSelectValue = false; -var didWarnDefaultTextareaValue = false; -var didWarnInvalidOptionChildren = false; -var didWarnAboutNoopUpdateForComponent = {}; -var valuePropNames = ['value', 'defaultValue']; -var newlineEatingTags = { - listing: true, - pre: true, - textarea: true -}; - -function getComponentName(type) { - return typeof type === 'string' ? type : typeof type === 'function' ? type.displayName || type.name : null; -} - -// We accept any tag to be rendered but since this gets injected into arbitrary -// HTML, we want to make sure that it's a safe tag. -// http://www.w3.org/TR/REC-xml/#NT-Name -var VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\.\-\d]*$/; // Simplified subset -var validatedTagCache = {}; -function validateDangerousTag(tag) { - if (!validatedTagCache.hasOwnProperty(tag)) { - !VALID_TAG_REGEX.test(tag) ? invariant(false, 'Invalid tag: %s', tag) : void 0; - validatedTagCache[tag] = true; - } -} - -var processStyleName = memoizeStringOnly(function (styleName) { - return hyphenateStyleName(styleName); -}); - -function createMarkupForStyles(styles) { - var serialized = ''; - var delimiter = ''; - for (var styleName in styles) { - if (!styles.hasOwnProperty(styleName)) { - continue; - } - var isCustomProperty = styleName.indexOf('--') === 0; - var styleValue = styles[styleName]; - { - if (!isCustomProperty) { - warnValidStyle$1(styleName, styleValue, getStackAddendum); - } - } - if (styleValue != null) { - serialized += delimiter + processStyleName(styleName) + ':'; - serialized += dangerousStyleValue(styleName, styleValue, isCustomProperty); - - delimiter = ';'; - } - } - return serialized || null; -} - -function warnNoop(publicInstance, callerName) { - { - var constructor = publicInstance.constructor; - var componentName = constructor && getComponentName(constructor) || 'ReactClass'; - var warningKey = componentName + '.' + callerName; - if (didWarnAboutNoopUpdateForComponent[warningKey]) { - return; - } - - warning(false, '%s(...): Can only update a mounting component. ' + 'This usually means you called %s() outside componentWillMount() on the server. ' + 'This is a no-op.\n\nPlease check the code for the %s component.', callerName, callerName, componentName); - didWarnAboutNoopUpdateForComponent[warningKey] = true; - } -} - -function shouldConstruct(Component) { - return Component.prototype && Component.prototype.isReactComponent; -} - -function getNonChildrenInnerMarkup(props) { - var innerHTML = props.dangerouslySetInnerHTML; - if (innerHTML != null) { - if (innerHTML.__html != null) { - return innerHTML.__html; - } - } else { - var content = props.children; - if (typeof content === 'string' || typeof content === 'number') { - return escapeTextContentForBrowser(content); - } - } - return null; -} - -function flattenTopLevelChildren(children) { - if (!React.isValidElement(children)) { - return toArray(children); - } - var element = children; - if (element.type !== REACT_FRAGMENT_TYPE) { - return [element]; - } - var fragmentChildren = element.props.children; - if (!React.isValidElement(fragmentChildren)) { - return toArray(fragmentChildren); - } - var fragmentChildElement = fragmentChildren; - return [fragmentChildElement]; -} - -function flattenOptionChildren(children) { - var content = ''; - // Flatten children and warn if they aren't strings or numbers; - // invalid types are ignored. - React.Children.forEach(children, function (child) { - if (child == null) { - return; - } - if (typeof child === 'string' || typeof child === 'number') { - content += child; - } else { - { - if (!didWarnInvalidOptionChildren) { - didWarnInvalidOptionChildren = true; - warning(false, 'Only strings and numbers are supported as