From 657ba1b88f0ed4c6905ef8c9f8bf49945488ed29 Mon Sep 17 00:00:00 2001 From: velvettear Date: Thu, 23 Mar 2017 15:51:36 +0100 Subject: [PATCH] initial commit --- .gitignore | 16 ++++++++++++++++ .idea/badger-am.iml | 9 +++++++++ .idea/modules.xml | 8 ++++++++ LICENSE.md | 13 +++++++++++++ OPEN-SOURCE-LICENSES.md | 28 ++++++++++++++++++++++++++++ README.md | 1 + badger-am.js | 1 + package.json | 35 +++++++++++++++++++++++++++++++++++ 8 files changed, 111 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/badger-am.iml create mode 100644 .idea/modules.xml create mode 100644 LICENSE.md create mode 100644 OPEN-SOURCE-LICENSES.md create mode 100644 README.md create mode 100755 badger-am.js create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c75d7be --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# directories +node_modules + +# ide settings +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries +.idea/vcs.xml +.idea/jsLibraryMappings.xml +.idea/dataSources.ids +.idea/dataSources.xml +.idea/dataSources.local.xml +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml +.idea/runConfigurations \ No newline at end of file diff --git a/.idea/badger-am.iml b/.idea/badger-am.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/badger-am.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e2f3d46 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..cd545a2 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,13 @@ +# The MIT License (MIT) +**Copyright (c) 2017 Daniel Sommer ** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/OPEN-SOURCE-LICENSES.md b/OPEN-SOURCE-LICENSES.md new file mode 100644 index 0000000..dc48e6f --- /dev/null +++ b/OPEN-SOURCE-LICENSES.md @@ -0,0 +1,28 @@ +# The MIT License (MIT) + +## Applies to: + +**async** +Copyright (c) 2010-2016 Caolan McMahon + +**fluent-ffmpeg** +Copyright (c) 2011-2015 The fluent-ffmpeg contributors + +**fs-extra** +Copyright (c) 2011-2017 JP Richardson + +**musicmetadata** +Copyright (c) 2016 Lee Treveil + +**progress** +Copyright (c) 2014 TJ Holowaychuk + +**recursive-readdir** +Copyright (c) 2017 Jamison Dance + +--- +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..afe15c9 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# badger-am diff --git a/badger-am.js b/badger-am.js new file mode 100755 index 0000000..090ff6e --- /dev/null +++ b/badger-am.js @@ -0,0 +1 @@ +#!/usr/bin/env node \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..db5c738 --- /dev/null +++ b/package.json @@ -0,0 +1,35 @@ +{ + "name": "badger-am", + "version": "0.0.1", + "license": "MIT", + "description": "audio manager", + "author": "Daniel Sommer ", + "preferGlobal": true, + "bin": { + "badger": "./badger-am.js" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://velvettear.de/git/velvettear/badger-am.git" + }, + "bugs": { + "url": "https://velvettear.de/git/velvettear/badger-am/issues" + }, + "homepage": "https://velvettear.de/git/badger-am", + "keywords": [ + "badger-am", + "audio", + "manager" + ], + "dependencies": { + "async": "^2.1.5", + "fluent-ffmpeg": "^2.1.0", + "fs-extra": "^2.1.2", + "musicmetadata": "^2.0.5", + "progress": "^1.1.8", + "recursive-readdir": "^2.1.1" + } +}