initial commit
This commit is contained in:
commit
657ba1b88f
8 changed files with 111 additions and 0 deletions
16
.gitignore
vendored
Normal file
16
.gitignore
vendored
Normal file
|
@ -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
|
9
.idea/badger-am.iml
Normal file
9
.idea/badger-am.iml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/badger-am.iml" filepath="$PROJECT_DIR$/.idea/badger-am.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
13
LICENSE.md
Normal file
13
LICENSE.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# The MIT License (MIT)
|
||||
**Copyright (c) 2017 Daniel Sommer <daniel.sommer@velvettear.de>**
|
||||
|
||||
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.
|
28
OPEN-SOURCE-LICENSES.md
Normal file
28
OPEN-SOURCE-LICENSES.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# The MIT License (MIT)
|
||||
|
||||
## Applies to:
|
||||
|
||||
**async**
|
||||
Copyright (c) 2010-2016 Caolan McMahon <caolan.mcmahon@gmail.com>
|
||||
|
||||
**fluent-ffmpeg**
|
||||
Copyright (c) 2011-2015 The fluent-ffmpeg contributors
|
||||
|
||||
**fs-extra**
|
||||
Copyright (c) 2011-2017 JP Richardson <jprichardson@gmail.com>
|
||||
|
||||
**musicmetadata**
|
||||
Copyright (c) 2016 Lee Treveil <leetreveil@gmail.com>
|
||||
|
||||
**progress**
|
||||
Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
|
||||
|
||||
**recursive-readdir**
|
||||
Copyright (c) 2017 Jamison Dance <jergason@gmail.com>
|
||||
|
||||
---
|
||||
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.
|
1
README.md
Normal file
1
README.md
Normal file
|
@ -0,0 +1 @@
|
|||
# badger-am
|
1
badger-am.js
Executable file
1
badger-am.js
Executable file
|
@ -0,0 +1 @@
|
|||
#!/usr/bin/env node
|
35
package.json
Normal file
35
package.json
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"name": "badger-am",
|
||||
"version": "0.0.1",
|
||||
"license": "MIT",
|
||||
"description": "audio manager",
|
||||
"author": "Daniel Sommer <daniel.sommer@velvettear.de>",
|
||||
"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"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue