-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added package.json, bower.json. Installed mediaelement, jquery and grunt, added as dependencies Updated .gitignore to include node_modules and bower_components
- Loading branch information
Showing
4 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,6 @@ | |
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
Thumbs.db | ||
node_modules | ||
bower_components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = function(grunt) { | ||
|
||
// Project configuration. | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
/*build: { | ||
src: 'src/<%= pkg.name %>.js', | ||
dest: 'build/<%= pkg.name %>.min.js' | ||
}*/ | ||
} | ||
}); | ||
|
||
// Load the plugin that provides the "uglify" task. | ||
//grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
|
||
// Default task(s). | ||
//grunt.registerTask('default', ['uglify']); | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "podcast-plugin", | ||
"version": "1.0.3", | ||
"homepage": "https://github.com/cosmicradiotv/podcast-plugin", | ||
"authors": [ | ||
"CosmicRadio.TV <[email protected]>" | ||
], | ||
"description": "A platform for podcast networks using OctoberCMS", | ||
"main": "Plugin.php", | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"mediaelement": "~2.16.4", | ||
"jquery": "~2.1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "podcast-plugin", | ||
"version": "1.0.3", | ||
"description": "A platform for podcast networks using OctoberCMS", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cosmicradiotv/podcast-plugin.git" | ||
}, | ||
"author": "CosmicRadio.TV <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/cosmicradiotv/podcast-plugin/issues" | ||
}, | ||
"homepage": "https://github.com/cosmicradiotv/podcast-plugin#readme", | ||
"devDependencies": { | ||
"grunt": "^0.4.5" | ||
} | ||
} |