streamserch 0.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of streamserch might be problematic. Click here for more details.

@@ -0,0 +1,36 @@
1
+ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
2
+ <PropertyGroup>
3
+ <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
4
+ <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
5
+ <Name>NodejsConsoleApp1</Name>
6
+ <RootNamespace>NodejsConsoleApp1</RootNamespace>
7
+ </PropertyGroup>
8
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
9
+ <PropertyGroup>
10
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
11
+ <SchemaVersion>2.0</SchemaVersion>
12
+ <ProjectGuid>9ec3223e-1bfc-44be-afeb-1df1e3b6a862</ProjectGuid>
13
+ <ProjectHome>.</ProjectHome>
14
+ <StartupFile>app.js</StartupFile>
15
+ <StartWebBrowser>False</StartWebBrowser>
16
+ <SearchPath>
17
+ </SearchPath>
18
+ <WorkingDirectory>.</WorkingDirectory>
19
+ <OutputPath>.</OutputPath>
20
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
21
+ <ProjectTypeGuids>{3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}</ProjectTypeGuids>
22
+ <StartWebBrowser>false</StartWebBrowser>
23
+ </PropertyGroup>
24
+ <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
25
+ <DebugSymbols>true</DebugSymbols>
26
+ </PropertyGroup>
27
+ <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
28
+ <DebugSymbols>true</DebugSymbols>
29
+ </PropertyGroup>
30
+ <ItemGroup>
31
+ <Content Include="app.js" />
32
+ <Content Include="package.json" />
33
+ <Content Include="README.md" />
34
+ </ItemGroup>
35
+ <Import Project="$(VSToolsPath)\Node.js Tools\Microsoft.NodejsToolsV2.targets" />
36
+ </Project>
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # parimiko
2
+
3
+
package/app.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ console.log('Hello world');
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "streamserch",
3
+ "version": "0.0.1",
4
+ "description": "streamserch",
5
+ "main": "app.js",
6
+ "author": {
7
+ "name": "Variety Mendez"
8
+ },
9
+ "devDependencies": {
10
+ "eslint": "^8.21.0"
11
+ },
12
+ "eslintConfig": {
13
+ }
14
+ }