Commit 81da6dbe7f5cc9ce7d9e8890f2f8fe833c2e057f
1 parent
53eb6a12f5
Exists in
master
agrego gulp-sequence
Showing
2 changed files
with
13 additions
and
12 deletions
Show diff stats
gulpfile.js
1 | const gulp = require('gulp'); | 1 | const gulp = require('gulp'); |
2 | const sass = require('gulp-sass'); | 2 | const sass = require('gulp-sass'); |
3 | const concat = require('gulp-concat'); | 3 | const concat = require('gulp-concat'); |
4 | const rename = require('gulp-rename'); | 4 | const rename = require('gulp-rename'); |
5 | const uglify = require('gulp-uglify'); | 5 | const uglify = require('gulp-uglify'); |
6 | const pump = require('pump'); | 6 | const pump = require('pump'); |
7 | const jshint = require('gulp-jshint'); | 7 | const jshint = require('gulp-jshint'); |
8 | const replace = require('gulp-replace'); | 8 | const replace = require('gulp-replace'); |
9 | const connect = require('gulp-connect'); | 9 | const connect = require('gulp-connect'); |
10 | const watch = require('gulp-watch'); | 10 | const watch = require('gulp-watch'); |
11 | 11 | const gulpSequence = require('gulp-sequence') | |
12 | var paths = { | 12 | var paths = { |
13 | srcHTML : 'src/views/*.html', | 13 | srcHTML : 'src/views/*.html', |
14 | srcJS : 'src/js/*.js', | 14 | srcJS : 'src/js/*.js', |
15 | confJS : 'src/etc/develop.js', | 15 | confJS : 'src/etc/develop.js', |
16 | dist : 'dist/', | 16 | dist : 'dist/', |
17 | distHTML : 'dist/views/' | 17 | distHTML : 'dist/views/' |
18 | }; | 18 | }; |
19 | 19 | ||
20 | gulp.task('uglify', function() { | 20 | gulp.task('uglify', function() { |
21 | pump( | 21 | pump( |
22 | [ | 22 | [ |
23 | gulp.src([paths.srcJS, paths.confJS]), | 23 | gulp.src([paths.srcJS, paths.confJS]), |
24 | concat('wrapper-demo.js'), | 24 | concat('wrapper-demo.js'), |
25 | replace('/src/', '/dist/'), | 25 | replace('/src/', '/dist/'), |
26 | gulp.dest(paths.dist), | 26 | gulp.dest(paths.dist), |
27 | rename('wrapper-demo.min.js'), | 27 | rename('wrapper-demo.min.js'), |
28 | uglify(), | 28 | uglify(), |
29 | gulp.dest(paths.dist) | 29 | gulp.dest(paths.dist) |
30 | ] | 30 | ] |
31 | ); | 31 | ); |
32 | }); | 32 | }); |
33 | 33 | ||
34 | gulp.task('html', function() { | 34 | gulp.task('html', function() { |
35 | pump([ | 35 | pump([ |
36 | gulp.src('index.html'), | 36 | gulp.src('index.html'), |
37 | replace(/\<!\-\- BUILD \-\-\>.*\<!\-\- \/BUILD \-\-\>/sgm, '<script src="wrapper-demo.min.js"></script>'), | 37 | replace(/\<!\-\- BUILD \-\-\>.*\<!\-\- \/BUILD \-\-\>/sgm, '<script src="wrapper-demo.min.js"></script>'), |
38 | gulp.dest(paths.dist) | 38 | gulp.dest(paths.dist) |
39 | ]); | 39 | ]); |
40 | pump([ | 40 | pump([ |
41 | gulp.src(paths.srcHTML), | 41 | gulp.src(paths.srcHTML), |
42 | gulp.dest(paths.distHTML) | 42 | gulp.dest(paths.distHTML) |
43 | ]); | 43 | ]); |
44 | }); | 44 | }); |
45 | 45 | ||
46 | gulp.task('sass', function() { | 46 | gulp.task('sass', function() { |
47 | return gulp.src('src/sass/*.scss') | 47 | return gulp.src('src/sass/*.scss') |
48 | .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) | 48 | .pipe(sass({outputStyle: 'compressed'}).on('error', sass.logError)) |
49 | .pipe(gulp.dest('css')); | 49 | .pipe(gulp.dest('css')); |
50 | }); | 50 | }); |
51 | 51 | ||
52 | gulp.task('pre-install', function() { | 52 | gulp.task('pre-install', function() { |
53 | pump([ | 53 | pump([ |
54 | gulp.src('package.json'), | 54 | gulp.src('package.json'), |
55 | replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'), | 55 | replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'), |
56 | replace('.git', '.git#develop'), | 56 | replace('.git', '.git#develop'), |
57 | gulp.dest('') | 57 | gulp.dest('') |
58 | ]); | 58 | ]); |
59 | }); | 59 | }); |
60 | 60 | ||
61 | gulp.task('post-install', function() { | 61 | gulp.task('post-install', function() { |
62 | pump([ | 62 | pump([ |
63 | gulp.src('package.json'), | 63 | gulp.src('package.json'), |
64 | replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'), | 64 | replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'), |
65 | replace('#develop', ''), | 65 | replace('#develop', ''), |
66 | gulp.dest('') | 66 | gulp.dest('') |
67 | ]); | 67 | ]); |
68 | }); | 68 | }); |
69 | 69 | ||
70 | gulp.task('pre-commit', function() { | 70 | gulp.task('pre-commit', function() { |
71 | return pump( | 71 | return pump( |
72 | [ | 72 | [ |
73 | gulp.src(paths.srcJS), | 73 | gulp.src(paths.srcJS), |
74 | jshint('.jshintrc'), | 74 | jshint('.jshintrc'), |
75 | jshint.reporter('default'), | 75 | jshint.reporter('default'), |
76 | jshint.reporter('fail') | 76 | jshint.reporter('fail') |
77 | ] | 77 | ] |
78 | ); | 78 | ); |
79 | gulp.start('uglify'); | 79 | gulp.start('uglify'); |
80 | gulp.start('sass'); | 80 | gulp.start('sass'); |
81 | }); | 81 | }); |
82 | 82 | ||
83 | gulp.task('webserver', function() { | 83 | gulp.task('webserver', function() { |
84 | pump [ | 84 | pump [ |
85 | connect.server( | 85 | connect.server( |
86 | { | 86 | { |
87 | port: 8086, | 87 | port: 8086, |
88 | host: '0.0.0.0', | 88 | host: '0.0.0.0', |
89 | livereload: true | 89 | livereload: true |
90 | } | 90 | } |
91 | ) | 91 | ) |
92 | ] | 92 | ] |
93 | }); | 93 | }); |
94 | 94 | ||
95 | gulp.task('watch', function() { | 95 | gulp.task('watch', function() { |
96 | gulp.watch([paths.srcJS], ['uglify']); | 96 | gulp.watch([paths.srcJS], ['uglify']); |
97 | gulp.watch('src/sass/*.scss', ['sass']); | 97 | gulp.watch('src/sass/*.scss', ['sass']); |
98 | }); | 98 | }); |
99 | 99 | ||
100 | gulp.task('reload', function() { | 100 | gulp.task('reload', function() { |
101 | gulp.src(['src/sass/*.scss', 'index.html']) | 101 | gulp.src(['src/sass/*.scss', 'index.html']) |
102 | .pipe(connect.reload()); | 102 | .pipe(connect.reload()); |
103 | }); | 103 | }); |
104 | 104 | ||
105 | gulp.task('livereload', function() { | 105 | gulp.task('livereload', function() { |
106 | gulp.watch('css/*.css', ['reload']); | 106 | gulp.watch('css/*.css', ['reload']); |
107 | gulp.watch('js/dist/*.js', ['reload']); | 107 | gulp.watch('js/dist/*.js', ['reload']); |
108 | gulp.watch('vistas/**/*.html', ['reload']); | 108 | gulp.watch('vistas/**/*.html', ['reload']); |
109 | gulp.watch('index.html', ['reload']); | 109 | gulp.watch('index.html', ['reload']); |
110 | }); | 110 | }); |
111 | 111 | ||
112 | gulp.task('default', ['sass', 'webserver', 'livereload', 'watch']); | 112 | gulp.task('default', gulpSequence(['sass', 'webserver', 'livereload', 'watch'])); |
113 | 113 |
package.json
1 | { | 1 | { |
2 | "name": "wrapper-demo", | 2 | "name": "wrapper-demo", |
3 | "version": "0.0.1", | 3 | "version": "0.0.1", |
4 | "description": "", | 4 | "description": "", |
5 | "main": "main.js", | 5 | "main": "main.js", |
6 | "scripts": { | 6 | "scripts": { |
7 | "test": "unit-test.html", | 7 | "test": "unit-test.html", |
8 | "initdev": "npm install gulp --global && npm install && npm install -g jshint", | 8 | "initdev": "npm install gulp --global && npm install && npm install -g jshint", |
9 | "gulp-pre-commit": "gulp pre-commit", | 9 | "gulp-pre-commit": "gulp pre-commit", |
10 | "compile": "gulp uglify && gulp sass", | 10 | "compile": "gulp uglify && gulp sass", |
11 | "actualizar": "git pull origin master", | 11 | "actualizar": "git pull origin master", |
12 | "install-dev": "gulp pre-install && npm install && gulp post-install" | 12 | "install-dev": "gulp pre-install && npm install && gulp post-install" |
13 | }, | 13 | }, |
14 | "pre-commit": [ | 14 | "pre-commit": [ |
15 | "gulp-pre-commit" | 15 | "gulp-pre-commit" |
16 | ], | 16 | ], |
17 | "repository": { | 17 | "repository": { |
18 | "type": "git", | 18 | "type": "git", |
19 | "url": "git@debonline.dyndns.org:npm/wrapper-demo.git" | 19 | "url": "git@debonline.dyndns.org:npm/wrapper-demo.git" |
20 | }, | 20 | }, |
21 | "author": "Foca Software", | 21 | "author": "Foca Software", |
22 | "license": "ISC", | 22 | "license": "ISC", |
23 | "dependencies": { | 23 | "dependencies": { |
24 | "angular": "^1.7.7", | 24 | "angular": "^1.7.7", |
25 | "angular-chart.js": "1.1.1", | 25 | "angular-chart.js": "1.1.1", |
26 | "angular-cookies": "^1.7.7", | 26 | "angular-cookies": "^1.7.7", |
27 | "angular-file-saver": "^1.1.3", | 27 | "angular-file-saver": "^1.1.3", |
28 | "angular-i18n": "^1.7.7", | 28 | "angular-i18n": "^1.7.7", |
29 | "angular-ladda": "^0.4.3", | 29 | "angular-ladda": "^0.4.3", |
30 | "angular-mocks": "^1.7.7", | 30 | "angular-mocks": "^1.7.7", |
31 | "angular-route": "^1.7.7", | 31 | "angular-route": "^1.7.7", |
32 | "angular-sanitize": "^1.7.7", | 32 | "angular-sanitize": "^1.7.7", |
33 | "angular-ui-grid": "4.6.6", | 33 | "angular-ui-grid": "4.6.6", |
34 | "angular-ui-swiper": "^2.3.8", | 34 | "angular-ui-swiper": "^2.3.8", |
35 | "bootstrap": "^4.2.1", | 35 | "bootstrap": "^4.2.1", |
36 | "chart.js": "2.7.3", | 36 | "chart.js": "2.7.3", |
37 | "excel-builder": "2.0.3", | 37 | "excel-builder": "2.0.3", |
38 | "foca-abm-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-chofer.git", | 38 | "foca-abm-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-chofer.git", |
39 | "foca-abm-plazo-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-plazo-pago.git", | 39 | "foca-abm-plazo-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-plazo-pago.git", |
40 | "foca-abm-precios-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-precios-condiciones.git", | 40 | "foca-abm-precios-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-precios-condiciones.git", |
41 | "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git", | 41 | "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git", |
42 | "foca-abm-vendedor-cobrador": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vendedor-cobrador.git", | 42 | "foca-abm-vendedor-cobrador": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vendedor-cobrador.git", |
43 | "foca-activar-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-activar-hoja-ruta.git", | 43 | "foca-activar-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-activar-hoja-ruta.git", |
44 | "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git", | 44 | "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git", |
45 | "foca-agendar-visita": "git+ssh://git@debonline.dyndns.org:npm/foca-agendar-visita.git", | 45 | "foca-agendar-visita": "git+ssh://git@debonline.dyndns.org:npm/foca-agendar-visita.git", |
46 | "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git", | 46 | "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git", |
47 | "foca-botonera-lateral": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-lateral.git", | 47 | "foca-botonera-lateral": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-lateral.git", |
48 | "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git", | 48 | "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git", |
49 | "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git", | 49 | "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git", |
50 | "foca-cabecera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-cabecera-facturador.git", | 50 | "foca-cabecera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-cabecera-facturador.git", |
51 | "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git", | 51 | "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git", |
52 | "foca-configurar-terminal": "git+ssh://git@debonline.dyndns.org:npm/foca-configurar-terminal.git", | 52 | "foca-configurar-terminal": "git+ssh://git@debonline.dyndns.org:npm/foca-configurar-terminal.git", |
53 | "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git", | 53 | "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git", |
54 | "foca-crear-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-hoja-ruta.git", | 54 | "foca-crear-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-hoja-ruta.git", |
55 | "foca-crear-login": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-login.git", | 55 | "foca-crear-login": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-login.git", |
56 | "foca-crear-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-nota-pedido.git", | 56 | "foca-crear-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-nota-pedido.git", |
57 | "foca-crear-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-remito.git", | 57 | "foca-crear-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-remito.git", |
58 | "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git", | 58 | "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git", |
59 | "foca-estado-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-estado-cisternas.git", | 59 | "foca-estado-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-estado-cisternas.git", |
60 | "foca-filtros": "git+ssh://git@debonline.dyndns.org:npm/foca-filtros.git", | 60 | "foca-filtros": "git+ssh://git@debonline.dyndns.org:npm/foca-filtros.git", |
61 | "foca-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-hoja-ruta.git", | 61 | "foca-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-hoja-ruta.git", |
62 | "foca-informes": "git+ssh://git@debonline.dyndns.org:npm/foca-informes.git", | 62 | "foca-informes": "git+ssh://git@debonline.dyndns.org:npm/foca-informes.git", |
63 | "foca-login": "git+ssh://git@debonline.dyndns.org:npm/foca-login.git", | 63 | "foca-login": "git+ssh://git@debonline.dyndns.org:npm/foca-login.git", |
64 | "foca-logistica-pedido-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-logistica-pedido-ruta.git", | 64 | "foca-logistica-pedido-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-logistica-pedido-ruta.git", |
65 | "foca-modal": "git+ssh://git@debonline.dyndns.org:npm/foca-modal.git", | 65 | "foca-modal": "git+ssh://git@debonline.dyndns.org:npm/foca-modal.git", |
66 | "foca-modal-busqueda-productos": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-busqueda-productos.git", | 66 | "foca-modal-busqueda-productos": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-busqueda-productos.git", |
67 | "foca-modal-cheque": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cheque.git", | 67 | "foca-modal-cheque": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cheque.git", |
68 | "foca-modal-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cobranza.git", | 68 | "foca-modal-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cobranza.git", |
69 | "foca-modal-cotizacion": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cotizacion.git", | 69 | "foca-modal-cotizacion": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cotizacion.git", |
70 | "foca-modal-detalle-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-cisternas.git", | 70 | "foca-modal-detalle-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-cisternas.git", |
71 | "foca-modal-detalle-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-hoja-ruta.git", | 71 | "foca-modal-detalle-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-hoja-ruta.git", |
72 | "foca-modal-detalles": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalles.git", | 72 | "foca-modal-detalles": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalles.git", |
73 | "foca-modal-domicilio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-domicilio.git", | 73 | "foca-modal-domicilio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-domicilio.git", |
74 | "foca-modal-efectivo": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-efectivo.git", | 74 | "foca-modal-efectivo": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-efectivo.git", |
75 | "foca-modal-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura.git", | 75 | "foca-modal-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura.git", |
76 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git", | 76 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git", |
77 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git", | 77 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git", |
78 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", | 78 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", |
79 | "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git", | 79 | "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git", |
80 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", | 80 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", |
81 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", | 81 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", |
82 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", | 82 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", |
83 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git", | 83 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git", |
84 | "foca-modal-precio-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-precio-condiciones.git", | 84 | "foca-modal-precio-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-precio-condiciones.git", |
85 | "foca-modal-punto-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-punto-descarga.git", | 85 | "foca-modal-punto-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-punto-descarga.git", |
86 | "foca-modal-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-remito.git", | 86 | "foca-modal-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-remito.git", |
87 | "foca-modal-resumen-cuenta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-resumen-cuenta.git", | 87 | "foca-modal-resumen-cuenta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-resumen-cuenta.git", |
88 | "foca-modal-tarifa-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-tarifa-flete.git", | 88 | "foca-modal-tarifa-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-tarifa-flete.git", |
89 | "foca-modal-unidad-medida": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-unidad-medida.git", | 89 | "foca-modal-unidad-medida": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-unidad-medida.git", |
90 | "foca-nombre-empresa": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git", | 90 | "foca-nombre-empresa": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git", |
91 | "foca-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-seguimiento.git", | 91 | "foca-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-seguimiento.git", |
92 | "foca-teclado": "git+ssh://git@debonline.dyndns.org:npm/foca-teclado.git", | 92 | "foca-teclado": "git+ssh://git@debonline.dyndns.org:npm/foca-teclado.git", |
93 | "font-awesome": "^4.7.0", | 93 | "font-awesome": "^4.7.0", |
94 | "gulp-angular-templatecache": "^2.2.6", | 94 | "gulp-angular-templatecache": "^2.2.6", |
95 | "gulp-htmlmin": "^5.0.1", | 95 | "gulp-htmlmin": "^5.0.1", |
96 | "gulp-sequence": "^1.0.0", | ||
96 | "gulp-uglify": "^3.0.1", | 97 | "gulp-uglify": "^3.0.1", |
97 | "gulp-uglify-es": "^1.0.4", | 98 | "gulp-uglify-es": "^1.0.4", |
98 | "jquery": "^3.3.1", | 99 | "jquery": "^3.3.1", |
99 | "jszip": "2.6.1", | 100 | "jszip": "2.6.1", |
100 | "ladda": "1.0.6", | 101 | "ladda": "1.0.6", |
101 | "leaflet": "1.3.4", | 102 | "leaflet": "1.3.4", |
102 | "lodash": "4.17.11", | 103 | "lodash": "4.17.11", |
103 | "moment": "2.23.0", | 104 | "moment": "2.23.0", |
104 | "ngstorage": "^0.3.11", | 105 | "ngstorage": "^0.3.11", |
105 | "node-sass": "^4.11.0", | 106 | "node-sass": "^4.11.0", |
106 | "pdfmake": "0.1.41", | 107 | "pdfmake": "0.1.41", |
107 | "uglify": "^0.1.5", | 108 | "uglify": "^0.1.5", |
108 | "ui-bootstrap4": "^3.0.6" | 109 | "ui-bootstrap4": "^3.0.6" |
109 | }, | 110 | }, |
110 | "devDependencies": { | 111 | "devDependencies": { |
111 | "gulp": "3.9.1", | 112 | "gulp": "3.9.1", |
112 | "gulp-clean": "^0.4.0", | 113 | "gulp-clean": "^0.4.0", |
113 | "gulp-concat": "^2.6.1", | 114 | "gulp-concat": "^2.6.1", |
114 | "gulp-connect": "^5.7.0", | 115 | "gulp-connect": "^5.7.0", |
115 | "gulp-jshint": "^2.1.0", | 116 | "gulp-jshint": "^2.1.0", |
116 | "gulp-rename": "^1.4.0", | 117 | "gulp-rename": "^1.4.0", |
117 | "gulp-replace": "^1.0.0", | 118 | "gulp-replace": "^1.0.0", |
118 | "gulp-sass": "^4.0.1", | 119 | "gulp-sass": "^4.0.1", |
119 | "gulp-uglify": "^1.0.4", | 120 | "gulp-uglify": "^1.0.4", |
120 | "gulp-watch": "^5.0.1", | 121 | "gulp-watch": "^5.0.1", |
121 | "jasmine-core": "^3.3.0", | 122 | "jasmine-core": "^3.3.0", |
122 | "jshint": "^2.10.1", | 123 | "jshint": "^2.10.1", |
123 | "pre-commit": "^1.2.2", | 124 | "pre-commit": "^1.2.2", |
124 | "pump": "^3.0.0" | 125 | "pump": "^3.0.0" |
125 | } | 126 | } |
126 | } | 127 | } |
127 | 128 |