From 47fb5417a60af37c46a49ace60ae97d3c165c20c Mon Sep 17 00:00:00 2001 From: Matthew Holder Date: Sat, 17 Aug 2019 23:56:15 -0500 Subject: [PATCH] Starting the BridgeCmdr project --- .gitignore | 90 ++++++++++++++++++++++++++++++++++++++++++++ .idea/.gitignore | 18 +++++++++ .idea/BridgeCmdr.iml | 8 ++++ .idea/misc.xml | 6 +++ .idea/modules.xml | 8 ++++ .idea/vcs.xml | 6 +++ package.json | 26 +++++++++++++ 7 files changed, 162 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/BridgeCmdr.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc66cec --- /dev/null +++ b/.gitignore @@ -0,0 +1,90 @@ +# Created by .ignore support plugin (hsz.mobi) +### Node template +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..0513744 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,18 @@ +# User-specific stuff +/workspace.xml +/tasks.xml +/usage.statistics.xml +/dictionaries +/shelf + +# Generated files +/contentModel.xml + +# Sensitive or high-churn files +/dataSources/ +/dataSources.ids +/dataSources.local.xml +/sqlDataSources.xml +/dynamic.xml +/uiDesigner.xml +/dbnavigator.xml diff --git a/.idea/BridgeCmdr.iml b/.idea/BridgeCmdr.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/BridgeCmdr.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..28a804d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..d830261 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..ce8ed68 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "bridgecmdr", + "version": "0.1.0", + "description": "A/V switch and monitor controller", + "main": "index.js", + "scripts": { + "test": "test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/6XGate/bridgecmdr.git" + }, + "keywords": [ + "retrogaming", + "extron", + "audio-video", + "sony-pvm", + "sony-bmv" + ], + "author": "Matthew Holder", + "license": "GPL-3.0-or-later", + "bugs": { + "url": "https://github.com/6XGate/bridgecmdr/issues" + }, + "homepage": "https://github.com/6XGate/bridgecmdr#readme" +}