├── .gitattributes
├── .gitignore
├── AccessingEnvVariablesRC1
├── .gitignore
├── Controllers
│ └── ValuesController.cs
├── Startup.cs
├── config.json
├── project.json
└── wwwroot
│ ├── README.md
│ └── web.config
├── AspNetCoreAntiforgery
├── .vs
│ ├── AspNetCoreAntiforgery
│ │ ├── DesignTimeBuild
│ │ │ └── .dtbcache
│ │ └── v15
│ │ │ ├── .suo
│ │ │ └── Server
│ │ │ └── sqlite3
│ │ │ ├── db.lock
│ │ │ ├── storage.ide
│ │ │ ├── storage.ide-shm
│ │ │ └── storage.ide-wal
│ └── config
│ │ └── applicationhost.config
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── AspNetCoreAntiforgery.csproj
├── Controllers
│ └── ValuesController.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── appsettings.Development.json
└── appsettings.json
├── AspNetCoreApiReturnXmlString
├── Program.cs
├── XmlController.cs
└── project.json
├── AspNetCoreAppUse
├── AspNetCoreAppUse.csproj
├── Controllers
│ └── HomeController.cs
├── Models
│ └── ErrorViewModel.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── Views
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ ├── Index.cshtml
│ │ └── Privacy.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ ├── _CookieConsentPartial.cshtml
│ │ ├── _Layout.cshtml
│ │ └── _ValidationScriptsPartial.cshtml
│ ├── _ViewImports.cshtml
│ └── _ViewStart.cshtml
├── appsettings.Development.json
├── appsettings.json
└── wwwroot
│ ├── css
│ ├── site.css
│ └── site.min.css
│ ├── favicon.ico
│ ├── images
│ ├── banner1.svg
│ ├── banner2.svg
│ └── banner3.svg
│ ├── js
│ ├── site.js
│ └── site.min.js
│ └── lib
│ ├── bootstrap
│ ├── .bower.json
│ ├── LICENSE
│ └── dist
│ │ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap-theme.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ └── bootstrap.min.css.map
│ │ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
│ ├── jquery-validation-unobtrusive
│ ├── .bower.json
│ ├── LICENSE.txt
│ ├── jquery.validate.unobtrusive.js
│ └── jquery.validate.unobtrusive.min.js
│ ├── jquery-validation
│ ├── .bower.json
│ ├── LICENSE.md
│ └── dist
│ │ ├── additional-methods.js
│ │ ├── additional-methods.min.js
│ │ ├── jquery.validate.js
│ │ └── jquery.validate.min.js
│ └── jquery
│ ├── .bower.json
│ ├── LICENSE.txt
│ └── dist
│ ├── jquery.js
│ ├── jquery.min.js
│ └── jquery.min.map
├── AspNetCoreCorsWildcard
├── .gitignore
├── MyCorsService.cs
├── Startup.cs
└── project.json
├── AspNetCoreCustomControllerNames
├── MyControllerFeatureProvider.cs
├── NuGet.Config
├── OrdersFoobar.cs
├── OrdersFoobarGeneric.cs
├── Program.cs
└── project.json
├── AspNetCoreDependencyInjectionFromMiddleware
├── AspNetCoreDependencyInjectionFromMiddleware.csproj
├── Customer.cs
├── CustomerService.cs
├── MyController.cs
├── MyDependency.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── SupplyApiClientHttpSettings.cs
└── appsettings.json
├── AspNetCoreEntityFrameworkMigrations
├── DataLayer.Migrations
│ ├── Migrations
│ │ ├── 20161108170633_initial.Designer.cs
│ │ ├── 20161108170633_initial.cs
│ │ └── MyContextModelSnapshot.cs
│ ├── Program.cs
│ ├── appsettings.json
│ └── project.json
├── DataLayer
│ ├── MyContext.cs
│ ├── MyDataModel.cs
│ └── project.json
└── README.md
├── AspNetCoreEnvironments
├── Program.cs
└── project.json
├── AspNetCoreIDistributedCache
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── AspNetCoreIDistributedCache.csproj
├── Program.cs
├── Properties
│ └── launchSettings.json
└── Startup.cs
├── AspNetCoreIIS404
├── HomeController.cs
├── Program.cs
├── index.html
└── project.json
├── AspNetCoreJsonToViewModel
├── AspNetCoreJsonToViewModel.csproj
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
└── wwwroot
│ └── index.html
├── AspNetCoreKendoMvc
├── Program.cs
├── README.md
└── project.json
├── AspNetCoreKestrelCertificate
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── AspNetCoreKestrelCertificate.csproj
├── Controllers
│ └── ValuesController.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── appsettings.Development.json
└── appsettings.json
├── AspNetCoreMiddlewareRedirect
├── Program.cs
└── project.json
├── AspNetCoreMigrationsAzureRC1
├── .gitignore
├── Controllers
│ └── ValuesController.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── appsettings.json
├── project.json
└── wwwroot
│ └── web.config
├── AspNetCoreMultipartByterRanges
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── Program.cs
├── Startup.cs
├── blue.jpg
├── green.jpg
├── project.json
└── red.jpg
├── AspNetCoreOData
├── NuGet.Config
├── Program.cs
├── Temp
│ ├── Program.cs
│ └── project.json
└── project.json
├── AspNetCoreOptionsSnapshotInService
├── AspNetCoreOptionsSnapshotInService.csproj
├── Customer.cs
├── CustomerService.cs
├── MyController.cs
├── MyDependency.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── SupplyApiClientHttpSettings.cs
└── appsettings.json
├── AspNetCorePlayground
├── .vscode
│ ├── launch.json
│ ├── settings.json
│ └── tasks.json
├── ActionResults
│ └── MultipartContentActionResult.cs
├── AspNetCorePlayground.csproj
├── Controllers
│ └── HomeController.cs
├── Filters
│ └── MyActionFilter.cs
├── ModelBinders
│ └── MyFirstModelBinder.cs
├── Models
│ ├── ErrorViewModel.cs
│ └── MyFirstModelBinderTest.cs
├── MyFirstUrlHelper.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── README.md
├── Startup.cs
├── TagHelpers
│ ├── MyFirstTagHelper.cs
│ └── MyScriptTagHelper.cs
├── ViewComponents
│ └── MyFirstViewComponent.cs
├── Views
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ ├── Index.cshtml
│ │ └── Privacy.cshtml
│ ├── Shared
│ │ ├── Components
│ │ │ └── MyFirst
│ │ │ │ └── Default.cshtml
│ │ ├── Error.cshtml
│ │ ├── _CookieConsentPartial.cshtml
│ │ ├── _Layout.cshtml
│ │ └── _ValidationScriptsPartial.cshtml
│ ├── _ViewImports.cshtml
│ └── _ViewStart.cshtml
├── appsettings.Development.json
├── appsettings.json
├── run.ps1
└── wwwroot
│ ├── css
│ ├── site.css
│ └── site.min.css
│ ├── favicon.ico
│ ├── images
│ ├── banner1.svg
│ ├── banner2.svg
│ └── banner3.svg
│ ├── js
│ ├── site.1.js
│ ├── site.js
│ └── site.min.js
│ └── lib
│ ├── bootstrap
│ ├── .bower.json
│ ├── LICENSE
│ └── dist
│ │ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap-theme.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ └── bootstrap.min.css.map
│ │ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
│ ├── jquery-validation-unobtrusive
│ ├── .bower.json
│ ├── LICENSE.txt
│ ├── jquery.validate.unobtrusive.js
│ └── jquery.validate.unobtrusive.min.js
│ ├── jquery-validation
│ ├── .bower.json
│ ├── LICENSE.md
│ └── dist
│ │ ├── additional-methods.js
│ │ ├── additional-methods.min.js
│ │ ├── jquery.validate.js
│ │ └── jquery.validate.min.js
│ └── jquery
│ ├── .bower.json
│ ├── LICENSE.txt
│ └── dist
│ ├── jquery.js
│ ├── jquery.min.js
│ └── jquery.min.map
├── AspNetCorePublishPreview4
├── AspNetCorePublishPreview4.csproj
└── Program.cs
├── AspNetCorePublishToIIS
├── AspNetCorePublishToIIS.csproj
├── Program.cs
├── Startup.cs
├── project.json
├── runtimeconfig.template.json
├── web.config
└── wwwroot
│ └── foo.html
├── AspNetCoreSendGrid
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── Program.cs
├── global.json
└── project.json
├── AspNetCoreServerSentEvents
├── Controllers
│ └── ServerSentEventController.cs
├── NuGet.Config
├── Program.cs
├── project.json
└── wwwroot
│ └── index.html
├── AspNetCoreSqlite
├── Algae.db
├── Migrations
│ ├── 20160414234803_initial.Designer.cs
│ ├── 20160414234803_initial.cs
│ └── AlgaeDbContextModelSnapshot.cs
├── NuGet.Config
├── Program.cs
├── project.json
└── web.config
├── AspNetCoreStyleCop
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── Program.cs
├── StyleCop.ruleset
├── global.json
├── project.json
└── stylecop.json
├── AspNetCoreUriToAssoc
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── AspNetCoreUriToAssoc.csproj
├── BedsEtCetera.cs
├── FromPath.cs
├── PathValueProvider.cs
├── PathValueProviderFactory.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── PropertiesController.cs
├── Startup.cs
└── StringExtensions.cs
├── AspNetCoreViewComponentError
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── AspNetCoreViewComponentError.csproj
├── Controllers
│ └── HomeController.cs
├── FooBarViewComponent.cs
├── Models
│ └── ErrorViewModel.cs
├── Program.cs
├── Properties
│ └── launchSettings.json
├── Startup.cs
├── Views
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ ├── Index.cshtml
│ │ └── Privacy.cshtml
│ ├── Shared
│ │ ├── Components
│ │ │ └── FooBar
│ │ │ │ └── Default.cshtml
│ │ ├── Error.cshtml
│ │ ├── _CookieConsentPartial.cshtml
│ │ ├── _Layout.cshtml
│ │ └── _ValidationScriptsPartial.cshtml
│ ├── _ViewImports.cshtml
│ └── _ViewStart.cshtml
├── appsettings.Development.json
├── appsettings.json
└── wwwroot
│ ├── css
│ ├── site.css
│ └── site.min.css
│ ├── favicon.ico
│ ├── images
│ ├── banner1.svg
│ ├── banner2.svg
│ └── banner3.svg
│ ├── js
│ ├── site.js
│ └── site.min.js
│ └── lib
│ ├── bootstrap
│ ├── .bower.json
│ ├── LICENSE
│ └── dist
│ │ ├── css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap-theme.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ └── bootstrap.min.css.map
│ │ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
│ ├── jquery-validation-unobtrusive
│ ├── .bower.json
│ ├── LICENSE.txt
│ ├── jquery.validate.unobtrusive.js
│ └── jquery.validate.unobtrusive.min.js
│ ├── jquery-validation
│ ├── .bower.json
│ ├── LICENSE.md
│ └── dist
│ │ ├── additional-methods.js
│ │ ├── additional-methods.min.js
│ │ ├── jquery.validate.js
│ │ └── jquery.validate.min.js
│ └── jquery
│ ├── .bower.json
│ ├── LICENSE.txt
│ └── dist
│ ├── jquery.js
│ ├── jquery.min.js
│ └── jquery.min.map
├── AspNetCoreVsCodeCleanAndBuild
└── ConsoleApp
│ ├── .vscode
│ ├── launch.json
│ └── tasks.json
│ ├── ConsoleApp.csproj
│ └── Program.cs
├── AspNetWindowsService
├── Program.cs
├── README.md
├── bin
│ ├── Debug
│ │ └── dnx451
│ │ │ ├── AspNetWindowsService.dll
│ │ │ ├── AspNetWindowsService.pdb
│ │ │ └── AspNetWindowsService.xml
│ └── output
│ │ └── root1
│ │ ├── index.html
│ │ └── web.config
├── hosting.json
├── project.json
├── project.lock.json
├── root1
│ └── index.html
└── root2
│ └── index.html
├── CreatedAtRoute
├── .vs
│ ├── WebApplication1
│ │ └── v14
│ │ │ └── .suo
│ └── config
│ │ └── applicationhost.config
├── WebApplication1.sln
└── WebApplication1
│ ├── Controllers
│ └── SubscribersController .cs
│ ├── Properties
│ └── launchSettings.json
│ ├── Startup.cs
│ ├── WebApplication1.xproj
│ ├── WebApplication1.xproj.user
│ ├── project.json
│ └── wwwroot
│ ├── favicon.ico
│ └── web.config
├── DeleteLogs
├── appsettings.json
├── bin
│ └── Debug
│ │ └── dnx451
│ │ ├── DeleteLogs.dll
│ │ ├── DeleteLogs.pdb
│ │ └── DeleteLogs.xml
├── nlog.config
├── project.json
├── project.lock.json
└── startup.cs
├── Dev82
├── ClassLibrary
│ ├── .vs
│ │ ├── ClassLibrary
│ │ │ └── v14
│ │ │ │ └── .suo
│ │ └── config
│ │ │ └── applicationhost.config
│ ├── ClassLibrary.sln
│ ├── artifacts
│ │ └── bin
│ │ │ ├── Dev82ClassLibrary1
│ │ │ └── Debug
│ │ │ │ ├── Dev82ClassLibrary1.1.0.0.nupkg
│ │ │ │ ├── Dev82ClassLibrary1.1.0.0.symbols.nupkg
│ │ │ │ ├── dotnet5.4
│ │ │ │ ├── Dev82ClassLibrary1.dll
│ │ │ │ ├── Dev82ClassLibrary1.pdb
│ │ │ │ └── Dev82ClassLibrary1.xml
│ │ │ │ └── net451
│ │ │ │ ├── Dev82ClassLibrary1.dll
│ │ │ │ ├── Dev82ClassLibrary1.pdb
│ │ │ │ └── Dev82ClassLibrary1.xml
│ │ │ ├── Dev82ClassLibrary2
│ │ │ └── Debug
│ │ │ │ ├── Dev82ClassLibrary2.1.0.0.nupkg
│ │ │ │ ├── Dev82ClassLibrary2.1.0.0.symbols.nupkg
│ │ │ │ ├── dotnet5.4
│ │ │ │ ├── Dev82ClassLibrary2.dll
│ │ │ │ ├── Dev82ClassLibrary2.pdb
│ │ │ │ └── Dev82ClassLibrary2.xml
│ │ │ │ └── net451
│ │ │ │ ├── Dev82ClassLibrary2.dll
│ │ │ │ ├── Dev82ClassLibrary2.pdb
│ │ │ │ └── Dev82ClassLibrary2.xml
│ │ │ └── Dev82ClassLibrary3
│ │ │ └── Debug
│ │ │ ├── Dev82ClassLibrary3.1.0.0.nupkg
│ │ │ ├── Dev82ClassLibrary3.1.0.0.symbols.nupkg
│ │ │ ├── dotnet5.4
│ │ │ ├── Dev82ClassLibrary3.dll
│ │ │ ├── Dev82ClassLibrary3.pdb
│ │ │ └── Dev82ClassLibrary3.xml
│ │ │ └── net451
│ │ │ ├── Dev82ClassLibrary3.dll
│ │ │ ├── Dev82ClassLibrary3.pdb
│ │ │ └── Dev82ClassLibrary3.xml
│ ├── global.json
│ └── src
│ │ ├── ClassLibrary
│ │ ├── Class1.cs
│ │ ├── ClassLibrary.xproj
│ │ ├── ClassLibrary.xproj.user
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── project.json
│ │ └── project.lock.json
│ │ ├── ClassLibrary1
│ │ ├── .vs
│ │ │ └── ClassLibrary1
│ │ │ │ └── v14
│ │ │ │ └── .suo
│ │ ├── Class1.cs
│ │ ├── ClassLibrary1.xproj
│ │ ├── ClassLibrary1.xproj.user
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── project.json
│ │ └── project.lock.json
│ │ ├── ClassLibrary2
│ │ ├── Class1.cs
│ │ ├── ClassLibrary2.xproj
│ │ ├── ClassLibrary2.xproj.user
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── project.json
│ │ └── project.lock.json
│ │ ├── Dev82ClassLibrary1
│ │ ├── Class1.cs
│ │ ├── Dev82ClassLibrary1.xproj
│ │ ├── Dev82ClassLibrary1.xproj.user
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── project.json
│ │ └── project.lock.json
│ │ ├── Dev82ClassLibrary2
│ │ ├── Class1.cs
│ │ ├── Dev82ClassLibrary2.xproj
│ │ ├── Dev82ClassLibrary2.xproj.user
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── project.json
│ │ └── project.lock.json
│ │ └── Dev82ClassLibrary3
│ │ ├── Class1.cs
│ │ ├── Dev82ClassLibrary3.xproj
│ │ ├── Dev82ClassLibrary3.xproj.user
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ ├── project.json
│ │ └── project.lock.json
└── Mvc
│ ├── .vs
│ └── Mvc
│ │ └── v14
│ │ └── .suo
│ ├── Mvc.sln
│ ├── global.json
│ └── src
│ └── Mvc
│ ├── .bowerrc
│ ├── Controllers
│ ├── AccountController.cs
│ ├── HomeController.cs
│ └── ManageController.cs
│ ├── Migrations
│ ├── 00000000000000_CreateIdentitySchema.Designer.cs
│ ├── 00000000000000_CreateIdentitySchema.cs
│ └── ApplicationDbContextModelSnapshot.cs
│ ├── Models
│ ├── ApplicationDbContext.cs
│ └── ApplicationUser.cs
│ ├── Mvc.xproj
│ ├── Mvc.xproj.user
│ ├── Project_Readme.html
│ ├── Properties
│ └── launchSettings.json
│ ├── Services
│ ├── IEmailSender.cs
│ ├── ISmsSender.cs
│ └── MessageServices.cs
│ ├── Startup.cs
│ ├── ViewModels
│ ├── Account
│ │ ├── ExternalLoginConfirmationViewModel.cs
│ │ ├── ForgotPasswordViewModel.cs
│ │ ├── LoginViewModel.cs
│ │ ├── RegisterViewModel.cs
│ │ ├── ResetPasswordViewModel.cs
│ │ ├── SendCodeViewModel.cs
│ │ └── VerifyCodeViewModel.cs
│ └── Manage
│ │ ├── AddPhoneNumberViewModel.cs
│ │ ├── ChangePasswordViewModel.cs
│ │ ├── ConfigureTwoFactorViewModel.cs
│ │ ├── FactorViewModel.cs
│ │ ├── IndexViewModel.cs
│ │ ├── ManageLoginsViewModel.cs
│ │ ├── RemoveLoginViewModel.cs
│ │ ├── SetPasswordViewModel.cs
│ │ └── VerifyPhoneNumberViewModel.cs
│ ├── Views
│ ├── Account
│ │ ├── ConfirmEmail.cshtml
│ │ ├── ExternalLoginConfirmation.cshtml
│ │ ├── ExternalLoginFailure.cshtml
│ │ ├── ForgotPassword.cshtml
│ │ ├── ForgotPasswordConfirmation.cshtml
│ │ ├── Lockout.cshtml
│ │ ├── Login.cshtml
│ │ ├── Register.cshtml
│ │ ├── ResetPassword.cshtml
│ │ ├── ResetPasswordConfirmation.cshtml
│ │ ├── SendCode.cshtml
│ │ └── VerifyCode.cshtml
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ └── Index.cshtml
│ ├── Manage
│ │ ├── AddPhoneNumber.cshtml
│ │ ├── ChangePassword.cshtml
│ │ ├── Index.cshtml
│ │ ├── ManageLogins.cshtml
│ │ ├── SetPassword.cshtml
│ │ └── VerifyPhoneNumber.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ ├── _Layout.cshtml
│ │ ├── _LoginPartial.cshtml
│ │ └── _ValidationScriptsPartial.cshtml
│ ├── _ViewImports.cshtml
│ └── _ViewStart.cshtml
│ ├── appsettings.json
│ ├── bower.json
│ ├── gulpfile.js
│ ├── node_modules
│ ├── .bin
│ │ ├── gulp
│ │ ├── gulp.cmd
│ │ ├── rimraf
│ │ └── rimraf.cmd
│ ├── gulp-concat
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── node_modules
│ │ │ ├── amdefine
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── amdefine.js
│ │ │ │ ├── intercept.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-differ
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-uniq
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── beeper
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── clone-stats
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── clone
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── clone.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── concat-with-sourcemaps
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── core-util-is
│ │ │ │ ├── README.md
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── bin
│ │ │ │ │ └── cli.js
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── test_dayofweek.js
│ │ │ │ │ ├── test_formats.js
│ │ │ │ │ ├── test_isoutcdatetime.js
│ │ │ │ │ └── weekofyear
│ │ │ │ │ ├── test_weekofyear.js
│ │ │ │ │ └── test_weekofyear.sh
│ │ │ ├── duplexer2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── example.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── tests.js
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── gulp-concat
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── gulp-util
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── isarray
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ └── build.js
│ │ │ │ ├── component.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basecopy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basetostring
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basevalues
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._getnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isiterateecall
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reescape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reevaluate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarguments
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarray
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.restparam
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── minimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ └── parse.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── all_bool.js
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── dash.js
│ │ │ │ │ ├── default_bool.js
│ │ │ │ │ ├── dotted.js
│ │ │ │ │ ├── long.js
│ │ │ │ │ ├── num.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── parse_modified.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── stop_early.js
│ │ │ │ │ ├── unknown.js
│ │ │ │ │ └── whitespace.js
│ │ │ ├── multipipe
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── History.md
│ │ │ │ ├── Makefile
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── multipipe.js
│ │ │ ├── number-is-nan
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── readable-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── replace-ext
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── main.js
│ │ │ ├── source-map
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── dist
│ │ │ │ │ ├── SourceMap.jsm
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ ├── source-map.min.js
│ │ │ │ │ └── test
│ │ │ │ │ │ ├── Utils.jsm
│ │ │ │ │ │ ├── test_api.js
│ │ │ │ │ │ ├── test_array_set.js
│ │ │ │ │ │ ├── test_base64.js
│ │ │ │ │ │ ├── test_base64_vlq.js
│ │ │ │ │ │ ├── test_binary_search.js
│ │ │ │ │ │ ├── test_dog_fooding.js
│ │ │ │ │ │ ├── test_source_map_consumer.js
│ │ │ │ │ │ ├── test_source_map_generator.js
│ │ │ │ │ │ ├── test_source_node.js
│ │ │ │ │ │ └── test_util.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── mapping-list.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ └── package.json
│ │ │ ├── string_decoder
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── through2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── vinyl
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ └── package.json
│ │ │ └── xtend
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENCE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── immutable.js
│ │ │ │ ├── mutable.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ └── package.json
│ ├── gulp-cssmin
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── README.md
│ │ ├── gulpfile.js
│ │ ├── index.js
│ │ ├── node_modules
│ │ │ ├── amdefine
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── amdefine.js
│ │ │ │ ├── intercept.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── clean-css
│ │ │ │ ├── History.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── bin
│ │ │ │ │ └── cleancss
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── clean.js
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── hex-name-shortener.js
│ │ │ │ │ │ ├── hsl.js
│ │ │ │ │ │ └── rgb.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── url-rebase.js
│ │ │ │ │ │ └── url-rewriter.js
│ │ │ │ │ ├── imports
│ │ │ │ │ │ └── inliner.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ ├── break-up.js
│ │ │ │ │ │ ├── can-override.js
│ │ │ │ │ │ ├── clone.js
│ │ │ │ │ │ ├── compactable.js
│ │ │ │ │ │ ├── every-combination.js
│ │ │ │ │ │ ├── has-inherit.js
│ │ │ │ │ │ ├── optimizer.js
│ │ │ │ │ │ ├── override-compactor.js
│ │ │ │ │ │ ├── populate-components.js
│ │ │ │ │ │ ├── remove-unused.js
│ │ │ │ │ │ ├── restore-shorthands.js
│ │ │ │ │ │ ├── restore.js
│ │ │ │ │ │ ├── shorthand-compactor.js
│ │ │ │ │ │ ├── validator.js
│ │ │ │ │ │ └── wrap-for-optimizing.js
│ │ │ │ │ ├── selectors
│ │ │ │ │ │ ├── extractor.js
│ │ │ │ │ │ ├── metadata.js
│ │ │ │ │ │ ├── optimization-metadata.js
│ │ │ │ │ │ ├── optimizer.js
│ │ │ │ │ │ ├── optimizers
│ │ │ │ │ │ │ ├── advanced.js
│ │ │ │ │ │ │ ├── clean-up.js
│ │ │ │ │ │ │ └── simple.js
│ │ │ │ │ │ ├── reorderable.js
│ │ │ │ │ │ └── tokenizer.js
│ │ │ │ │ ├── stringifier
│ │ │ │ │ │ ├── helpers.js
│ │ │ │ │ │ ├── one-time.js
│ │ │ │ │ │ ├── simple.js
│ │ │ │ │ │ └── source-maps.js
│ │ │ │ │ ├── text
│ │ │ │ │ │ ├── comments-processor.js
│ │ │ │ │ │ ├── escape-store.js
│ │ │ │ │ │ ├── expressions-processor.js
│ │ │ │ │ │ ├── free-text-processor.js
│ │ │ │ │ │ └── urls-processor.js
│ │ │ │ │ └── utils
│ │ │ │ │ │ ├── chunker.js
│ │ │ │ │ │ ├── compatibility.js
│ │ │ │ │ │ ├── extractors.js
│ │ │ │ │ │ ├── input-source-map-tracker.js
│ │ │ │ │ │ ├── object.js
│ │ │ │ │ │ ├── quote-scanner.js
│ │ │ │ │ │ ├── source-maps.js
│ │ │ │ │ │ ├── source-reader.js
│ │ │ │ │ │ ├── source-tracker.js
│ │ │ │ │ │ ├── splitter.js
│ │ │ │ │ │ └── url-scanner.js
│ │ │ │ └── package.json
│ │ │ ├── clone-stats
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── commander
│ │ │ │ ├── History.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── core-util-is
│ │ │ │ ├── README.md
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── bin
│ │ │ │ │ └── cli.js
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── test_dayofweek.js
│ │ │ │ │ ├── test_formats.js
│ │ │ │ │ ├── test_isoutcdatetime.js
│ │ │ │ │ └── weekofyear
│ │ │ │ │ ├── test_weekofyear.js
│ │ │ │ │ └── test_weekofyear.sh
│ │ │ ├── duplexer2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── example.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── tests.js
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── filesize
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── lib
│ │ │ │ │ └── filesize.js
│ │ │ │ └── package.json
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── graceful-fs
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── graceful-fs.js
│ │ │ │ ├── package.json
│ │ │ │ ├── polyfills.js
│ │ │ │ └── test
│ │ │ │ │ ├── open.js
│ │ │ │ │ └── readdir-sort.js
│ │ │ ├── graceful-readlink
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── gulp-cssmin
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── README.md
│ │ │ │ ├── gulpfile.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── sample
│ │ │ │ │ ├── test
│ │ │ │ │ │ └── type2.css
│ │ │ │ │ ├── type.css
│ │ │ │ │ └── type.min.css
│ │ │ │ └── test.js
│ │ │ ├── gulp-rename
│ │ │ │ ├── .editorconfig
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── Gulpfile.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── fixtures
│ │ │ │ │ ├── hello.min.txt
│ │ │ │ │ └── hello.txt
│ │ │ │ │ ├── path-parsing.spec.js
│ │ │ │ │ ├── rename.spec.js
│ │ │ │ │ └── spec-helper.js
│ │ │ ├── gulp-util
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── File.js
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── beep.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── colors.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── date.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── linefeed.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ ├── replaceExtension.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── isarray
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ └── build.js
│ │ │ │ ├── component.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._escapehtmlchar
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._escapestringchar
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._htmlescapes
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._objecttypes
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reunescapedhtml
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._shimkeys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.defaults
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isobject
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.values
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── map-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENCE
│ │ │ │ ├── examples
│ │ │ │ │ └── pretty.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ └── simple-map.asynct.js
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── minimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ └── parse.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── all_bool.js
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── dash.js
│ │ │ │ │ ├── default_bool.js
│ │ │ │ │ ├── dotted.js
│ │ │ │ │ ├── long.js
│ │ │ │ │ ├── num.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── parse_modified.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── stop_early.js
│ │ │ │ │ ├── unknown.js
│ │ │ │ │ └── whitespace.js
│ │ │ ├── multipipe
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── History.md
│ │ │ │ ├── Makefile
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── multipipe.js
│ │ │ ├── number-is-nan
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── readable-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── source-map
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── dist
│ │ │ │ │ ├── SourceMap.jsm
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ ├── source-map.min.js
│ │ │ │ │ └── test
│ │ │ │ │ │ ├── Utils.jsm
│ │ │ │ │ │ ├── test_api.js
│ │ │ │ │ │ ├── test_array_set.js
│ │ │ │ │ │ ├── test_base64.js
│ │ │ │ │ │ ├── test_base64_vlq.js
│ │ │ │ │ │ ├── test_binary_search.js
│ │ │ │ │ │ ├── test_dog_fooding.js
│ │ │ │ │ │ ├── test_source_map_consumer.js
│ │ │ │ │ │ ├── test_source_map_generator.js
│ │ │ │ │ │ ├── test_source_node.js
│ │ │ │ │ │ └── test_util.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── mapping-list.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ └── package.json
│ │ │ ├── string_decoder
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── temp-write
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── tempfile
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── through2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── uuid
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── benchmark
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── bench.gnu
│ │ │ │ │ ├── bench.sh
│ │ │ │ │ ├── benchmark-native.c
│ │ │ │ │ ├── benchmark.js
│ │ │ │ │ └── package.json
│ │ │ │ ├── buffer-browser.js
│ │ │ │ ├── buffer.js
│ │ │ │ ├── misc
│ │ │ │ │ ├── compare.js
│ │ │ │ │ └── perf.js
│ │ │ │ ├── package.json
│ │ │ │ ├── rng-browser.js
│ │ │ │ ├── rng.js
│ │ │ │ ├── test
│ │ │ │ │ ├── mocha.opts
│ │ │ │ │ └── test.js
│ │ │ │ └── uuid.js
│ │ │ ├── vinyl
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── File.js
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ └── xtend
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENCE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── mutable.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ ├── package.json
│ │ └── test.js
│ ├── gulp-uglify
│ │ ├── .jshintrc
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── minifier.js
│ │ ├── node_modules
│ │ │ ├── amdefine
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── amdefine.js
│ │ │ │ ├── intercept.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-differ
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-uniq
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── async
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── component.json
│ │ │ │ ├── lib
│ │ │ │ │ └── async.js
│ │ │ │ └── package.json
│ │ │ ├── beeper
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── clone-stats
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── clone
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── clone.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── core-util-is
│ │ │ │ ├── README.md
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── bin
│ │ │ │ │ └── cli.js
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── test_dayofweek.js
│ │ │ │ │ ├── test_formats.js
│ │ │ │ │ ├── test_isoutcdatetime.js
│ │ │ │ │ └── weekofyear
│ │ │ │ │ ├── test_weekofyear.js
│ │ │ │ │ └── test_weekofyear.sh
│ │ │ ├── deap
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── deap.js
│ │ │ │ │ └── typeof.js
│ │ │ │ ├── package.json
│ │ │ │ ├── shallow.js
│ │ │ │ └── test
│ │ │ │ │ ├── clone.test.js
│ │ │ │ │ ├── deap.test.js
│ │ │ │ │ ├── extend.test.js
│ │ │ │ │ ├── merge.test.js
│ │ │ │ │ ├── shallow.test.js
│ │ │ │ │ └── update.test.js
│ │ │ ├── decamelize
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── duplexer2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── example.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── tests.js
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── gulp-uglify
│ │ │ │ ├── .idea
│ │ │ │ │ ├── .name
│ │ │ │ │ ├── atlassian-ide-plugin.xml
│ │ │ │ │ ├── compiler.xml
│ │ │ │ │ ├── copyright
│ │ │ │ │ │ └── profiles_settings.xml
│ │ │ │ │ ├── encodings.xml
│ │ │ │ │ ├── gulp-uglify.iml
│ │ │ │ │ ├── inspectionProfiles
│ │ │ │ │ │ ├── Project_Default.xml
│ │ │ │ │ │ └── profiles_settings.xml
│ │ │ │ │ ├── jsLibraryMappings.xml
│ │ │ │ │ ├── libraries
│ │ │ │ │ │ └── gulp_uglify_node_modules.xml
│ │ │ │ │ ├── misc.xml
│ │ │ │ │ ├── modules.xml
│ │ │ │ │ ├── scopes
│ │ │ │ │ │ └── scope_settings.xml
│ │ │ │ │ ├── vcs.xml
│ │ │ │ │ └── workspace.xml
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── minifier.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── comments.js
│ │ │ │ │ ├── err.js
│ │ │ │ │ ├── injectable.js
│ │ │ │ │ ├── minify.js
│ │ │ │ │ ├── no-compress.js
│ │ │ │ │ ├── null.js
│ │ │ │ │ ├── sourcemap.js
│ │ │ │ │ └── streams.js
│ │ │ ├── gulp-util
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── isarray
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ └── build.js
│ │ │ │ ├── component.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basecopy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basetostring
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basevalues
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._getnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isiterateecall
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reescape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reevaluate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarguments
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarray
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.restparam
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── minimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ └── parse.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── all_bool.js
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── dash.js
│ │ │ │ │ ├── default_bool.js
│ │ │ │ │ ├── dotted.js
│ │ │ │ │ ├── long.js
│ │ │ │ │ ├── num.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── parse_modified.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── stop_early.js
│ │ │ │ │ ├── unknown.js
│ │ │ │ │ └── whitespace.js
│ │ │ ├── multipipe
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── History.md
│ │ │ │ ├── Makefile
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── multipipe.js
│ │ │ ├── number-is-nan
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── readable-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── replace-ext
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── main.js
│ │ │ ├── source-map
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── mapping-list.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── run-tests.js
│ │ │ │ │ └── source-map
│ │ │ │ │ ├── test-api.js
│ │ │ │ │ ├── test-array-set.js
│ │ │ │ │ ├── test-base64-vlq.js
│ │ │ │ │ ├── test-base64.js
│ │ │ │ │ ├── test-binary-search.js
│ │ │ │ │ ├── test-dog-fooding.js
│ │ │ │ │ ├── test-source-map-consumer.js
│ │ │ │ │ ├── test-source-map-generator.js
│ │ │ │ │ ├── test-source-node.js
│ │ │ │ │ ├── test-util.js
│ │ │ │ │ └── util.js
│ │ │ ├── string_decoder
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── through2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── uglify-js
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── bin
│ │ │ │ │ ├── extract-props.js
│ │ │ │ │ └── uglifyjs
│ │ │ │ ├── lib
│ │ │ │ │ ├── ast.js
│ │ │ │ │ ├── compress.js
│ │ │ │ │ ├── mozilla-ast.js
│ │ │ │ │ ├── output.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── propmangle.js
│ │ │ │ │ ├── scope.js
│ │ │ │ │ ├── sourcemap.js
│ │ │ │ │ ├── transform.js
│ │ │ │ │ └── utils.js
│ │ │ │ ├── package.json
│ │ │ │ ├── tmp
│ │ │ │ │ ├── test-clone.js
│ │ │ │ │ ├── test-moz-ast.js
│ │ │ │ │ ├── test-propmangle.js
│ │ │ │ │ ├── test-smart.js
│ │ │ │ │ └── test.js
│ │ │ │ └── tools
│ │ │ │ │ ├── domprops.json
│ │ │ │ │ ├── node.js
│ │ │ │ │ └── props.html
│ │ │ ├── uglify-to-browserify
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── index.js
│ │ │ ├── vinyl-sourcemaps-apply
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── vinyl
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ └── package.json
│ │ │ ├── window-size
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── wordwrap
│ │ │ │ ├── .npmignore
│ │ │ │ ├── README.markdown
│ │ │ │ ├── example
│ │ │ │ │ ├── center.js
│ │ │ │ │ └── meat.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── break.js
│ │ │ │ │ ├── idleness.txt
│ │ │ │ │ └── wrap.js
│ │ │ ├── xtend
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENCE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── immutable.js
│ │ │ │ ├── mutable.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ └── yargs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── completion.sh.hbs
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ ├── completion.js
│ │ │ │ ├── parser.js
│ │ │ │ ├── usage.js
│ │ │ │ └── validation.js
│ │ │ │ └── package.json
│ │ └── package.json
│ ├── gulp
│ │ ├── LICENSE
│ │ ├── bin
│ │ │ └── gulp.js
│ │ ├── completion
│ │ │ ├── bash
│ │ │ ├── fish
│ │ │ ├── powershell
│ │ │ └── zsh
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── completion.js
│ │ │ └── taskTree.js
│ │ ├── node_modules
│ │ │ ├── .bin
│ │ │ │ ├── semver
│ │ │ │ └── semver.cmd
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── archy
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── array-differ
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── array-uniq
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── balanced-match
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── beeper
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── brace-expansion
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── clone-stats
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── clone
│ │ │ │ ├── LICENSE
│ │ │ │ ├── clone.js
│ │ │ │ └── package.json
│ │ │ ├── concat-map
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── core-util-is
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── LICENSE
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ └── package.json
│ │ │ ├── defaults
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── deprecated
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── duplexer2
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── end-of-stream
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── extend
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── find-index
│ │ │ │ ├── index.js
│ │ │ │ ├── last.js
│ │ │ │ └── package.json
│ │ │ ├── findup-sync
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── lib
│ │ │ │ │ └── findup-sync.js
│ │ │ │ └── package.json
│ │ │ ├── first-chunk-stream
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── flagged-respawn
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── reorder.js
│ │ │ │ │ └── respawn.js
│ │ │ │ └── package.json
│ │ │ ├── gaze
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── lib
│ │ │ │ │ ├── gaze.js
│ │ │ │ │ └── helper.js
│ │ │ │ └── package.json
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── glob-stream
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── glob-watcher
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── glob
│ │ │ │ ├── LICENSE
│ │ │ │ ├── common.js
│ │ │ │ ├── glob.js
│ │ │ │ ├── package.json
│ │ │ │ └── sync.js
│ │ │ ├── glob2base
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── globule
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── lib
│ │ │ │ │ └── globule.js
│ │ │ │ └── package.json
│ │ │ ├── graceful-fs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── fs.js
│ │ │ │ ├── graceful-fs.js
│ │ │ │ ├── package.json
│ │ │ │ └── polyfills.js
│ │ │ ├── gulp-util
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── inflight
│ │ │ │ ├── LICENSE
│ │ │ │ ├── inflight.js
│ │ │ │ └── package.json
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ └── package.json
│ │ │ ├── interpret
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── is-utf8
│ │ │ │ ├── is-utf8.js
│ │ │ │ └── package.json
│ │ │ ├── isarray
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── liftoff
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── build_config_name.js
│ │ │ │ │ ├── file_search.js
│ │ │ │ │ ├── find_config.js
│ │ │ │ │ ├── find_cwd.js
│ │ │ │ │ ├── parse_options.js
│ │ │ │ │ └── silent_require.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basecopy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basetostring
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basevalues
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isiterateecall
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reescape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reevaluate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarguments
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarray
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash
│ │ │ │ ├── dist
│ │ │ │ │ ├── lodash.compat.js
│ │ │ │ │ ├── lodash.compat.min.js
│ │ │ │ │ ├── lodash.js
│ │ │ │ │ ├── lodash.min.js
│ │ │ │ │ ├── lodash.underscore.js
│ │ │ │ │ └── lodash.underscore.min.js
│ │ │ │ └── package.json
│ │ │ ├── lru-cache
│ │ │ │ ├── LICENSE
│ │ │ │ ├── lib
│ │ │ │ │ └── lru-cache.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── minimatch
│ │ │ │ ├── LICENSE
│ │ │ │ ├── benchmark.js
│ │ │ │ ├── browser.js
│ │ │ │ ├── minimatch.js
│ │ │ │ └── package.json
│ │ │ ├── minimist
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── mkdirp
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── multipipe
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── once
│ │ │ │ ├── LICENSE
│ │ │ │ ├── once.js
│ │ │ │ └── package.json
│ │ │ ├── orchestrator
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ └── runTask.js
│ │ │ │ └── package.json
│ │ │ ├── ordered-read-streams
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── pretty-hrtime
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── readable-stream
│ │ │ │ ├── LICENSE
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── replace-ext
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── resolve
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── async.js
│ │ │ │ │ ├── caller.js
│ │ │ │ │ ├── core.js
│ │ │ │ │ ├── core.json
│ │ │ │ │ ├── node-modules-paths.js
│ │ │ │ │ └── sync.js
│ │ │ │ └── package.json
│ │ │ ├── semver
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ ├── semver.browser.js
│ │ │ │ ├── semver.js
│ │ │ │ └── semver.min.js
│ │ │ ├── sequencify
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── sigmund
│ │ │ │ ├── LICENSE
│ │ │ │ ├── bench.js
│ │ │ │ ├── package.json
│ │ │ │ └── sigmund.js
│ │ │ ├── stream-consume
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── string_decoder
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-bom
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── through2
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── tildify
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── unique-stream
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── user-home
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── v8flags
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── vinyl-fs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── dest
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ └── writeContents
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── writeBuffer.js
│ │ │ │ │ │ │ ├── writeDir.js
│ │ │ │ │ │ │ └── writeStream.js
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── getContents
│ │ │ │ │ │ ├── bufferFile.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── readDir.js
│ │ │ │ │ │ └── streamFile.js
│ │ │ │ │ │ ├── getStats.js
│ │ │ │ │ │ └── index.js
│ │ │ │ └── package.json
│ │ │ ├── vinyl
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ └── package.json
│ │ │ ├── wrappy
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ └── wrappy.js
│ │ │ └── xtend
│ │ │ │ ├── LICENCE
│ │ │ │ ├── immutable.js
│ │ │ │ ├── mutable.js
│ │ │ │ └── package.json
│ │ └── package.json
│ └── rimraf
│ │ ├── LICENSE
│ │ ├── bin.js
│ │ ├── package.json
│ │ └── rimraf.js
│ ├── package.json
│ ├── project.json
│ ├── project.lock.json
│ └── wwwroot
│ ├── _references.js
│ ├── css
│ ├── site.css
│ └── site.min.css
│ ├── favicon.ico
│ ├── images
│ ├── ASP-NET-Banners-01.png
│ ├── ASP-NET-Banners-02.png
│ ├── Banner-01-Azure.png
│ └── Banner-02-VS.png
│ ├── js
│ ├── site.js
│ └── site.min.js
│ ├── lib
│ ├── bootstrap
│ │ ├── .bower.json
│ │ ├── LICENSE
│ │ └── dist
│ │ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ └── bootstrap.min.css
│ │ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ ├── jquery-validation-unobtrusive
│ │ ├── .bower.json
│ │ ├── jquery.validate.unobtrusive.js
│ │ └── jquery.validate.unobtrusive.min.js
│ ├── jquery-validation
│ │ ├── .bower.json
│ │ ├── LICENSE.md
│ │ └── dist
│ │ │ ├── additional-methods.js
│ │ │ ├── additional-methods.min.js
│ │ │ ├── jquery.validate.js
│ │ │ └── jquery.validate.min.js
│ └── jquery
│ │ ├── .bower.json
│ │ ├── MIT-LICENSE.txt
│ │ └── dist
│ │ ├── jquery.js
│ │ ├── jquery.min.js
│ │ └── jquery.min.map
│ └── web.config
├── DotNetAsyncConfigureAwait
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── ConfigureAwait.csproj
└── Program.cs
├── DotNetCoreTwilio
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── DotNetCoreTwilio.csproj
└── Program.cs
├── DotNetListToJsonDictionaryStructure
├── Program.cs
└── temp.csproj
├── ErrorPage404
├── .vs
│ ├── WebApplication1
│ │ └── v14
│ │ │ └── .suo
│ └── config
│ │ └── applicationhost.config
├── WebApplication1.sln
└── WebApplication1
│ ├── Controllers
│ ├── ErrorController.cs
│ └── HomeController.cs
│ ├── Properties
│ └── launchSettings.json
│ ├── Startup.cs
│ ├── Views
│ └── Shared
│ │ └── Error.cshtml
│ ├── WebApplication1.xproj
│ ├── WebApplication1.xproj.user
│ ├── project.json
│ └── wwwroot
│ ├── favicon.ico
│ └── web.config
├── FacebookCookie
├── .vs
│ ├── ClassLibrary1
│ │ └── v14
│ │ │ └── .suo
│ ├── WebApplication1
│ │ └── v14
│ │ │ └── .suo
│ ├── WebApplication2
│ │ └── v14
│ │ │ └── .suo
│ └── config
│ │ └── applicationhost.config
├── ClassLibrary1.sln
├── ClassLibrary1
│ ├── Class1.cs
│ ├── ClassLibrary1.xproj
│ ├── ClassLibrary1.xproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── project.json
├── NuGet.Config
├── WebApplication1.sln
├── WebApplication1
│ ├── Properties
│ │ └── launchSettings.json
│ ├── Startup.cs
│ ├── WebApplication1.xproj
│ ├── WebApplication1.xproj.user
│ ├── project.json
│ └── wwwroot
│ │ └── web.config
├── WebApplication2.sln
└── WebApplication2
│ ├── .bowerrc
│ ├── Controllers
│ ├── AccountController.cs
│ ├── HomeController.cs
│ └── ManageController.cs
│ ├── Migrations
│ ├── 00000000000000_CreateIdentitySchema.Designer.cs
│ ├── 00000000000000_CreateIdentitySchema.cs
│ └── ApplicationDbContextModelSnapshot.cs
│ ├── Models
│ ├── ApplicationDbContext.cs
│ └── ApplicationUser.cs
│ ├── Project_Readme.html
│ ├── Properties
│ └── launchSettings.json
│ ├── Services
│ ├── IEmailSender.cs
│ ├── ISmsSender.cs
│ └── MessageServices.cs
│ ├── Startup.cs
│ ├── ViewModels
│ ├── Account
│ │ ├── ExternalLoginConfirmationViewModel.cs
│ │ ├── ForgotPasswordViewModel.cs
│ │ ├── LoginViewModel.cs
│ │ ├── RegisterViewModel.cs
│ │ ├── ResetPasswordViewModel.cs
│ │ ├── SendCodeViewModel.cs
│ │ └── VerifyCodeViewModel.cs
│ └── Manage
│ │ ├── AddPhoneNumberViewModel.cs
│ │ ├── ChangePasswordViewModel.cs
│ │ ├── ConfigureTwoFactorViewModel.cs
│ │ ├── FactorViewModel.cs
│ │ ├── IndexViewModel.cs
│ │ ├── ManageLoginsViewModel.cs
│ │ ├── RemoveLoginViewModel.cs
│ │ ├── SetPasswordViewModel.cs
│ │ └── VerifyPhoneNumberViewModel.cs
│ ├── Views
│ ├── Account
│ │ ├── ConfirmEmail.cshtml
│ │ ├── ExternalLoginConfirmation.cshtml
│ │ ├── ExternalLoginFailure.cshtml
│ │ ├── ForgotPassword.cshtml
│ │ ├── ForgotPasswordConfirmation.cshtml
│ │ ├── Lockout.cshtml
│ │ ├── Login.cshtml
│ │ ├── Register.cshtml
│ │ ├── ResetPassword.cshtml
│ │ ├── ResetPasswordConfirmation.cshtml
│ │ ├── SendCode.cshtml
│ │ └── VerifyCode.cshtml
│ ├── Home
│ │ ├── About.cshtml
│ │ ├── Contact.cshtml
│ │ └── Index.cshtml
│ ├── Manage
│ │ ├── AddPhoneNumber.cshtml
│ │ ├── ChangePassword.cshtml
│ │ ├── Index.cshtml
│ │ ├── ManageLogins.cshtml
│ │ ├── SetPassword.cshtml
│ │ └── VerifyPhoneNumber.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ ├── _Layout.cshtml
│ │ ├── _LoginPartial.cshtml
│ │ └── _ValidationScriptsPartial.cshtml
│ ├── _ViewImports.cshtml
│ └── _ViewStart.cshtml
│ ├── WebApplication2.xproj
│ ├── WebApplication2.xproj.user
│ ├── appsettings.json
│ ├── bower.json
│ ├── node_modules
│ ├── .bin
│ │ ├── gulp
│ │ ├── gulp.cmd
│ │ ├── rimraf
│ │ └── rimraf.cmd
│ ├── gulp-concat
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── node_modules
│ │ │ ├── amdefine
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── amdefine.js
│ │ │ │ ├── intercept.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-differ
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-uniq
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── beeper
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── clone-stats
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── clone
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── clone.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── concat-with-sourcemaps
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── core-util-is
│ │ │ │ ├── README.md
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── test_dayofweek.js
│ │ │ │ │ ├── test_formats.js
│ │ │ │ │ ├── test_isoutcdatetime.js
│ │ │ │ │ └── weekofyear
│ │ │ │ │ ├── test_weekofyear.js
│ │ │ │ │ └── test_weekofyear.sh
│ │ │ ├── duplexer2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── example.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── tests.js
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── gulp-concat
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── gulp-util
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── isarray
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ └── build.js
│ │ │ │ ├── component.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basecopy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basetostring
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basevalues
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._getnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isiterateecall
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reescape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reevaluate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarguments
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarray
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.restparam
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── minimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ └── parse.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── all_bool.js
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── dash.js
│ │ │ │ │ ├── default_bool.js
│ │ │ │ │ ├── dotted.js
│ │ │ │ │ ├── long.js
│ │ │ │ │ ├── num.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── parse_modified.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── stop_early.js
│ │ │ │ │ ├── unknown.js
│ │ │ │ │ └── whitespace.js
│ │ │ ├── multipipe
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── History.md
│ │ │ │ ├── Makefile
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── multipipe.js
│ │ │ ├── number-is-nan
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── readable-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── replace-ext
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── main.js
│ │ │ ├── source-map
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── dist
│ │ │ │ │ ├── SourceMap.jsm
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ ├── source-map.min.js
│ │ │ │ │ └── test
│ │ │ │ │ │ ├── Utils.jsm
│ │ │ │ │ │ ├── test_api.js
│ │ │ │ │ │ ├── test_array_set.js
│ │ │ │ │ │ ├── test_base64.js
│ │ │ │ │ │ ├── test_base64_vlq.js
│ │ │ │ │ │ ├── test_binary_search.js
│ │ │ │ │ │ ├── test_dog_fooding.js
│ │ │ │ │ │ ├── test_source_map_consumer.js
│ │ │ │ │ │ ├── test_source_map_generator.js
│ │ │ │ │ │ ├── test_source_node.js
│ │ │ │ │ │ └── test_util.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── mapping-list.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ └── package.json
│ │ │ ├── string_decoder
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── through2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── vinyl
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ └── package.json
│ │ │ └── xtend
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENCE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── immutable.js
│ │ │ │ ├── mutable.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ └── package.json
│ ├── gulp-cssmin
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── README.md
│ │ ├── gulpfile.js
│ │ ├── index.js
│ │ ├── node_modules
│ │ │ ├── amdefine
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── amdefine.js
│ │ │ │ ├── intercept.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── clean-css
│ │ │ │ ├── History.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── clean.js
│ │ │ │ │ ├── colors
│ │ │ │ │ │ ├── hex-name-shortener.js
│ │ │ │ │ │ ├── hsl.js
│ │ │ │ │ │ └── rgb.js
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── url-rebase.js
│ │ │ │ │ │ └── url-rewriter.js
│ │ │ │ │ ├── imports
│ │ │ │ │ │ └── inliner.js
│ │ │ │ │ ├── properties
│ │ │ │ │ │ ├── break-up.js
│ │ │ │ │ │ ├── can-override.js
│ │ │ │ │ │ ├── clone.js
│ │ │ │ │ │ ├── compactable.js
│ │ │ │ │ │ ├── every-combination.js
│ │ │ │ │ │ ├── has-inherit.js
│ │ │ │ │ │ ├── optimizer.js
│ │ │ │ │ │ ├── override-compactor.js
│ │ │ │ │ │ ├── populate-components.js
│ │ │ │ │ │ ├── remove-unused.js
│ │ │ │ │ │ ├── restore-shorthands.js
│ │ │ │ │ │ ├── restore.js
│ │ │ │ │ │ ├── shorthand-compactor.js
│ │ │ │ │ │ ├── validator.js
│ │ │ │ │ │ └── wrap-for-optimizing.js
│ │ │ │ │ ├── selectors
│ │ │ │ │ │ ├── extractor.js
│ │ │ │ │ │ ├── metadata.js
│ │ │ │ │ │ ├── optimization-metadata.js
│ │ │ │ │ │ ├── optimizer.js
│ │ │ │ │ │ ├── optimizers
│ │ │ │ │ │ │ ├── advanced.js
│ │ │ │ │ │ │ ├── clean-up.js
│ │ │ │ │ │ │ └── simple.js
│ │ │ │ │ │ ├── reorderable.js
│ │ │ │ │ │ └── tokenizer.js
│ │ │ │ │ ├── stringifier
│ │ │ │ │ │ ├── helpers.js
│ │ │ │ │ │ ├── one-time.js
│ │ │ │ │ │ ├── simple.js
│ │ │ │ │ │ └── source-maps.js
│ │ │ │ │ ├── text
│ │ │ │ │ │ ├── comments-processor.js
│ │ │ │ │ │ ├── escape-store.js
│ │ │ │ │ │ ├── expressions-processor.js
│ │ │ │ │ │ ├── free-text-processor.js
│ │ │ │ │ │ └── urls-processor.js
│ │ │ │ │ └── utils
│ │ │ │ │ │ ├── chunker.js
│ │ │ │ │ │ ├── compatibility.js
│ │ │ │ │ │ ├── extractors.js
│ │ │ │ │ │ ├── input-source-map-tracker.js
│ │ │ │ │ │ ├── object.js
│ │ │ │ │ │ ├── quote-scanner.js
│ │ │ │ │ │ ├── source-maps.js
│ │ │ │ │ │ ├── source-reader.js
│ │ │ │ │ │ ├── source-tracker.js
│ │ │ │ │ │ ├── splitter.js
│ │ │ │ │ │ └── url-scanner.js
│ │ │ │ └── package.json
│ │ │ ├── clone-stats
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── commander
│ │ │ │ ├── History.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── core-util-is
│ │ │ │ ├── README.md
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── test_dayofweek.js
│ │ │ │ │ ├── test_formats.js
│ │ │ │ │ ├── test_isoutcdatetime.js
│ │ │ │ │ └── weekofyear
│ │ │ │ │ ├── test_weekofyear.js
│ │ │ │ │ └── test_weekofyear.sh
│ │ │ ├── duplexer2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── example.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── tests.js
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── filesize
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── lib
│ │ │ │ │ └── filesize.js
│ │ │ │ └── package.json
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── graceful-fs
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── graceful-fs.js
│ │ │ │ ├── package.json
│ │ │ │ ├── polyfills.js
│ │ │ │ └── test
│ │ │ │ │ ├── open.js
│ │ │ │ │ └── readdir-sort.js
│ │ │ ├── graceful-readlink
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── gulp-cssmin
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── README.md
│ │ │ │ ├── gulpfile.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── sample
│ │ │ │ │ ├── test
│ │ │ │ │ │ └── type2.css
│ │ │ │ │ ├── type.css
│ │ │ │ │ └── type.min.css
│ │ │ │ └── test.js
│ │ │ ├── gulp-rename
│ │ │ │ ├── .editorconfig
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── Gulpfile.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── fixtures
│ │ │ │ │ ├── hello.min.txt
│ │ │ │ │ └── hello.txt
│ │ │ │ │ ├── path-parsing.spec.js
│ │ │ │ │ ├── rename.spec.js
│ │ │ │ │ └── spec-helper.js
│ │ │ ├── gulp-util
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── File.js
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── beep.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── colors.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── date.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── linefeed.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ ├── replaceExtension.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── isarray
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ └── build.js
│ │ │ │ ├── component.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._escapehtmlchar
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._escapestringchar
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._htmlescapes
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._objecttypes
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reunescapedhtml
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._shimkeys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.defaults
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isobject
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.values
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── map-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENCE
│ │ │ │ ├── examples
│ │ │ │ │ └── pretty.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ └── simple-map.asynct.js
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── minimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ └── parse.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── all_bool.js
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── dash.js
│ │ │ │ │ ├── default_bool.js
│ │ │ │ │ ├── dotted.js
│ │ │ │ │ ├── long.js
│ │ │ │ │ ├── num.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── parse_modified.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── stop_early.js
│ │ │ │ │ ├── unknown.js
│ │ │ │ │ └── whitespace.js
│ │ │ ├── multipipe
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── History.md
│ │ │ │ ├── Makefile
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── multipipe.js
│ │ │ ├── number-is-nan
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── readable-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── source-map
│ │ │ │ ├── .gitattributes
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── dist
│ │ │ │ │ ├── SourceMap.jsm
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ ├── source-map.min.js
│ │ │ │ │ └── test
│ │ │ │ │ │ ├── Utils.jsm
│ │ │ │ │ │ ├── test_api.js
│ │ │ │ │ │ ├── test_array_set.js
│ │ │ │ │ │ ├── test_base64.js
│ │ │ │ │ │ ├── test_base64_vlq.js
│ │ │ │ │ │ ├── test_binary_search.js
│ │ │ │ │ │ ├── test_dog_fooding.js
│ │ │ │ │ │ ├── test_source_map_consumer.js
│ │ │ │ │ │ ├── test_source_map_generator.js
│ │ │ │ │ │ ├── test_source_node.js
│ │ │ │ │ │ └── test_util.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── mapping-list.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ └── package.json
│ │ │ ├── string_decoder
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── temp-write
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── tempfile
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── through2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── uuid
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── benchmark
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── bench.gnu
│ │ │ │ │ ├── bench.sh
│ │ │ │ │ ├── benchmark-native.c
│ │ │ │ │ ├── benchmark.js
│ │ │ │ │ └── package.json
│ │ │ │ ├── buffer-browser.js
│ │ │ │ ├── buffer.js
│ │ │ │ ├── misc
│ │ │ │ │ ├── compare.js
│ │ │ │ │ └── perf.js
│ │ │ │ ├── package.json
│ │ │ │ ├── rng-browser.js
│ │ │ │ ├── rng.js
│ │ │ │ ├── test
│ │ │ │ │ ├── mocha.opts
│ │ │ │ │ └── test.js
│ │ │ │ └── uuid.js
│ │ │ ├── vinyl
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── File.js
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ └── xtend
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENCE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── mutable.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ ├── package.json
│ │ └── test.js
│ ├── gulp-uglify
│ │ ├── .jshintrc
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE.md
│ │ ├── README.md
│ │ ├── index.js
│ │ ├── minifier.js
│ │ ├── node_modules
│ │ │ ├── amdefine
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── amdefine.js
│ │ │ │ ├── intercept.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-differ
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── array-uniq
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── async
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── component.json
│ │ │ │ ├── lib
│ │ │ │ │ └── async.js
│ │ │ │ └── package.json
│ │ │ ├── beeper
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── clone-stats
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── clone
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── clone.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── core-util-is
│ │ │ │ ├── README.md
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Readme.md
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── test_dayofweek.js
│ │ │ │ │ ├── test_formats.js
│ │ │ │ │ ├── test_isoutcdatetime.js
│ │ │ │ │ └── weekofyear
│ │ │ │ │ ├── test_weekofyear.js
│ │ │ │ │ └── test_weekofyear.sh
│ │ │ ├── deap
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── deap.js
│ │ │ │ │ └── typeof.js
│ │ │ │ ├── package.json
│ │ │ │ ├── shallow.js
│ │ │ │ └── test
│ │ │ │ │ ├── clone.test.js
│ │ │ │ │ ├── deap.test.js
│ │ │ │ │ ├── extend.test.js
│ │ │ │ │ ├── merge.test.js
│ │ │ │ │ ├── shallow.test.js
│ │ │ │ │ └── update.test.js
│ │ │ ├── decamelize
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── duplexer2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── example.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── tests.js
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── gulp-uglify
│ │ │ │ ├── .idea
│ │ │ │ │ ├── .name
│ │ │ │ │ ├── atlassian-ide-plugin.xml
│ │ │ │ │ ├── compiler.xml
│ │ │ │ │ ├── copyright
│ │ │ │ │ │ └── profiles_settings.xml
│ │ │ │ │ ├── encodings.xml
│ │ │ │ │ ├── gulp-uglify.iml
│ │ │ │ │ ├── inspectionProfiles
│ │ │ │ │ │ ├── Project_Default.xml
│ │ │ │ │ │ └── profiles_settings.xml
│ │ │ │ │ ├── jsLibraryMappings.xml
│ │ │ │ │ ├── libraries
│ │ │ │ │ │ └── gulp_uglify_node_modules.xml
│ │ │ │ │ ├── misc.xml
│ │ │ │ │ ├── modules.xml
│ │ │ │ │ ├── scopes
│ │ │ │ │ │ └── scope_settings.xml
│ │ │ │ │ ├── vcs.xml
│ │ │ │ │ └── workspace.xml
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── minifier.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── comments.js
│ │ │ │ │ ├── err.js
│ │ │ │ │ ├── injectable.js
│ │ │ │ │ ├── minify.js
│ │ │ │ │ ├── no-compress.js
│ │ │ │ │ ├── null.js
│ │ │ │ │ ├── sourcemap.js
│ │ │ │ │ └── streams.js
│ │ │ ├── gulp-util
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── isarray
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ └── build.js
│ │ │ │ ├── component.json
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basecopy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basetostring
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basevalues
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._getnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isiterateecall
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reescape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reevaluate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarguments
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarray
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.restparam
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── minimist
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── example
│ │ │ │ │ └── parse.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ │ ├── all_bool.js
│ │ │ │ │ ├── bool.js
│ │ │ │ │ ├── dash.js
│ │ │ │ │ ├── default_bool.js
│ │ │ │ │ ├── dotted.js
│ │ │ │ │ ├── long.js
│ │ │ │ │ ├── num.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── parse_modified.js
│ │ │ │ │ ├── short.js
│ │ │ │ │ ├── stop_early.js
│ │ │ │ │ ├── unknown.js
│ │ │ │ │ └── whitespace.js
│ │ │ ├── multipipe
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── History.md
│ │ │ │ ├── Makefile
│ │ │ │ ├── Readme.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── multipipe.js
│ │ │ ├── number-is-nan
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── readable-stream
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── replace-ext
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── main.js
│ │ │ ├── source-map
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.dryice.js
│ │ │ │ ├── README.md
│ │ │ │ ├── build
│ │ │ │ │ ├── assert-shim.js
│ │ │ │ │ ├── mini-require.js
│ │ │ │ │ ├── prefix-source-map.jsm
│ │ │ │ │ ├── prefix-utils.jsm
│ │ │ │ │ ├── suffix-browser.js
│ │ │ │ │ ├── suffix-source-map.jsm
│ │ │ │ │ ├── suffix-utils.jsm
│ │ │ │ │ ├── test-prefix.js
│ │ │ │ │ └── test-suffix.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── source-map.js
│ │ │ │ │ └── source-map
│ │ │ │ │ │ ├── array-set.js
│ │ │ │ │ │ ├── base64-vlq.js
│ │ │ │ │ │ ├── base64.js
│ │ │ │ │ │ ├── binary-search.js
│ │ │ │ │ │ ├── mapping-list.js
│ │ │ │ │ │ ├── source-map-consumer.js
│ │ │ │ │ │ ├── source-map-generator.js
│ │ │ │ │ │ ├── source-node.js
│ │ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── run-tests.js
│ │ │ │ │ └── source-map
│ │ │ │ │ ├── test-api.js
│ │ │ │ │ ├── test-array-set.js
│ │ │ │ │ ├── test-base64-vlq.js
│ │ │ │ │ ├── test-base64.js
│ │ │ │ │ ├── test-binary-search.js
│ │ │ │ │ ├── test-dog-fooding.js
│ │ │ │ │ ├── test-source-map-consumer.js
│ │ │ │ │ ├── test-source-map-generator.js
│ │ │ │ │ ├── test-source-node.js
│ │ │ │ │ ├── test-util.js
│ │ │ │ │ └── util.js
│ │ │ ├── string_decoder
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ ├── package.json
│ │ │ │ └── readme.md
│ │ │ ├── through2
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── uglify-js
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── lib
│ │ │ │ │ ├── ast.js
│ │ │ │ │ ├── compress.js
│ │ │ │ │ ├── mozilla-ast.js
│ │ │ │ │ ├── output.js
│ │ │ │ │ ├── parse.js
│ │ │ │ │ ├── propmangle.js
│ │ │ │ │ ├── scope.js
│ │ │ │ │ ├── sourcemap.js
│ │ │ │ │ ├── transform.js
│ │ │ │ │ └── utils.js
│ │ │ │ ├── package.json
│ │ │ │ ├── tmp
│ │ │ │ │ ├── test-clone.js
│ │ │ │ │ ├── test-moz-ast.js
│ │ │ │ │ ├── test-propmangle.js
│ │ │ │ │ ├── test-smart.js
│ │ │ │ │ └── test.js
│ │ │ │ └── tools
│ │ │ │ │ ├── domprops.json
│ │ │ │ │ ├── node.js
│ │ │ │ │ └── props.html
│ │ │ ├── uglify-to-browserify
│ │ │ │ ├── .npmignore
│ │ │ │ ├── .travis.yml
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ └── index.js
│ │ │ ├── vinyl-sourcemaps-apply
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── vinyl
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ └── package.json
│ │ │ ├── window-size
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── README.md
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── wordwrap
│ │ │ │ ├── .npmignore
│ │ │ │ ├── README.markdown
│ │ │ │ ├── example
│ │ │ │ │ ├── center.js
│ │ │ │ │ └── meat.js
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ └── test
│ │ │ │ │ ├── break.js
│ │ │ │ │ ├── idleness.txt
│ │ │ │ │ └── wrap.js
│ │ │ ├── xtend
│ │ │ │ ├── .jshintrc
│ │ │ │ ├── .npmignore
│ │ │ │ ├── LICENCE
│ │ │ │ ├── Makefile
│ │ │ │ ├── README.md
│ │ │ │ ├── immutable.js
│ │ │ │ ├── mutable.js
│ │ │ │ ├── package.json
│ │ │ │ └── test.js
│ │ │ └── yargs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── completion.sh.hbs
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ ├── completion.js
│ │ │ │ ├── parser.js
│ │ │ │ ├── usage.js
│ │ │ │ └── validation.js
│ │ │ │ └── package.json
│ │ └── package.json
│ ├── gulp
│ │ ├── LICENSE
│ │ ├── completion
│ │ │ ├── bash
│ │ │ ├── fish
│ │ │ ├── powershell
│ │ │ └── zsh
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── completion.js
│ │ │ └── taskTree.js
│ │ ├── node_modules
│ │ │ ├── .bin
│ │ │ │ ├── semver
│ │ │ │ └── semver.cmd
│ │ │ ├── ansi-regex
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── ansi-styles
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── archy
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── array-differ
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── array-uniq
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── balanced-match
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── beeper
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── brace-expansion
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── camelcase-keys
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── camelcase
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── chalk
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── clone-stats
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── clone
│ │ │ │ ├── LICENSE
│ │ │ │ ├── clone.js
│ │ │ │ └── package.json
│ │ │ ├── concat-map
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── core-util-is
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ └── util.js
│ │ │ │ ├── package.json
│ │ │ │ └── util.js
│ │ │ ├── dateformat
│ │ │ │ ├── LICENSE
│ │ │ │ ├── lib
│ │ │ │ │ └── dateformat.js
│ │ │ │ └── package.json
│ │ │ ├── defaults
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── deprecated
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── duplexer2
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── end-of-stream
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── escape-string-regexp
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── extend
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── find-index
│ │ │ │ ├── index.js
│ │ │ │ ├── last.js
│ │ │ │ └── package.json
│ │ │ ├── findup-sync
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── lib
│ │ │ │ │ └── findup-sync.js
│ │ │ │ └── package.json
│ │ │ ├── first-chunk-stream
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── flagged-respawn
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── reorder.js
│ │ │ │ │ └── respawn.js
│ │ │ │ └── package.json
│ │ │ ├── gaze
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── lib
│ │ │ │ │ ├── gaze.js
│ │ │ │ │ └── helper.js
│ │ │ │ └── package.json
│ │ │ ├── get-stdin
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── glob-stream
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── glob-watcher
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── glob
│ │ │ │ ├── LICENSE
│ │ │ │ ├── common.js
│ │ │ │ ├── glob.js
│ │ │ │ ├── package.json
│ │ │ │ └── sync.js
│ │ │ ├── glob2base
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── globule
│ │ │ │ ├── LICENSE-MIT
│ │ │ │ ├── lib
│ │ │ │ │ └── globule.js
│ │ │ │ └── package.json
│ │ │ ├── graceful-fs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── fs.js
│ │ │ │ ├── graceful-fs.js
│ │ │ │ ├── package.json
│ │ │ │ └── polyfills.js
│ │ │ ├── gulp-util
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── PluginError.js
│ │ │ │ │ ├── buffer.js
│ │ │ │ │ ├── combine.js
│ │ │ │ │ ├── env.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ ├── isStream.js
│ │ │ │ │ ├── log.js
│ │ │ │ │ ├── noop.js
│ │ │ │ │ └── template.js
│ │ │ │ └── package.json
│ │ │ ├── has-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── indent-string
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── inflight
│ │ │ │ ├── LICENSE
│ │ │ │ ├── inflight.js
│ │ │ │ └── package.json
│ │ │ ├── inherits
│ │ │ │ ├── LICENSE
│ │ │ │ ├── inherits.js
│ │ │ │ ├── inherits_browser.js
│ │ │ │ └── package.json
│ │ │ ├── interpret
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── is-finite
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── is-utf8
│ │ │ │ ├── is-utf8.js
│ │ │ │ └── package.json
│ │ │ ├── isarray
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── liftoff
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── build_config_name.js
│ │ │ │ │ ├── file_search.js
│ │ │ │ │ ├── find_config.js
│ │ │ │ │ ├── find_cwd.js
│ │ │ │ │ ├── parse_options.js
│ │ │ │ │ └── silent_require.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basecopy
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basetostring
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._basevalues
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._isiterateecall
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reescape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reevaluate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash._reinterpolate
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.escape
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarguments
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isarray
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.isnative
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.keys
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.template
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash.templatesettings
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── lodash
│ │ │ │ ├── dist
│ │ │ │ │ ├── lodash.compat.js
│ │ │ │ │ ├── lodash.compat.min.js
│ │ │ │ │ ├── lodash.js
│ │ │ │ │ ├── lodash.min.js
│ │ │ │ │ ├── lodash.underscore.js
│ │ │ │ │ └── lodash.underscore.min.js
│ │ │ │ └── package.json
│ │ │ ├── lru-cache
│ │ │ │ ├── LICENSE
│ │ │ │ ├── lib
│ │ │ │ │ └── lru-cache.js
│ │ │ │ └── package.json
│ │ │ ├── map-obj
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── meow
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── minimatch
│ │ │ │ ├── LICENSE
│ │ │ │ ├── benchmark.js
│ │ │ │ ├── browser.js
│ │ │ │ ├── minimatch.js
│ │ │ │ └── package.json
│ │ │ ├── minimist
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── mkdirp
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── multipipe
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── object-assign
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── once
│ │ │ │ ├── LICENSE
│ │ │ │ ├── once.js
│ │ │ │ └── package.json
│ │ │ ├── orchestrator
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ └── runTask.js
│ │ │ │ └── package.json
│ │ │ ├── ordered-read-streams
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── pretty-hrtime
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── readable-stream
│ │ │ │ ├── LICENSE
│ │ │ │ ├── duplex.js
│ │ │ │ ├── float.patch
│ │ │ │ ├── lib
│ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ └── _stream_writable.js
│ │ │ │ ├── package.json
│ │ │ │ ├── passthrough.js
│ │ │ │ ├── readable.js
│ │ │ │ ├── transform.js
│ │ │ │ └── writable.js
│ │ │ ├── repeating
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── replace-ext
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── resolve
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── async.js
│ │ │ │ │ ├── caller.js
│ │ │ │ │ ├── core.js
│ │ │ │ │ ├── core.json
│ │ │ │ │ ├── node-modules-paths.js
│ │ │ │ │ └── sync.js
│ │ │ │ └── package.json
│ │ │ ├── semver
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ ├── semver.browser.js
│ │ │ │ ├── semver.js
│ │ │ │ └── semver.min.js
│ │ │ ├── sequencify
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── sigmund
│ │ │ │ ├── LICENSE
│ │ │ │ ├── bench.js
│ │ │ │ ├── package.json
│ │ │ │ └── sigmund.js
│ │ │ ├── stream-consume
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── string_decoder
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-ansi
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── strip-bom
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── supports-color
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── through2
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ └── through2.js
│ │ │ ├── tildify
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── unique-stream
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── user-home
│ │ │ │ ├── cli.js
│ │ │ │ ├── index.js
│ │ │ │ ├── license
│ │ │ │ └── package.json
│ │ │ ├── v8flags
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── vinyl-fs
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── dest
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ └── writeContents
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── writeBuffer.js
│ │ │ │ │ │ │ ├── writeDir.js
│ │ │ │ │ │ │ └── writeStream.js
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── getContents
│ │ │ │ │ │ ├── bufferFile.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── readDir.js
│ │ │ │ │ │ └── streamFile.js
│ │ │ │ │ │ ├── getStats.js
│ │ │ │ │ │ └── index.js
│ │ │ │ └── package.json
│ │ │ ├── vinyl
│ │ │ │ ├── LICENSE
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cloneBuffer.js
│ │ │ │ │ ├── inspectStream.js
│ │ │ │ │ ├── isBuffer.js
│ │ │ │ │ ├── isNull.js
│ │ │ │ │ └── isStream.js
│ │ │ │ └── package.json
│ │ │ ├── wrappy
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ └── wrappy.js
│ │ │ └── xtend
│ │ │ │ ├── LICENCE
│ │ │ │ ├── immutable.js
│ │ │ │ ├── mutable.js
│ │ │ │ └── package.json
│ │ └── package.json
│ └── rimraf
│ │ ├── LICENSE
│ │ ├── bin.js
│ │ ├── package.json
│ │ └── rimraf.js
│ ├── package.json
│ ├── project.json
│ └── wwwroot
│ ├── _references.js
│ ├── css
│ └── site.css
│ ├── favicon.ico
│ ├── images
│ ├── ASP-NET-Banners-01.png
│ ├── ASP-NET-Banners-02.png
│ ├── Banner-01-Azure.png
│ └── Banner-02-VS.png
│ ├── js
│ └── site.js
│ ├── lib
│ ├── bootstrap
│ │ ├── .bower.json
│ │ ├── LICENSE
│ │ └── dist
│ │ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ └── bootstrap.min.css
│ │ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ ├── jquery-validation-unobtrusive
│ │ ├── .bower.json
│ │ ├── jquery.validate.unobtrusive.js
│ │ └── jquery.validate.unobtrusive.min.js
│ ├── jquery-validation
│ │ ├── .bower.json
│ │ ├── LICENSE.md
│ │ └── dist
│ │ │ ├── additional-methods.js
│ │ │ ├── additional-methods.min.js
│ │ │ ├── jquery.validate.js
│ │ │ └── jquery.validate.min.js
│ └── jquery
│ │ ├── .bower.json
│ │ ├── MIT-LICENSE.txt
│ │ └── dist
│ │ ├── jquery.js
│ │ ├── jquery.min.js
│ │ └── jquery.min.map
│ └── web.config
├── LICENSE
├── LargeFileUploadController
├── FileUploadController.cs
├── NuGet.Config
├── Program.cs
└── project.json
├── LargeFileUploadMiddleware
├── NuGet.config
├── Startup.cs
└── project.json
├── NewtonSoftCamelCaseJson
├── Program.cs
└── temp.csproj
├── NewtonSoftEscapedJson
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── Program.cs
├── global.json
├── project.json
├── test.json
└── textFromDebug.json
├── README.md
├── Reflection
├── .vs
│ └── ClassLibrary1
│ │ └── v14
│ │ └── .suo
├── ClassLibrary1.sln
├── ClassLibrary1
│ ├── Class1.cs
│ ├── ClassLibrary1.xproj
│ ├── ClassLibrary1.xproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── project.json
│ └── project.lock.json
└── ClassLibrary2
│ ├── .vs
│ └── ClassLibrary2
│ │ └── v14
│ │ └── .suo
│ ├── Class1.cs
│ ├── ClassLibrary2.sln
│ ├── PortabilityAnalysis.html
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── ReflectionPortabilityAnalysis.csproj
│ ├── bin
│ └── Debug
│ │ ├── ClassLibrary2.dll
│ │ └── ClassLibrary2.pdb
│ └── obj
│ └── Debug
│ ├── ClassLibrary2.csproj.FileListAbsolute.txt
│ ├── ClassLibrary2.csprojResolveAssemblyReference.cache
│ ├── ClassLibrary2.dll
│ ├── ClassLibrary2.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── ReflectionPortabilityAnalysis.csproj.FileListAbsolute.txt
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── RuntimeInfo
├── Program.cs
├── bin
│ ├── Debug
│ │ └── netstandardapp1.5
│ │ │ ├── hosting03.dll
│ │ │ ├── hosting03.pdb
│ │ │ └── win7-x64
│ │ │ ├── hosting03.deps
│ │ │ ├── hosting03.dll
│ │ │ ├── hosting03.exe
│ │ │ ├── hosting03.pdb
│ │ │ └── hostpolicy.dll
│ └── Release
│ │ └── net46
│ │ ├── RuntimeInfo.exe
│ │ ├── RuntimeInfo.pdb
│ │ └── win7-x64
│ │ ├── JWT.dll
│ │ ├── Jil.dll
│ │ ├── Microsoft.AspNetCore.Antiforgery.dll
│ │ ├── Microsoft.AspNetCore.Authentication.dll
│ │ ├── Microsoft.AspNetCore.Authorization.dll
│ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll
│ │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.DataProtection.dll
│ │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Diagnostics.dll
│ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Hosting.dll
│ │ ├── Microsoft.AspNetCore.Html.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Http.Extensions.dll
│ │ ├── Microsoft.AspNetCore.Http.Features.dll
│ │ ├── Microsoft.AspNetCore.Http.dll
│ │ ├── Microsoft.AspNetCore.IISPlatformHandler.dll
│ │ ├── Microsoft.AspNetCore.JsonPatch.dll
│ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Mvc.Core.dll
│ │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.dll
│ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll
│ │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.dll
│ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll
│ │ ├── Microsoft.AspNetCore.Routing.dll
│ │ ├── Microsoft.AspNetCore.Server.Kestrel.dll
│ │ ├── Microsoft.AspNetCore.StaticFiles.dll
│ │ ├── Microsoft.AspNetCore.WebUtilities.dll
│ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll
│ │ ├── Microsoft.Extensions.Configuration.CommandLine.dll
│ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll
│ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll
│ │ ├── Microsoft.Extensions.Configuration.Json.dll
│ │ ├── Microsoft.Extensions.Configuration.dll
│ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll
│ │ ├── Microsoft.Extensions.DependencyInjection.dll
│ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll
│ │ ├── Microsoft.Extensions.FileProviders.Physical.dll
│ │ ├── Microsoft.Extensions.Localization.Abstractions.dll
│ │ ├── Microsoft.Extensions.Localization.dll
│ │ ├── Microsoft.Extensions.Logging.Abstractions.dll
│ │ ├── Microsoft.Extensions.Logging.Console.dll
│ │ ├── Microsoft.Extensions.Logging.dll
│ │ ├── Microsoft.Extensions.ObjectPool.dll
│ │ ├── Microsoft.Extensions.Options.dll
│ │ ├── Microsoft.Extensions.PlatformAbstractions.Dnx.dll
│ │ ├── Microsoft.Extensions.PlatformAbstractions.dll
│ │ ├── Microsoft.Extensions.Primitives.dll
│ │ ├── Microsoft.Extensions.WebEncoders.dll
│ │ ├── Microsoft.Net.Http.Headers.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── RuntimeInfo.exe
│ │ ├── RuntimeInfo.exe.config
│ │ ├── RuntimeInfo.pdb
│ │ ├── Sigil.dll
│ │ ├── System.Buffers.dll
│ │ ├── System.ComponentModel.Primitives.dll
│ │ ├── System.ComponentModel.TypeConverter.dll
│ │ ├── System.Diagnostics.DiagnosticSource.dll
│ │ ├── System.IO.dll
│ │ ├── System.Numerics.Vectors.dll
│ │ ├── System.Reflection.TypeExtensions.dll
│ │ ├── System.Reflection.dll
│ │ ├── System.Runtime.Extensions.dll
│ │ ├── System.Runtime.InteropServices.PInvoke.dll
│ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll
│ │ ├── System.Runtime.InteropServices.dll
│ │ ├── System.Runtime.Serialization.Primitives.dll
│ │ ├── System.Runtime.dll
│ │ ├── System.Text.Encodings.Web.dll
│ │ ├── System.Threading.Tasks.Extensions.dll
│ │ └── libuv.dll
├── obj
│ ├── Debug
│ │ └── netstandardapp1.5
│ │ │ ├── dotnet-compile-csc.rsp
│ │ │ ├── dotnet-compile.assemblyinfo.cs
│ │ │ └── dotnet-compile.rsp
│ └── Release
│ │ └── net46
│ │ ├── dotnet-compile-csc.rsp
│ │ ├── dotnet-compile.assemblyinfo.cs
│ │ └── dotnet-compile.rsp
├── project.json
├── project.lock.json
└── wwwroot
│ └── web.config
├── TagHelpersNotWorking
├── .gitignore
├── Controllers
│ └── HomeController.cs
├── Models
│ └── User.cs
├── Startup.cs
├── Views
│ ├── Home
│ │ └── Index.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ └── _Layout.cshtml
│ ├── _ViewImports.cshtml
│ └── _ViewStart.cshtml
├── appsettings.json
├── project.json
└── wwwroot
│ └── web.config
├── TypeScriptAureliaWebpackVS2017Debug
├── installation-01.PNG
└── steps.md
├── TypeScriptExportAllAsName
├── core
│ ├── bar
│ │ ├── baz.ts
│ │ ├── bop.ts
│ │ └── index.ts
│ ├── foo
│ │ ├── baz.ts
│ │ ├── bop.ts
│ │ └── index.ts
│ └── index.ts
└── index.ts
├── TypeScriptGlobalTypeDeclarations
├── global.d.ts
├── index.ts
├── package.json
└── tsconfig.json
├── TypeScriptReferenceTypeDefinitions
├── TypeScriptHtmlTypes
│ ├── index.js
│ ├── index.ts
│ └── tsconfig.json
├── index.js
├── index.ts
├── sql
│ └── models.d.ts
└── tsconfig.json
├── TypeScriptStrictNullChecks
├── index.ts
└── tsconfig.json
├── VsCodeDotNetCliWatchDebug
├── .vscode
│ ├── launch.json
│ └── tasks.json
├── Program.cs
├── VsCodeDotNetCliWatchDebug.csproj
└── global.json
├── VsCodeTypeScriptBreakpoints
├── .vscode
│ ├── launch.json
│ ├── settings.json
│ └── tasks.json
├── README.md
├── index.ts
├── package.json
└── tsconfig.json
├── VsCodeTypeScriptNodeDebugWatch
├── .vscode
│ ├── launch.json
│ ├── settings.json
│ └── tasks.json
├── README.md
├── app.js
├── app.js.map
├── app.ts
├── npm-debug.log
├── package.json
└── tsconfig.json
├── backup
└── AspNetCorePublishToIIS
│ └── project.json
└── typescript-create-and-use-untranspiled-modules
├── .gitignore
├── index.ts
├── node_modules
└── common-files
│ ├── api
│ └── user.ts
│ ├── index.ts
│ └── package.json
├── package.json
└── tsconfig.json
/.gitignore:
--------------------------------------------------------------------------------
1 | project.lock.json
2 | bin/
3 | obj/
4 | approot/
5 | publish/
6 | node_modules/
7 |
--------------------------------------------------------------------------------
/AccessingEnvVariablesRC1/config.json:
--------------------------------------------------------------------------------
1 | { "bar": 1 }
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/DesignTimeBuild/.dtbcache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/DesignTimeBuild/.dtbcache
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/.suo
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/Server/sqlite3/db.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/Server/sqlite3/db.lock
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/Server/sqlite3/storage.ide-shm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/Server/sqlite3/storage.ide-shm
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/Server/sqlite3/storage.ide-wal:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAntiforgery/.vs/AspNetCoreAntiforgery/v15/Server/sqlite3/storage.ide-wal
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Debug",
5 | "System": "Information",
6 | "Microsoft": "Information"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCoreAntiforgery/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Warning"
5 | }
6 | },
7 | "AllowedHosts": "*"
8 | }
9 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/Views/Home/About.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "About";
3 | }
4 |
@ViewData["Title"]
5 | @ViewData["Message"]
6 |
7 | Use this area to provide additional information.
8 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/Views/Home/Privacy.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Privacy Policy";
3 | }
4 | @ViewData["Title"]
5 |
6 | Use this page to detail your site's privacy policy.
7 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/Views/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using AspNetCoreAppUse
2 | @using AspNetCoreAppUse.Models
3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
4 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Debug",
5 | "System": "Information",
6 | "Microsoft": "Information"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Warning"
5 | }
6 | },
7 | "AllowedHosts": "*"
8 | }
9 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAppUse/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/js/site.js:
--------------------------------------------------------------------------------
1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
2 | // for details on configuring this project to bundle and minify static web assets.
3 |
4 | // Write your JavaScript code.
5 |
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/js/site.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAppUse/wwwroot/js/site.min.js
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreAppUse/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/AspNetCoreCustomControllerNames/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AspNetCoreDependencyInjectionFromMiddleware/Customer.cs:
--------------------------------------------------------------------------------
1 | namespace AspNetCoreDependencyInjectionFromMiddleware
2 | {
3 | public class Customer
4 | {
5 | public string SomeValue { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/AspNetCoreDependencyInjectionFromMiddleware/SupplyApiClientHttpSettings.cs:
--------------------------------------------------------------------------------
1 | namespace AspNetCoreDependencyInjectionFromMiddleware
2 | {
3 | public class SupplyApiClientHttpSettings
4 | {
5 | public string SomeValue { get; set; }
6 | }
7 | }
--------------------------------------------------------------------------------
/AspNetCoreDependencyInjectionFromMiddleware/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "someValue": "Value from appsettings"
3 | }
--------------------------------------------------------------------------------
/AspNetCoreEntityFrameworkMigrations/DataLayer.Migrations/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "ConnectionStrings": {
3 | "DefaultConnection":
4 | "Filename=MyDatabase.sqlite"
5 | }
6 | }
--------------------------------------------------------------------------------
/AspNetCoreEntityFrameworkMigrations/DataLayer/MyDataModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace DataLayer
4 | {
5 | public class MyDataModel
6 | {
7 | public Guid Id { get; set; }
8 | }
9 | }
--------------------------------------------------------------------------------
/AspNetCoreIIS404/HomeController.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.AspNetCore.Mvc;
2 |
3 | public class HomeController : Controller
4 | {
5 | public ActionResult Index()
6 | {
7 | return Content("Hello from Home.Index");
8 | }
9 | }
--------------------------------------------------------------------------------
/AspNetCoreIIS404/index.html:
--------------------------------------------------------------------------------
1 | Index.html
--------------------------------------------------------------------------------
/AspNetCoreKendoMvc/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace ConsoleApplication
4 | {
5 | public class Program
6 | {
7 | public static void Main(string[] args)
8 | {
9 | Console.WriteLine("Hello World!");
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/AspNetCoreKendoMvc/README.md:
--------------------------------------------------------------------------------
1 | [Install the .NET CLI][1]. Then run...
2 |
3 | dotnet restore
4 | dotnet run
5 |
6 | [1]: https://github.com/dotnet/cli#installers-and-binaries
7 |
--------------------------------------------------------------------------------
/AspNetCoreKestrelCertificate/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Debug",
5 | "System": "Information",
6 | "Microsoft": "Information"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCoreKestrelCertificate/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Warning"
5 | }
6 | },
7 | "AllowedHosts": "*"
8 | }
9 |
--------------------------------------------------------------------------------
/AspNetCoreMultipartByterRanges/blue.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreMultipartByterRanges/blue.jpg
--------------------------------------------------------------------------------
/AspNetCoreMultipartByterRanges/green.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreMultipartByterRanges/green.jpg
--------------------------------------------------------------------------------
/AspNetCoreMultipartByterRanges/red.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreMultipartByterRanges/red.jpg
--------------------------------------------------------------------------------
/AspNetCoreOptionsSnapshotInService/Customer.cs:
--------------------------------------------------------------------------------
1 | namespace AspNetCoreOptionsSnapshotInService
2 | {
3 | public class Customer
4 | {
5 | public string SomeValue { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/AspNetCoreOptionsSnapshotInService/SupplyApiClientHttpSettings.cs:
--------------------------------------------------------------------------------
1 | namespace AspNetCoreOptionsSnapshotInService
2 | {
3 | public class SupplyApiClientHttpSettings
4 | {
5 | public string SomeValue { get; set; }
6 | }
7 | }
--------------------------------------------------------------------------------
/AspNetCoreOptionsSnapshotInService/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "someValue": "Value from appsettings"
3 | }
--------------------------------------------------------------------------------
/AspNetCorePlayground/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "files.exclude": {
3 | "**/obj": true,
4 | "**/bin": true,
5 | },
6 | }
--------------------------------------------------------------------------------
/AspNetCorePlayground/README.md:
--------------------------------------------------------------------------------
1 |
2 | Usage
3 |
4 | .\run.ps1
--------------------------------------------------------------------------------
/AspNetCorePlayground/Views/Home/About.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "About";
3 | }
4 | @ViewData["Title"]
5 | @ViewData["Message"]
6 |
7 | Use this area to provide additional information.
8 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/Views/Home/Privacy.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Privacy Policy";
3 | }
4 | @ViewData["Title"]
5 |
6 | Use this page to detail your site's privacy policy.
7 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/Views/Shared/Components/MyFirst/Default.cshtml:
--------------------------------------------------------------------------------
1 | My first view component
--------------------------------------------------------------------------------
/AspNetCorePlayground/Views/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using AspNetCorePlayground
2 | @using AspNetCorePlayground.Models
3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
4 | @addTagHelper *, AspNetCorePlayground
5 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Debug",
5 | "System": "Information",
6 | "Microsoft": "Information"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Warning"
5 | }
6 | },
7 | "AllowedHosts": "*"
8 | }
9 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/run.ps1:
--------------------------------------------------------------------------------
1 |
2 | dotnet restore;
3 | dotnet build;
4 | dotnet watch run;
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePlayground/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/js/site.1.js:
--------------------------------------------------------------------------------
1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
2 | // for details on configuring this project to bundle and minify static web assets.
3 |
4 | // Write your JavaScript code.
5 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/js/site.js:
--------------------------------------------------------------------------------
1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
2 | // for details on configuring this project to bundle and minify static web assets.
3 |
4 | // Write your JavaScript code.
5 |
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/js/site.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePlayground/wwwroot/js/site.min.js
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePlayground/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/AspNetCorePublishPreview4/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | class Program
4 | {
5 | static void Main(string[] args)
6 | {
7 | Console.WriteLine("Hello World!");
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCorePublishToIIS/runtimeconfig.template.json:
--------------------------------------------------------------------------------
1 | {
2 | "configProperties": {
3 | "System.GC.Server": true
4 | }
5 | }
--------------------------------------------------------------------------------
/AspNetCorePublishToIIS/wwwroot/foo.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCorePublishToIIS/wwwroot/foo.html
--------------------------------------------------------------------------------
/AspNetCoreSendGrid/Program.cs:
--------------------------------------------------------------------------------
1 | namespace ConsoleApplication
2 | {
3 | public class Program
4 | {
5 | public static void Main(string[] args)
6 | {
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCoreSendGrid/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdk": {
3 | "version": "1.0.0-preview2-003131"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/AspNetCoreServerSentEvents/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AspNetCoreSqlite/Algae.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreSqlite/Algae.db
--------------------------------------------------------------------------------
/AspNetCoreStyleCop/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace ConsoleApplication
4 | {
5 | public class Program
6 | {
7 | public static void Main(string[] args)
8 | {
9 | Console.WriteLine("Hello World!");
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/AspNetCoreStyleCop/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdk": {
3 | "version": "1.0.0-preview2-003131"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/AspNetCoreUriToAssoc/BedsEtCetera.cs:
--------------------------------------------------------------------------------
1 | namespace AspNetCoreUriToAssoc
2 | {
3 | public class BedsEtCetera
4 | {
5 | public int Beds { get; set; }
6 | public int Page { get; set; }
7 | public string Sort { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/Views/Home/About.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "About";
3 | }
4 |
5 | @ViewData["Title"]
6 | @ViewData["Message"]
7 |
8 | Use this area to provide additional information.
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/Views/Home/Index.cshtml:
--------------------------------------------------------------------------------
1 | @await Component.InvokeAsync("FooBar")
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/Views/Home/Privacy.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Privacy Policy";
3 | }
4 | @ViewData["Title"]
5 |
6 | Use this page to detail your site's privacy policy.
7 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/Views/Shared/Components/FooBar/Default.cshtml:
--------------------------------------------------------------------------------
1 | FooBarViewComponent
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/Views/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using AspNetCoreViewComponentError
2 | @using AspNetCoreViewComponentError.Models
3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
4 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Debug",
5 | "System": "Information",
6 | "Microsoft": "Information"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Warning"
5 | }
6 | },
7 | "AllowedHosts": "*"
8 | }
9 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreViewComponentError/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/wwwroot/js/site.js:
--------------------------------------------------------------------------------
1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
2 | // for details on configuring this project to bundle and minify static web assets.
3 |
4 | // Write your JavaScript code.
5 |
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/wwwroot/js/site.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreViewComponentError/wwwroot/js/site.min.js
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreViewComponentError/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/AspNetCoreViewComponentError/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetCoreViewComponentError/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/AspNetCoreVsCodeCleanAndBuild/ConsoleApp/.vscode/tasks.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2.0.0",
3 | "tasks": [
4 | {
5 | "label": "build",
6 | "type": "shell",
7 | "command": "dotnet clean && dotnet build",
8 | }
9 | ]
10 | }
--------------------------------------------------------------------------------
/AspNetCoreVsCodeCleanAndBuild/ConsoleApp/ConsoleApp.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp2.1
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AspNetCoreVsCodeCleanAndBuild/ConsoleApp/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace ConsoleApp
4 | {
5 | class Program
6 | {
7 | static void Main(string[] args)
8 | {
9 | Console.WriteLine("Hello World!");
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/AspNetWindowsService/bin/Debug/dnx451/AspNetWindowsService.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetWindowsService/bin/Debug/dnx451/AspNetWindowsService.dll
--------------------------------------------------------------------------------
/AspNetWindowsService/bin/Debug/dnx451/AspNetWindowsService.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/AspNetWindowsService/bin/Debug/dnx451/AspNetWindowsService.pdb
--------------------------------------------------------------------------------
/AspNetWindowsService/bin/Debug/dnx451/AspNetWindowsService.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | AspNetWindowsService
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/AspNetWindowsService/bin/output/root1/index.html:
--------------------------------------------------------------------------------
1 | Hello from root1.
--------------------------------------------------------------------------------
/AspNetWindowsService/hosting.json:
--------------------------------------------------------------------------------
1 | {
2 | "webroot": "root1"
3 | }
--------------------------------------------------------------------------------
/AspNetWindowsService/root1/index.html:
--------------------------------------------------------------------------------
1 | Hello from root1.
--------------------------------------------------------------------------------
/AspNetWindowsService/root2/index.html:
--------------------------------------------------------------------------------
1 | Hello from root2.
--------------------------------------------------------------------------------
/CreatedAtRoute/.vs/WebApplication1/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/CreatedAtRoute/.vs/WebApplication1/v14/.suo
--------------------------------------------------------------------------------
/CreatedAtRoute/WebApplication1/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/CreatedAtRoute/WebApplication1/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/DeleteLogs/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "LogLevel": {
5 | "Default": "Verbose",
6 | "System": "Information",
7 | "Microsoft": "Information"
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/DeleteLogs/bin/Debug/dnx451/DeleteLogs.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/DeleteLogs/bin/Debug/dnx451/DeleteLogs.dll
--------------------------------------------------------------------------------
/DeleteLogs/bin/Debug/dnx451/DeleteLogs.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/DeleteLogs/bin/Debug/dnx451/DeleteLogs.pdb
--------------------------------------------------------------------------------
/DeleteLogs/bin/Debug/dnx451/DeleteLogs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | DeleteLogs
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/.vs/ClassLibrary/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/.vs/ClassLibrary/v14/.suo
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/Dev82ClassLibrary1.1.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/Dev82ClassLibrary1.1.0.0.nupkg
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/dotnet5.4/Dev82ClassLibrary1.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/dotnet5.4/Dev82ClassLibrary1.dll
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/dotnet5.4/Dev82ClassLibrary1.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/dotnet5.4/Dev82ClassLibrary1.pdb
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/dotnet5.4/Dev82ClassLibrary1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dev82ClassLibrary1
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/net451/Dev82ClassLibrary1.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/net451/Dev82ClassLibrary1.dll
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/net451/Dev82ClassLibrary1.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/net451/Dev82ClassLibrary1.pdb
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary1/Debug/net451/Dev82ClassLibrary1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dev82ClassLibrary1
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/Dev82ClassLibrary2.1.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/Dev82ClassLibrary2.1.0.0.nupkg
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/dotnet5.4/Dev82ClassLibrary2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/dotnet5.4/Dev82ClassLibrary2.dll
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/dotnet5.4/Dev82ClassLibrary2.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/dotnet5.4/Dev82ClassLibrary2.pdb
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/dotnet5.4/Dev82ClassLibrary2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dev82ClassLibrary2
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/net451/Dev82ClassLibrary2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/net451/Dev82ClassLibrary2.dll
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/net451/Dev82ClassLibrary2.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/net451/Dev82ClassLibrary2.pdb
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary2/Debug/net451/Dev82ClassLibrary2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dev82ClassLibrary2
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/Dev82ClassLibrary3.1.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/Dev82ClassLibrary3.1.0.0.nupkg
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/dotnet5.4/Dev82ClassLibrary3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/dotnet5.4/Dev82ClassLibrary3.dll
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/dotnet5.4/Dev82ClassLibrary3.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/dotnet5.4/Dev82ClassLibrary3.pdb
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/dotnet5.4/Dev82ClassLibrary3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dev82ClassLibrary3
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/net451/Dev82ClassLibrary3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/net451/Dev82ClassLibrary3.dll
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/net451/Dev82ClassLibrary3.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/net451/Dev82ClassLibrary3.pdb
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/artifacts/bin/Dev82ClassLibrary3/Debug/net451/Dev82ClassLibrary3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Dev82ClassLibrary3
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "projects": [ "src", "test" ],
3 | "sdk": {
4 | "version": "1.0.0-rc1-update1"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/Dev82/ClassLibrary/src/ClassLibrary1/.vs/ClassLibrary1/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/ClassLibrary/src/ClassLibrary1/.vs/ClassLibrary1/v14/.suo
--------------------------------------------------------------------------------
/Dev82/Mvc/.vs/Mvc/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/.vs/Mvc/v14/.suo
--------------------------------------------------------------------------------
/Dev82/Mvc/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "projects": [ "src", "test" ],
3 | "sdk": {
4 | "version": "1.0.0-rc1-update1"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "wwwroot/lib"
3 | }
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Mvc.xproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | IIS Express
5 |
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/Account/ExternalLoginFailure.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Login Failure";
3 | }
4 |
5 |
9 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/Account/ForgotPasswordConfirmation.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Forgot Password Confirmation";
3 | }
4 |
5 | @ViewData["Title"].
6 |
7 | Please check your email to reset your password.
8 |
9 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/Account/Lockout.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Locked out";
3 | }
4 |
5 |
9 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/Home/About.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "About";
3 | }
4 | @ViewData["Title"].
5 | @ViewData["Message"]
6 |
7 | Use this area to provide additional information.
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Error";
3 | }
4 |
5 | Error.
6 | An error occurred while processing your request.
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using Mvc
2 | @using Mvc.Models
3 | @using Mvc.ViewModels.Account
4 | @using Mvc.ViewModels.Manage
5 | @using Microsoft.AspNet.Identity
6 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers"
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ASP.NET",
3 | "private": true,
4 | "dependencies": {
5 | "bootstrap": "3.3.5",
6 | "jquery": "2.1.4",
7 | "jquery-validation": "1.14.0",
8 | "jquery-validation-unobtrusive": "3.2.4"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/.bin/gulp.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\gulp\bin\gulp.js" %*
3 | ) ELSE (
4 | node "%~dp0\..\gulp\bin\gulp.js" %*
5 | )
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/.bin/rimraf.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\rimraf\bin.js" %*
3 | ) ELSE (
4 | node "%~dp0\..\rimraf\bin.js" %*
5 | )
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/array-differ/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function (arr) {
3 | var rest = [].concat.apply([], [].slice.call(arguments, 1));
4 | return arr.filter(function (el) {
5 | return rest.indexOf(el) === -1;
6 | });
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/clone/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/clone/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/dateformat/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.11"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/dateformat/test/weekofyear/test_weekofyear.js:
--------------------------------------------------------------------------------
1 | var dateFormat = require('../lib/dateformat.js');
2 |
3 | var val = process.argv[2] || new Date();
4 | console.log(dateFormat(val, 'W'));
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/duplexer2/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/duplexer2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/multipipe/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/multipipe/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/multipipe/Makefile:
--------------------------------------------------------------------------------
1 |
2 | node_modules: package.json
3 | @npm install
4 |
5 | test:
6 | @./node_modules/.bin/mocha \
7 | --reporter spec \
8 | --timeout 100
9 |
10 | .PHONY: test
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/number-is-nan/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = Number.isNaN || function (x) {
3 | return x !== x;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/replace-ext/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/replace-ext/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.7"
4 | - "0.8"
5 | - "0.9"
6 | - "0.10"
7 | after_script:
8 | - npm run coveralls
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/source-map/.gitattributes:
--------------------------------------------------------------------------------
1 | bench/scalajs-runtime-sourcemap.js binary
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/source-map/.npmignore:
--------------------------------------------------------------------------------
1 | bench/
2 | test/
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/source-map/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - "0.10"
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/source-map/build/test-suffix.js:
--------------------------------------------------------------------------------
1 | function run_test() {
2 | runSourceMapTests('{THIS_MODULE}', do_throw);
3 | }
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/through2/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .jshintrc
3 | .travis.yml
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-concat/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/clean-css/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/clean');
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/clean-css/lib/selectors/metadata.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/clean-css/lib/selectors/metadata.js
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/dateformat/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.11"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/dateformat/test/weekofyear/test_weekofyear.js:
--------------------------------------------------------------------------------
1 | var dateFormat = require('../lib/dateformat.js');
2 |
3 | var val = process.argv[2] || new Date();
4 | console.log(dateFormat(val, 'W'));
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/duplexer2/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/duplexer2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/filesize/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules/
2 | /lib/filesize.min.js
3 | /lib/filesize.map
4 | /src/
5 | /test/
6 | .jshintrc
7 | .travis.yml
8 | Gruntfile.js
9 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/graceful-fs/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/graceful-readlink/.npmignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | .DS_Store
3 | node_modules/
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/graceful-readlink/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 | - "0.12"
5 | - "io.js"
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/test/type2.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/test/type2.css
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.css:
--------------------------------------------------------------------------------
1 | body {
2 | color: red;
3 | }
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.min.css:
--------------------------------------------------------------------------------
1 | body{color:red}
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-rename/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-rename/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules/
3 | temp/
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-rename/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.9
4 | - 0.10
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.min.txt:
--------------------------------------------------------------------------------
1 | Hello
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.txt:
--------------------------------------------------------------------------------
1 | Hello
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
7 | test
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 | after_script:
5 | - npm run coveralls
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/File.js:
--------------------------------------------------------------------------------
1 | module.exports = require('vinyl');
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/beep.js:
--------------------------------------------------------------------------------
1 | module.exports = function() {
2 | process.stdout.write('\x07');
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/colors.js:
--------------------------------------------------------------------------------
1 | module.exports = require('chalk');
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/date.js:
--------------------------------------------------------------------------------
1 | module.exports = require('dateformat');
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/linefeed.js:
--------------------------------------------------------------------------------
1 | module.exports = '\n';
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/map-stream/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | node_modules/*
3 | npm_debug.log
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/map-stream/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/multipipe/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/multipipe/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/multipipe/Makefile:
--------------------------------------------------------------------------------
1 |
2 | node_modules: package.json
3 | @npm install
4 |
5 | test:
6 | @./node_modules/.bin/mocha \
7 | --reporter spec \
8 | --timeout 100
9 |
10 | .PHONY: test
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/number-is-nan/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = Number.isNaN || function (x) {
3 | return x !== x;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/source-map/.gitattributes:
--------------------------------------------------------------------------------
1 | bench/scalajs-runtime-sourcemap.js binary
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/source-map/.npmignore:
--------------------------------------------------------------------------------
1 | bench/
2 | test/
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/source-map/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - "0.10"
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/source-map/build/test-suffix.js:
--------------------------------------------------------------------------------
1 | function run_test() {
2 | runSourceMapTests('{THIS_MODULE}', do_throw);
3 | }
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/through2/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .jshintrc
3 | .travis.yml
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.6"
4 | - "0.8"
5 | - "0.10"
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/LICENSE.md:
--------------------------------------------------------------------------------
1 | Copyright (c) 2010-2012 Robert Kieffer
2 | MIT License - http://opensource.org/licenses/mit-license.php
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/buffer-browser.js:
--------------------------------------------------------------------------------
1 | module.exports = Array;
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/buffer.js:
--------------------------------------------------------------------------------
1 | module.exports = Buffer;
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/rng.js:
--------------------------------------------------------------------------------
1 | var rb = require('crypto').randomBytes;
2 | module.exports = function() {
3 | return rb(16);
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/uuid/test/mocha.opts:
--------------------------------------------------------------------------------
1 | --ui qunit
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/vinyl/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/vinyl/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.9"
4 | - "0.10"
5 | after_script:
6 | - npm run coveralls
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-cssmin/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | components
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.10
4 | - 0.12
5 | - "iojs"
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var uglfiy = require('uglify-js');
3 | var minifier = require('./minifier');
4 |
5 | module.exports = function(opts) {
6 | return minifier(opts, uglfiy);
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/array-differ/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function (arr) {
3 | var rest = [].concat.apply([], [].slice.call(arguments, 1));
4 | return arr.filter(function (el) {
5 | return rest.indexOf(el) === -1;
6 | });
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/clone/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/clone/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/dateformat/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.11"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/dateformat/test/weekofyear/test_weekofyear.js:
--------------------------------------------------------------------------------
1 | var dateFormat = require('../lib/dateformat.js');
2 |
3 | var val = process.argv[2] || new Date();
4 | console.log(dateFormat(val, 'W'));
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/deap/.npmignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | *.seed
3 | *.log
4 | *.csv
5 | *.dat
6 | *.out
7 | *.pid
8 | *.gz
9 |
10 | pids
11 | logs
12 | results
13 |
14 | npm-debug.log
15 | /node_modules
16 | /coverage
17 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/deap/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 | after_script:
5 | - npm run coveralls
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/duplexer2/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/duplexer2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/.name:
--------------------------------------------------------------------------------
1 | gulp-uglify
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/scopes/scope_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | components
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.10
4 | - 0.12
5 | - "iojs"
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-uglify/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var uglfiy = require('uglify-js');
3 | var minifier = require('./minifier');
4 |
5 | module.exports = function(opts) {
6 | return minifier(opts, uglfiy);
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/multipipe/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/multipipe/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/multipipe/Makefile:
--------------------------------------------------------------------------------
1 |
2 | node_modules: package.json
3 | @npm install
4 |
5 | test:
6 | @./node_modules/.bin/mocha \
7 | --reporter spec \
8 | --timeout 100
9 |
10 | .PHONY: test
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/number-is-nan/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = Number.isNaN || function (x) {
3 | return x !== x;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/replace-ext/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/replace-ext/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.7"
4 | - "0.8"
5 | - "0.9"
6 | - "0.10"
7 | after_script:
8 | - npm run coveralls
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/source-map/.npmignore:
--------------------------------------------------------------------------------
1 | dist/*
2 | node_modules/*
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/source-map/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - "0.10"
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/source-map/build/test-suffix.js:
--------------------------------------------------------------------------------
1 | function run_test() {
2 | runSourceMapTests('{THIS_MODULE}', do_throw);
3 | }
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/through2/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .jshintrc
3 | .travis.yml
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/uglify-js/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .travis.yml
3 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.npmignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | *.seed
3 | *.log
4 | *.csv
5 | *.dat
6 | *.out
7 | *.pid
8 | *.gz
9 | pids
10 | logs
11 | results
12 | npm-debug.log
13 | node_modules
14 | /test/output.js
15 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "node": true,
3 | "strict": true
4 | }
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/wordwrap/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/wordwrap/example/meat.js:
--------------------------------------------------------------------------------
1 | var wrap = require('wordwrap')(15);
2 |
3 | console.log(wrap('You and your whole family are made out of meat.'));
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp-uglify/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/.bin/semver.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\semver\bin\semver" %*
3 | ) ELSE (
4 | node "%~dp0\..\semver\bin\semver" %*
5 | )
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/array-differ/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function (arr) {
3 | var rest = [].concat.apply([], [].slice.call(arguments, 1));
4 | return arr.filter(function (el) {
5 | return rest.indexOf(el) === -1;
6 | });
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/liftoff/lib/silent_require.js:
--------------------------------------------------------------------------------
1 | module.exports = function (path) {
2 | try {
3 | return require(path);
4 | } catch (e) {}
5 | };
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/resolve/index.js:
--------------------------------------------------------------------------------
1 | var core = require('./lib/core');
2 | exports = module.exports = require('./lib/async');
3 | exports.core = core;
4 | exports.isCore = function (x) { return core[x] };
5 | exports.sync = require('./lib/sync');
6 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/resolve/lib/core.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./core.json').reduce(function (acc, x) {
2 | acc[x] = true;
3 | return acc;
4 | }, {});
5 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/tildify/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var userHome = require('user-home');
3 |
4 | module.exports = function (str) {
5 | return str.replace(userHome, '~');
6 | };
7 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/vinyl-fs/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = {
4 | src: require('./lib/src'),
5 | dest: require('./lib/dest'),
6 | watch: require('glob-watcher')
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/vinyl-fs/lib/src/getContents/readDir.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | function readDir(file, cb) {
4 | // do nothing for now
5 | cb(null, file);
6 | }
7 |
8 | module.exports = readDir;
9 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
8 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/node_modules/gulp/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ASP.NET",
3 | "version": "0.0.0",
4 | "devDependencies": {
5 | "gulp": "3.8.11",
6 | "gulp-concat": "2.5.2",
7 | "gulp-cssmin": "0.1.7",
8 | "gulp-uglify": "1.2.0",
9 | "rimraf": "2.2.8"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/images/ASP-NET-Banners-01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/images/ASP-NET-Banners-01.png
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/images/ASP-NET-Banners-02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/images/ASP-NET-Banners-02.png
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/images/Banner-01-Azure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/images/Banner-01-Azure.png
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/images/Banner-02-VS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/images/Banner-02-VS.png
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/js/site.js:
--------------------------------------------------------------------------------
1 | // Write your Javascript code.
2 |
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/js/site.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/js/site.min.js
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Dev82/Mvc/src/Mvc/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/DotNetAsyncConfigureAwait/ConfigureAwait.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp2.0
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/DotNetCoreTwilio/Program.cs:
--------------------------------------------------------------------------------
1 | using Twilio;
2 |
3 | namespace DotNetCoreTwilio
4 | {
5 | class Program
6 | {
7 | static void Main(string[] args)
8 | {
9 | TwilioClient.SetUsername("foo");
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/ErrorPage404/.vs/WebApplication1/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/ErrorPage404/.vs/WebApplication1/v14/.suo
--------------------------------------------------------------------------------
/ErrorPage404/WebApplication1/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @model int
2 |
3 | Error @Model
4 | An error occurred while processing your request.
5 |
--------------------------------------------------------------------------------
/ErrorPage404/WebApplication1/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/ErrorPage404/WebApplication1/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/FacebookCookie/.vs/ClassLibrary1/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/.vs/ClassLibrary1/v14/.suo
--------------------------------------------------------------------------------
/FacebookCookie/.vs/WebApplication1/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/.vs/WebApplication1/v14/.suo
--------------------------------------------------------------------------------
/FacebookCookie/.vs/WebApplication2/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/.vs/WebApplication2/v14/.suo
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "wwwroot/lib"
3 | }
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/Views/Account/ExternalLoginFailure.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Login Failure";
3 | }
4 |
5 |
9 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/Views/Account/ForgotPasswordConfirmation.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Forgot Password Confirmation";
3 | }
4 |
5 | @ViewData["Title"].
6 |
7 | Please check your email to reset your password.
8 |
9 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/Views/Account/Lockout.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Locked out";
3 | }
4 |
5 |
9 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/Views/Home/About.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "About";
3 | }
4 | @ViewData["Title"].
5 | @ViewData["Message"]
6 |
7 | Use this area to provide additional information.
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Error";
3 | }
4 |
5 | Error.
6 | An error occurred while processing your request.
7 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ASP.NET",
3 | "private": true,
4 | "dependencies": {
5 | "bootstrap": "3.3.5",
6 | "jquery": "2.1.4",
7 | "jquery-validation": "1.14.0",
8 | "jquery-validation-unobtrusive": "3.2.4"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/.bin/gulp.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\gulp\bin\gulp.js" %*
3 | ) ELSE (
4 | node "%~dp0\..\gulp\bin\gulp.js" %*
5 | )
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/.bin/rimraf.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\rimraf\bin.js" %*
3 | ) ELSE (
4 | node "%~dp0\..\rimraf\bin.js" %*
5 | )
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/clone/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/clone/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/dateformat/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.11"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/dateformat/test/weekofyear/test_weekofyear.js:
--------------------------------------------------------------------------------
1 | var dateFormat = require('../lib/dateformat.js');
2 |
3 | var val = process.argv[2] || new Date();
4 | console.log(dateFormat(val, 'W'));
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/duplexer2/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/duplexer2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/multipipe/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/multipipe/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/multipipe/Makefile:
--------------------------------------------------------------------------------
1 |
2 | node_modules: package.json
3 | @npm install
4 |
5 | test:
6 | @./node_modules/.bin/mocha \
7 | --reporter spec \
8 | --timeout 100
9 |
10 | .PHONY: test
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/number-is-nan/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = Number.isNaN || function (x) {
3 | return x !== x;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/replace-ext/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/replace-ext/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.7"
4 | - "0.8"
5 | - "0.9"
6 | - "0.10"
7 | after_script:
8 | - npm run coveralls
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/source-map/.gitattributes:
--------------------------------------------------------------------------------
1 | bench/scalajs-runtime-sourcemap.js binary
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/source-map/.npmignore:
--------------------------------------------------------------------------------
1 | bench/
2 | test/
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/source-map/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - "0.10"
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/source-map/build/test-suffix.js:
--------------------------------------------------------------------------------
1 | function run_test() {
2 | runSourceMapTests('{THIS_MODULE}', do_throw);
3 | }
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/through2/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .jshintrc
3 | .travis.yml
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-concat/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/clean-css/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/clean');
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/dateformat/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.11"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/dateformat/test/weekofyear/test_weekofyear.js:
--------------------------------------------------------------------------------
1 | var dateFormat = require('../lib/dateformat.js');
2 |
3 | var val = process.argv[2] || new Date();
4 | console.log(dateFormat(val, 'W'));
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/duplexer2/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/duplexer2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/filesize/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules/
2 | /lib/filesize.min.js
3 | /lib/filesize.map
4 | /src/
5 | /test/
6 | .jshintrc
7 | .travis.yml
8 | Gruntfile.js
9 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/graceful-fs/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/graceful-readlink/.npmignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | .DS_Store
3 | node_modules/
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/graceful-readlink/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 | - "0.12"
5 | - "io.js"
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.css:
--------------------------------------------------------------------------------
1 | body {
2 | color: red;
3 | }
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.min.css:
--------------------------------------------------------------------------------
1 | body{color:red}
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-rename/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-rename/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules/
3 | temp/
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-rename/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.9
4 | - 0.10
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.min.txt:
--------------------------------------------------------------------------------
1 | Hello
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.txt:
--------------------------------------------------------------------------------
1 | Hello
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
7 | test
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 | after_script:
5 | - npm run coveralls
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/File.js:
--------------------------------------------------------------------------------
1 | module.exports = require('vinyl');
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/beep.js:
--------------------------------------------------------------------------------
1 | module.exports = function() {
2 | process.stdout.write('\x07');
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/colors.js:
--------------------------------------------------------------------------------
1 | module.exports = require('chalk');
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/date.js:
--------------------------------------------------------------------------------
1 | module.exports = require('dateformat');
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/linefeed.js:
--------------------------------------------------------------------------------
1 | module.exports = '\n';
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/map-stream/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | node_modules/*
3 | npm_debug.log
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/map-stream/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/multipipe/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/multipipe/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/multipipe/Makefile:
--------------------------------------------------------------------------------
1 |
2 | node_modules: package.json
3 | @npm install
4 |
5 | test:
6 | @./node_modules/.bin/mocha \
7 | --reporter spec \
8 | --timeout 100
9 |
10 | .PHONY: test
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/number-is-nan/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = Number.isNaN || function (x) {
3 | return x !== x;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/source-map/.gitattributes:
--------------------------------------------------------------------------------
1 | bench/scalajs-runtime-sourcemap.js binary
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/source-map/.npmignore:
--------------------------------------------------------------------------------
1 | bench/
2 | test/
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/source-map/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - "0.10"
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/source-map/build/test-suffix.js:
--------------------------------------------------------------------------------
1 | function run_test() {
2 | runSourceMapTests('{THIS_MODULE}', do_throw);
3 | }
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/through2/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .jshintrc
3 | .travis.yml
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.6"
4 | - "0.8"
5 | - "0.10"
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/LICENSE.md:
--------------------------------------------------------------------------------
1 | Copyright (c) 2010-2012 Robert Kieffer
2 | MIT License - http://opensource.org/licenses/mit-license.php
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/buffer-browser.js:
--------------------------------------------------------------------------------
1 | module.exports = Array;
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/buffer.js:
--------------------------------------------------------------------------------
1 | module.exports = Buffer;
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/rng.js:
--------------------------------------------------------------------------------
1 | var rb = require('crypto').randomBytes;
2 | module.exports = function() {
3 | return rb(16);
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/uuid/test/mocha.opts:
--------------------------------------------------------------------------------
1 | --ui qunit
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/vinyl/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/vinyl/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.9"
4 | - "0.10"
5 | after_script:
6 | - npm run coveralls
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-cssmin/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | components
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.10
4 | - 0.12
5 | - "iojs"
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var uglfiy = require('uglify-js');
3 | var minifier = require('./minifier');
4 |
5 | module.exports = function(opts) {
6 | return minifier(opts, uglfiy);
7 | };
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/clone/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/clone/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/dateformat/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.11"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/dateformat/test/weekofyear/test_weekofyear.js:
--------------------------------------------------------------------------------
1 | var dateFormat = require('../lib/dateformat.js');
2 |
3 | var val = process.argv[2] || new Date();
4 | console.log(dateFormat(val, 'W'));
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/deap/.npmignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | *.seed
3 | *.log
4 | *.csv
5 | *.dat
6 | *.out
7 | *.pid
8 | *.gz
9 |
10 | pids
11 | logs
12 | results
13 |
14 | npm-debug.log
15 | /node_modules
16 | /coverage
17 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/deap/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 | after_script:
5 | - npm run coveralls
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/duplexer2/.npmignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/duplexer2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/.name:
--------------------------------------------------------------------------------
1 | gulp-uglify
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/scopes/scope_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | build
3 | components
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.10
4 | - 0.12
5 | - "iojs"
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-uglify/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var uglfiy = require('uglify-js');
3 | var minifier = require('./minifier');
4 |
5 | module.exports = function(opts) {
6 | return minifier(opts, uglfiy);
7 | };
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/multipipe/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/multipipe/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/multipipe/Makefile:
--------------------------------------------------------------------------------
1 |
2 | node_modules: package.json
3 | @npm install
4 |
5 | test:
6 | @./node_modules/.bin/mocha \
7 | --reporter spec \
8 | --timeout 100
9 |
10 | .PHONY: test
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/number-is-nan/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = Number.isNaN || function (x) {
3 | return x !== x;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/replace-ext/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.log
3 | node_modules
4 | build
5 | *.node
6 | components
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/replace-ext/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.7"
4 | - "0.8"
5 | - "0.9"
6 | - "0.10"
7 | after_script:
8 | - npm run coveralls
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/source-map/.npmignore:
--------------------------------------------------------------------------------
1 | dist/*
2 | node_modules/*
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/source-map/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - "0.10"
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/source-map/build/test-suffix.js:
--------------------------------------------------------------------------------
1 | function run_test() {
2 | runSourceMapTests('{THIS_MODULE}', do_throw);
3 | }
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/through2/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .jshintrc
3 | .travis.yml
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/uglify-js/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .travis.yml
3 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.npmignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | *.seed
3 | *.log
4 | *.csv
5 | *.dat
6 | *.out
7 | *.pid
8 | *.gz
9 | pids
10 | logs
11 | results
12 | npm-debug.log
13 | node_modules
14 | /test/output.js
15 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.10"
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "node": true,
3 | "strict": true
4 | }
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/wordwrap/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/wordwrap/example/meat.js:
--------------------------------------------------------------------------------
1 | var wrap = require('wordwrap')(15);
2 |
3 | console.log(wrap('You and your whole family are made out of meat.'));
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp-uglify/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/.bin/semver.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\semver\bin\semver" %*
3 | ) ELSE (
4 | node "%~dp0\..\semver\bin\semver" %*
5 | )
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/ansi-regex/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | module.exports = function () {
3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g;
4 | };
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/gulp-util/lib/env.js:
--------------------------------------------------------------------------------
1 | var parseArgs = require('minimist');
2 | var argv = parseArgs(process.argv.slice(2));
3 |
4 | module.exports = argv;
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/gulp-util/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/gulp-util/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/gulp-util/lib/noop.js:
--------------------------------------------------------------------------------
1 | var through = require('through2');
2 |
3 | module.exports = function () {
4 | return through.obj();
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/has-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex');
3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag
4 | module.exports = re.test.bind(re);
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | module.exports = require('util').inherits
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/liftoff/lib/silent_require.js:
--------------------------------------------------------------------------------
1 | module.exports = function (path) {
2 | try {
3 | return require(path);
4 | } catch (e) {}
5 | };
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/resolve/index.js:
--------------------------------------------------------------------------------
1 | var core = require('./lib/core');
2 | exports = module.exports = require('./lib/async');
3 | exports.core = core;
4 | exports.isCore = function (x) { return core[x] };
5 | exports.sync = require('./lib/sync');
6 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/resolve/lib/core.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./core.json').reduce(function (acc, x) {
2 | acc[x] = true;
3 | return acc;
4 | }, {});
5 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/strip-ansi/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var ansiRegex = require('ansi-regex')();
3 |
4 | module.exports = function (str) {
5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
6 | };
7 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/tildify/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | var userHome = require('user-home');
3 |
4 | module.exports = function (str) {
5 | return str.replace(userHome, '~');
6 | };
7 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/vinyl-fs/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = {
4 | src: require('./lib/src'),
5 | dest: require('./lib/dest'),
6 | watch: require('glob-watcher')
7 | };
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/vinyl-fs/lib/src/getContents/readDir.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | function readDir(file, cb) {
4 | // do nothing for now
5 | cb(null, file);
6 | }
7 |
8 | module.exports = readDir;
9 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/vinyl/lib/cloneBuffer.js:
--------------------------------------------------------------------------------
1 | var Buffer = require('buffer').Buffer;
2 |
3 | module.exports = function(buf) {
4 | var out = new Buffer(buf.length);
5 | buf.copy(out);
6 | return out;
7 | };
8 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/vinyl/lib/isNull.js:
--------------------------------------------------------------------------------
1 | module.exports = function(v) {
2 | return v === null;
3 | };
4 |
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/node_modules/gulp/node_modules/vinyl/lib/isStream.js:
--------------------------------------------------------------------------------
1 | var Stream = require('stream').Stream;
2 |
3 | module.exports = function(o) {
4 | return !!o && o instanceof Stream;
5 | };
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/WebApplication2/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/wwwroot/images/ASP-NET-Banners-01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/WebApplication2/wwwroot/images/ASP-NET-Banners-01.png
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/wwwroot/images/ASP-NET-Banners-02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/WebApplication2/wwwroot/images/ASP-NET-Banners-02.png
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/wwwroot/images/Banner-01-Azure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/WebApplication2/wwwroot/images/Banner-01-Azure.png
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/wwwroot/images/Banner-02-VS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/FacebookCookie/WebApplication2/wwwroot/images/Banner-02-VS.png
--------------------------------------------------------------------------------
/FacebookCookie/WebApplication2/wwwroot/js/site.js:
--------------------------------------------------------------------------------
1 | // Write your Javascript code.
2 |
--------------------------------------------------------------------------------
/NewtonSoftEscapedJson/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdk": {
3 | "version": "1.0.0-preview2-003133"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/NewtonSoftEscapedJson/test.json:
--------------------------------------------------------------------------------
1 | {
2 | "data": {
3 | "userId": 0
4 | },
5 | "success": true,
6 | "statusCode": 200
7 | }
8 |
--------------------------------------------------------------------------------
/NewtonSoftEscapedJson/textFromDebug.json:
--------------------------------------------------------------------------------
1 | "{\r\n \"data\": {\r\n \"userId\": 0\r\n },\r\n \"success\": true,\r\n \"statusCode\": 200\r\n}\r\n"
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # StackOverflow
2 |
3 | Contains samples to support StackOverflow answers.
4 |
5 | Ideally, each sample will have:
6 |
7 | * a README.md with a usage section, and
8 | * a link to the StackOverflow answer.
9 |
--------------------------------------------------------------------------------
/Reflection/.vs/ClassLibrary1/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/.vs/ClassLibrary1/v14/.suo
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/.vs/ClassLibrary2/v14/.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/.vs/ClassLibrary2/v14/.suo
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/bin/Debug/ClassLibrary2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/bin/Debug/ClassLibrary2.dll
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/bin/Debug/ClassLibrary2.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/bin/Debug/ClassLibrary2.pdb
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/obj/Debug/ClassLibrary2.csprojResolveAssemblyReference.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/obj/Debug/ClassLibrary2.csprojResolveAssemblyReference.cache
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/obj/Debug/ClassLibrary2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/obj/Debug/ClassLibrary2.dll
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/obj/Debug/ClassLibrary2.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/obj/Debug/ClassLibrary2.pdb
--------------------------------------------------------------------------------
/Reflection/ClassLibrary2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/Reflection/ClassLibrary2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Debug/netstandardapp1.5/hosting03.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Debug/netstandardapp1.5/hosting03.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Debug/netstandardapp1.5/hosting03.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Debug/netstandardapp1.5/hosting03.pdb
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hosting03.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hosting03.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hosting03.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hosting03.exe
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hosting03.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hosting03.pdb
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hostpolicy.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Debug/netstandardapp1.5/win7-x64/hostpolicy.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/RuntimeInfo.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/RuntimeInfo.exe
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/RuntimeInfo.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/RuntimeInfo.pdb
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/JWT.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/JWT.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Jil.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Jil.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Antiforgery.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Antiforgery.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Authentication.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Authentication.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Authorization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Authorization.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Cryptography.Internal.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Cryptography.Internal.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.DataProtection.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.DataProtection.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.DataProtection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.DataProtection.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Diagnostics.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Diagnostics.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Diagnostics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Diagnostics.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Hosting.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Hosting.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Hosting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Hosting.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Html.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Html.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.Extensions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.Features.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.Features.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Http.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.IISPlatformHandler.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.IISPlatformHandler.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.JsonPatch.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.JsonPatch.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.Core.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.DataAnnotations.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.DataAnnotations.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.Formatters.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.Formatters.Json.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.ViewFeatures.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Mvc.ViewFeatures.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Routing.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Routing.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Routing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Routing.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Server.Kestrel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.Server.Kestrel.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.StaticFiles.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.StaticFiles.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.WebUtilities.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.AspNetCore.WebUtilities.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.CommandLine.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.CommandLine.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.FileExtensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.FileExtensions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.Json.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Configuration.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.DependencyInjection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.DependencyInjection.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.FileProviders.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.FileProviders.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.FileProviders.Physical.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.FileProviders.Physical.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Localization.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Localization.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Localization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Localization.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Logging.Abstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Logging.Abstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Logging.Console.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Logging.Console.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Logging.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Logging.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.ObjectPool.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.ObjectPool.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Options.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Options.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.PlatformAbstractions.Dnx.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.PlatformAbstractions.Dnx.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.PlatformAbstractions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.PlatformAbstractions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.Primitives.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.WebEncoders.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Extensions.WebEncoders.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Net.Http.Headers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Microsoft.Net.Http.Headers.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/RuntimeInfo.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/RuntimeInfo.exe
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/RuntimeInfo.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/RuntimeInfo.pdb
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/Sigil.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/Sigil.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Buffers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Buffers.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.ComponentModel.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.ComponentModel.Primitives.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.ComponentModel.TypeConverter.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.ComponentModel.TypeConverter.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Diagnostics.DiagnosticSource.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Diagnostics.DiagnosticSource.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.IO.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.IO.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Numerics.Vectors.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Numerics.Vectors.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Reflection.TypeExtensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Reflection.TypeExtensions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Reflection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Reflection.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.Extensions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.InteropServices.PInvoke.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.InteropServices.PInvoke.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.InteropServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.InteropServices.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.Serialization.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.Serialization.Primitives.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Runtime.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Text.Encodings.Web.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Text.Encodings.Web.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/System.Threading.Tasks.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/System.Threading.Tasks.Extensions.dll
--------------------------------------------------------------------------------
/RuntimeInfo/bin/Release/net46/win7-x64/libuv.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/RuntimeInfo/bin/Release/net46/win7-x64/libuv.dll
--------------------------------------------------------------------------------
/TagHelpersNotWorking/Models/User.cs:
--------------------------------------------------------------------------------
1 | namespace TagHelpersNotWorking.Models
2 | {
3 | public class Admins
4 | {
5 | public string Email { get; set; }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/TagHelpersNotWorking/Views/Home/Index.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Home Page";
3 | }
4 | @model TagHelpersNotWorking.Models.Admins
5 |
6 |
7 |
--------------------------------------------------------------------------------
/TagHelpersNotWorking/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewData["Title"] = "Error";
3 | }
4 |
5 | Error.
6 | An error occurred while processing your request.
7 |
--------------------------------------------------------------------------------
/TagHelpersNotWorking/Views/_ViewImports.cshtml:
--------------------------------------------------------------------------------
1 | @using TagHelpersNotWorking
2 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers"
3 |
--------------------------------------------------------------------------------
/TagHelpersNotWorking/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "_Layout";
3 | }
4 |
--------------------------------------------------------------------------------
/TagHelpersNotWorking/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "IncludeScopes": false,
4 | "LogLevel": {
5 | "Default": "Verbose",
6 | "System": "Information",
7 | "Microsoft": "Information"
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/TypeScriptAureliaWebpackVS2017Debug/installation-01.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shaunluttin/stackoverflow-answers/5cf8a63eed10e416079c745538b899ef0fe3d1b2/TypeScriptAureliaWebpackVS2017Debug/installation-01.PNG
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/bar/baz.ts:
--------------------------------------------------------------------------------
1 | export class Baz {
2 |
3 | }
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/bar/bop.ts:
--------------------------------------------------------------------------------
1 | export class Bop {
2 |
3 | }
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/bar/index.ts:
--------------------------------------------------------------------------------
1 | export * from "./baz";
2 | export * from "./bop";
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/foo/baz.ts:
--------------------------------------------------------------------------------
1 | export class Baz {
2 |
3 | }
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/foo/bop.ts:
--------------------------------------------------------------------------------
1 | export class Bop {
2 |
3 | }
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/foo/index.ts:
--------------------------------------------------------------------------------
1 | export * from "./baz";
2 | export * from "./bop";
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/core/index.ts:
--------------------------------------------------------------------------------
1 | import * as Foo from "./foo";
2 | import * as Bar from "./bar";
3 |
4 | export {
5 | Foo,
6 | Bar,
7 | }
8 |
--------------------------------------------------------------------------------
/TypeScriptExportAllAsName/index.ts:
--------------------------------------------------------------------------------
1 | import { Foo, Bar } from "./core";
2 |
3 | function FooBar() {
4 | Foo.Baz;
5 | Foo.Bop;
6 | Bar.Baz;
7 | Bar.Bop;
8 | }
--------------------------------------------------------------------------------
/TypeScriptGlobalTypeDeclarations/global.d.ts:
--------------------------------------------------------------------------------
1 | interface Foo { }
2 |
--------------------------------------------------------------------------------
/TypeScriptGlobalTypeDeclarations/index.ts:
--------------------------------------------------------------------------------
1 | const x: Foo = {};
2 |
--------------------------------------------------------------------------------
/TypeScriptGlobalTypeDeclarations/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "module": "commonjs"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/TypeScriptHtmlTypes/index.js:
--------------------------------------------------------------------------------
1 | var element;
2 |
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/TypeScriptHtmlTypes/index.ts:
--------------------------------------------------------------------------------
1 | let element: HTMLElement;
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/TypeScriptHtmlTypes/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "lib": [
4 | "es2016",
5 | "dom"
6 | ]
7 | }
8 | }
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/index.js:
--------------------------------------------------------------------------------
1 | var m = Sql.Models;
2 | export class Index {
3 | constructor() {
4 | this.User = new m.User();
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/index.ts:
--------------------------------------------------------------------------------
1 | import m = Sql.Models;
2 |
3 | export class Index {
4 | public Users: Array;
5 | public User: Sql.Models.User;
6 |
7 | constructor() {
8 | this.User = new m.User();
9 | }
10 | }
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/sql/models.d.ts:
--------------------------------------------------------------------------------
1 | declare namespace Sql.Models {
2 | class User {
3 | UserID: string;
4 | UserName: string;
5 | }
6 | }
--------------------------------------------------------------------------------
/TypeScriptReferenceTypeDefinitions/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es6"
4 | }
5 | }
--------------------------------------------------------------------------------
/TypeScriptStrictNullChecks/index.ts:
--------------------------------------------------------------------------------
1 | function Foo(foo?: string) {
2 | Bar(foo);
3 | }
4 |
5 | function Bar(bar: string) { }
--------------------------------------------------------------------------------
/TypeScriptStrictNullChecks/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "strictNullChecks": true
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/VsCodeDotNetCliWatchDebug/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | class Program
4 | {
5 | static void Main(string[] args)
6 | {
7 | Console.WriteLine("Hello World!");
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/VsCodeDotNetCliWatchDebug/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "sdk": {
3 | "version": "1.0.0-preview3-004056"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/VsCodeTypeScriptBreakpoints/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "./node_modules/typescript/lib"
3 | }
--------------------------------------------------------------------------------
/VsCodeTypeScriptBreakpoints/.vscode/tasks.json:
--------------------------------------------------------------------------------
1 | {
2 | "command": "tsc",
3 | "isShellCommand": true,
4 | "args": ["-p", "."]
5 | }
--------------------------------------------------------------------------------
/VsCodeTypeScriptBreakpoints/index.ts:
--------------------------------------------------------------------------------
1 |
2 |
3 | console.log('foo');
4 | console.log('bar'); // a breakpoint here gets hit.
--------------------------------------------------------------------------------
/VsCodeTypeScriptBreakpoints/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "devDependencies": {
3 | "typescript": "^2.1.4"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/VsCodeTypeScriptBreakpoints/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "sourceMap": true
5 | }
6 | }
--------------------------------------------------------------------------------
/VsCodeTypeScriptNodeDebugWatch/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "./node_modules/typescript/lib"
3 | }
--------------------------------------------------------------------------------
/VsCodeTypeScriptNodeDebugWatch/.vscode/tasks.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.1.0",
3 | "command": "tsc",
4 | "isShellCommand": true,
5 | "args": ["-w", "-p", "."],
6 | "showOutput": "silent",
7 | "isBackground": true,
8 | "problemMatcher": "$tsc-watch"
9 | }
--------------------------------------------------------------------------------
/VsCodeTypeScriptNodeDebugWatch/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "sourceMap": true
5 | }
6 | }
--------------------------------------------------------------------------------
/typescript-create-and-use-untranspiled-modules/.gitignore:
--------------------------------------------------------------------------------
1 | *.js
2 |
--------------------------------------------------------------------------------
/typescript-create-and-use-untranspiled-modules/index.ts:
--------------------------------------------------------------------------------
1 | import { getUserFromToken } from "common-files/api/user";
2 |
3 | getUserFromToken("some-token");
--------------------------------------------------------------------------------
/typescript-create-and-use-untranspiled-modules/node_modules/common-files/api/user.ts:
--------------------------------------------------------------------------------
1 | export const getUserFromToken = (token: string) => {
2 | console.log("Getting the user for token " + token);
3 | }
--------------------------------------------------------------------------------
/typescript-create-and-use-untranspiled-modules/node_modules/common-files/index.ts:
--------------------------------------------------------------------------------
1 | import "./api/user";
--------------------------------------------------------------------------------
/typescript-create-and-use-untranspiled-modules/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "devDependencies": {
3 | "typescript": "^2.4.2"
4 | }
5 | }
--------------------------------------------------------------------------------