- Added minified versions of JavaScript files including main, script, google-map, bootstrap-datepicker, and jquery.easing. - Implemented a datepicker for appointment dates and a timepicker for appointment times. - Introduced a carousel feature for image display with automatic sliding and responsive behavior. - Updated package.json to include scripts for minifying CSS and JS files, along with necessary dependencies.
25 lines
1.2 KiB
JSON
25 lines
1.2 KiB
JSON
{
|
|
"name": "warmseal",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"minify-css": "cleancss -o css/style.min.css css/style.css && cleancss -o css/animate.min.css css/animate.css && cleancss -o css/padding.min.css css/padding.css && cleancss -o css/flaticon.min.css css/flaticon.css && cleancss -o css/bootstrap-datepicker.min.css css/bootstrap-datepicker.css && cleancss -o css/jquery.timepicker.min.css css/jquery.timepicker.css && cleancss -o css/magnific-popup.min.css css/magnific-popup.css",
|
|
"minify-js": "uglifyjs js/main.js -o js/main.min.js -c -m && uglifyjs js/script.js -o js/script.min.js -c -m && uglifyjs js/google-map.js -o js/google-map.min.js -c -m && uglifyjs js/bootstrap-datepicker.js -o js/bootstrap-datepicker.min.js -c -m && uglifyjs js/jquery.easing.1.3.js -o js/jquery.easing.1.3.min.js -c -m",
|
|
"minify": "npm run minify-css && npm run minify-js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.hexaspark.com/Acorn_Media/warmseal-roofing.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"clean-css-cli": "^5.6.3",
|
|
"uglify-js": "^3.19.3"
|
|
}
|
|
}
|