Fix bower name, update bower dependencies, and use unminified versions of libraries where they appear to be equivalent

This commit is contained in:
Kevin MacMartin 2016-08-01 22:38:22 -04:00
parent 95ace0f897
commit 3d4fa3761d
2 changed files with 11 additions and 11 deletions

View file

@ -1,5 +1,5 @@
{ {
"name": "Hypothetical Template", "name": "hypothetical-template",
"version": "1.0.0", "version": "1.0.0",
"authors": [ "authors": [
"Kevin MacMartin <prurigro@gmail.com>" "Kevin MacMartin <prurigro@gmail.com>"
@ -8,12 +8,12 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"jquery": "~2.2.4", "jquery": "~2.2.4",
"bootstrap": "^3.3.6", "bootstrap": "^3.3.7",
"font-awesome": "~4.5.0", "fontawesome": "~4.6.3",
"awesome-bootstrap-checkbox": "~0.3.5", "awesome-bootstrap-checkbox": "~0.3.7",
"Sortable": "~1.4.2", "Sortable": "~1.4.2",
"simplemde": "~1.9.0", "simplemde": "~1.11.2",
"datetimepicker": "~2.5.1", "datetimepicker": "~2.5.4",
"SpinKit": "~1.2.5", "SpinKit": "~1.2.5",
"jQuery.stickyFooter": "https://github.com/miWebb/jQuery.stickyFooter.git#~1.2.3" "jQuery.stickyFooter": "https://github.com/miWebb/jQuery.stickyFooter.git#~1.2.3"
} }

View file

@ -33,8 +33,8 @@ const jsPublic = [
// javascript libraries for the public site // javascript libraries for the public site
const jsPublicLibs = [ const jsPublicLibs = [
"bower_components/jquery/dist/jquery.min.js", "bower_components/jquery/dist/jquery.js",
"bower_components/bootstrap/dist/js/bootstrap.min.js", "bower_components/bootstrap/dist/js/bootstrap.js",
"bower_components/jQuery.stickyFooter/assets/js/jquery.stickyfooter.js" "bower_components/jQuery.stickyFooter/assets/js/jquery.stickyfooter.js"
]; ];
@ -45,10 +45,10 @@ const jsDashboard = [
// javascript libraries for the dashboard // javascript libraries for the dashboard
const jsDashboardLibs = [ const jsDashboardLibs = [
"bower_components/jquery/dist/jquery.min.js", "bower_components/jquery/dist/jquery.js",
"bower_components/bootstrap/dist/js/bootstrap.min.js", "bower_components/bootstrap/dist/js/bootstrap.js",
"bower_components/Sortable/Sortable.js", "bower_components/Sortable/Sortable.js",
"bower_components/datetimepicker/build/jquery.datetimepicker.full.min.js", "bower_components/datetimepicker/build/jquery.datetimepicker.full.js",
"bower_components/simplemde/dist/simplemde.min.js" "bower_components/simplemde/dist/simplemde.min.js"
]; ];