From 471e89c7893b5a0a14625f5241952b5ca389fb70 Mon Sep 17 00:00:00 2001 From: David Molineus Date: Tue, 4 Oct 2016 13:41:35 +0200 Subject: [PATCH] Add package.json. --- gulpfile.js | 8 ++++---- package.json | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 4 deletions(-) create mode 100644 package.json diff --git a/gulpfile.js b/gulpfile.js index c379780..537a5cd 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -32,7 +32,7 @@ var paths = [ } ]; -gulp.task('clear-styles', function(cb) { +gulp.task('clear-styles', function() { var i, clear = []; for (i = 0; i < paths.length; i++) { @@ -41,10 +41,10 @@ gulp.task('clear-styles', function(cb) { } } - del(clear, cb); + del(clear); }); -gulp.task('clear-scripts', function(cb) { +gulp.task('clear-scripts', function() { var i, clear = []; for (i = 0; i < paths.length; i++) { @@ -53,7 +53,7 @@ gulp.task('clear-scripts', function(cb) { } } - del(clear, cb); + del(clear); }); gulp.task('scripts', ['clear-scripts'], function() { diff --git a/package.json b/package.json new file mode 100644 index 0000000..253dd3b --- /dev/null +++ b/package.json @@ -0,0 +1,35 @@ +{ + "name": "contao-leaflet-libaries", + "version": "0.7.7", + "description": "Libraries for Leaflet integration into Contao CMS =================================================", + "main": "gulpfile.js", + "dependencies": { + "del": "^2.2.2", + "gulp": "^3.9.1", + "gulp-minify-css": "^1.2.4", + "gulp-rename": "^1.2.2", + "gulp-replace": "^0.5.4", + "gulp-uglify": "^2.0.0", + "gulp-util": "^3.0.7", + "merge-stream": "^1.0.0" + }, + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/netzmacht/contao-leaflet-libaries.git" + }, + "keywords": [ + "Leaflet", + "Contao", + "Libraries" + ], + "author": "netzmacht David Molineus", + "license": "LGPL-3.0", + "bugs": { + "url": "https://github.com/netzmacht/contao-leaflet-libaries/issues" + }, + "homepage": "https://github.com/netzmacht/contao-leaflet-libaries#readme" +}