Commit a865056cbb659edae08e8156b29d1b6fb33b6810
1 parent
5d923a2b42
Exists in
develop
cambio nombre de modal-domicilio (quito s)
Showing
2 changed files
with
62 additions
and
63 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 | const gulpSequence = require('gulp-sequence') | 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 | }); | 79 | }); |
80 | 80 | ||
81 | gulp.task('webserver', function() { | 81 | gulp.task('webserver', function() { |
82 | pump [ | 82 | pump [ |
83 | connect.server( | 83 | connect.server( |
84 | { | 84 | { |
85 | port: 8086, | 85 | port: 4203, |
86 | host: '0.0.0.0', | 86 | host: '0.0.0.0', |
87 | livereload: true | 87 | livereload: true |
88 | } | 88 | } |
89 | ) | 89 | ) |
90 | ] | 90 | ] |
91 | }); | 91 | }); |
92 | 92 | ||
93 | gulp.task('watch', function() { | 93 | gulp.task('watch', function() { |
94 | gulp.watch([paths.srcJS], ['uglify']); | 94 | gulp.watch([paths.srcJS], ['uglify']); |
95 | gulp.watch('src/sass/*.scss', ['sass']); | 95 | gulp.watch('src/sass/*.scss', ['sass']); |
96 | }); | 96 | }); |
97 | 97 | ||
98 | gulp.task('reload', function() { | 98 | gulp.task('reload', function() { |
99 | gulp.src(['src/sass/*.scss', 'index.html']) | 99 | gulp.src(['src/sass/*.scss', 'index.html']) |
100 | .pipe(connect.reload()); | 100 | .pipe(connect.reload()); |
101 | }); | 101 | }); |
102 | 102 | ||
103 | gulp.task('livereload', function() { | 103 | gulp.task('livereload', function() { |
104 | gulp.watch('css/*.css', ['reload']); | 104 | gulp.watch('css/*.css', ['reload']); |
105 | gulp.watch('js/dist/*.js', ['reload']); | 105 | gulp.watch('js/dist/*.js', ['reload']); |
106 | gulp.watch('vistas/**/*.html', ['reload']); | 106 | gulp.watch('vistas/**/*.html', ['reload']); |
107 | gulp.watch('index.html', ['reload']); | 107 | gulp.watch('index.html', ['reload']); |
108 | }); | 108 | }); |
109 | 109 | ||
110 | gulp.task('default', gulpSequence(['sass', 'webserver', 'livereload', 'watch'])); | 110 | gulp.task('default', gulpSequence(['sass', 'webserver', 'livereload', 'watch'])); |
111 | 111 |
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 | "install-gulp": "npm install gulp-sass gulp-concat gulp-rename gulp-uglify pump gulp-jshint gulp-replace gulp-connect gulp-watch gulp-sequence jshint" | 13 | "install-gulp": "npm install gulp-sass gulp-concat gulp-rename gulp-uglify pump gulp-jshint gulp-replace gulp-connect gulp-watch gulp-sequence jshint" |
14 | }, | 14 | }, |
15 | "pre-commit": [ | 15 | "pre-commit": [ |
16 | "gulp-pre-commit" | 16 | "gulp-pre-commit" |
17 | ], | 17 | ], |
18 | "repository": { | 18 | "repository": { |
19 | "type": "git", | 19 | "type": "git", |
20 | "url": "git@debonline.dyndns.org:npm/wrapper-demo.git" | 20 | "url": "git@debonline.dyndns.org:npm/wrapper-demo.git" |
21 | }, | 21 | }, |
22 | "author": "Foca Software", | 22 | "author": "Foca Software", |
23 | "license": "ISC", | 23 | "license": "ISC", |
24 | "dependencies": { | 24 | "dependencies": { |
25 | "angular": "^1.7.8", | 25 | "angular": "^1.7.8", |
26 | "angular-chart.js": "1.1.1", | 26 | "angular-chart.js": "1.1.1", |
27 | "angular-cookies": "^1.7.8", | 27 | "angular-cookies": "^1.7.8", |
28 | "angular-file-saver": "^1.1.3", | 28 | "angular-file-saver": "^1.1.3", |
29 | "angular-i18n": "^1.7.8", | 29 | "angular-i18n": "^1.7.8", |
30 | "angular-ladda": "^0.4.3", | 30 | "angular-ladda": "^0.4.3", |
31 | "angular-md5": "^0.1.10", | 31 | "angular-md5": "^0.1.10", |
32 | "angular-mocks": "^1.7.8", | 32 | "angular-mocks": "^1.7.8", |
33 | "angular-route": "^1.7.8", | 33 | "angular-route": "^1.7.8", |
34 | "angular-sanitize": "^1.7.8", | 34 | "angular-sanitize": "^1.7.8", |
35 | "angular-ui-grid": "4.6.6", | 35 | "angular-ui-grid": "4.6.6", |
36 | "angular-ui-swiper": "^2.3.8", | 36 | "angular-ui-swiper": "^2.3.8", |
37 | "bootstrap": "^4.3.1", | 37 | "bootstrap": "^4.3.1", |
38 | "chart.js": "2.7.3", | 38 | "chart.js": "2.7.3", |
39 | "excel-builder": "2.0.3", | 39 | "excel-builder": "2.0.3", |
40 | "foca-abm-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-chofer.git#v0.1.1", | 40 | "foca-abm-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-chofer.git", |
41 | "foca-abm-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-cliente.git#v0.0.3", | 41 | "foca-abm-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-cliente.git", |
42 | "foca-abm-plazo-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-plazo-pago.git#v0.0.1", | 42 | "foca-abm-plazo-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-plazo-pago.git", |
43 | "foca-abm-precios-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-precios-condiciones.git#v0.1.0", | 43 | "foca-abm-precios-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-precios-condiciones.git", |
44 | "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git#v0.1.2", | 44 | "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git", |
45 | "foca-abm-vendedor-cobrador": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vendedor-cobrador.git#v0.0.7", | 45 | "foca-abm-vendedor-cobrador": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vendedor-cobrador.git", |
46 | "foca-activar-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-activar-hoja-ruta.git#v0.2.0", | 46 | "foca-activar-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-activar-hoja-ruta.git", |
47 | "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git#v0.0.4", | 47 | "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git", |
48 | "foca-agendar-visita": "git+ssh://git@debonline.dyndns.org:npm/foca-agendar-visita.git#v0.0.2", | 48 | "foca-agendar-visita": "git+ssh://git@debonline.dyndns.org:npm/foca-agendar-visita.git", |
49 | "foca-autorizar-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-autorizar-nota-pedido.git#v0.0.2", | 49 | "foca-autorizar-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-autorizar-nota-pedido.git", |
50 | "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git#v0.1.1", | 50 | "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git", |
51 | "foca-botonera-lateral": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-lateral.git#v0.0.4", | 51 | "foca-botonera-lateral": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-lateral.git", |
52 | "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git#v0.0.3", | 52 | "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git", |
53 | "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git#v0.2.2", | 53 | "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git", |
54 | "foca-cabecera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-cabecera-facturador.git#v0.1.2", | 54 | "foca-cabecera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-cabecera-facturador.git", |
55 | "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git#v0.0.3", | 55 | "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git", |
56 | "foca-configurar-terminal": "git+ssh://git@debonline.dyndns.org:npm/foca-configurar-terminal.git#v0.0.1", | 56 | "foca-configurar-terminal": "git+ssh://git@debonline.dyndns.org:npm/foca-configurar-terminal.git", |
57 | "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git#v0.1.6", | 57 | "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git", |
58 | "foca-crear-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-factura.git#v0.1.0", | 58 | "foca-crear-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-hoja-ruta.git", |
59 | "foca-crear-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-hoja-ruta.git#v0.2.4", | 59 | "foca-crear-login": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-login.git", |
60 | "foca-crear-login": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-login.git#v0.0.1", | 60 | "foca-crear-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-nota-pedido.git", |
61 | "foca-crear-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-nota-pedido.git#v0.1.1", | 61 | "foca-crear-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-remito.git", |
62 | "foca-crear-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-remito.git#v0.1.1", | 62 | "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git", |
63 | "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git#v0.1.4", | 63 | "foca-estado-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-estado-cisternas.git", |
64 | "foca-estado-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-estado-cisternas.git#v0.0.2", | 64 | "foca-filtros": "git+ssh://git@debonline.dyndns.org:npm/foca-filtros.git", |
65 | "foca-filtros": "git+ssh://git@debonline.dyndns.org:npm/foca-filtros.git#v0.0.1", | 65 | "foca-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-hoja-ruta.git", |
66 | "foca-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-hoja-ruta.git#v0.3.2", | 66 | "foca-informes": "git+ssh://git@debonline.dyndns.org:npm/foca-informes.git", |
67 | "foca-informes": "git+ssh://git@debonline.dyndns.org:npm/foca-informes.git#v0.0.1", | 67 | "foca-login": "git+ssh://git@debonline.dyndns.org:npm/foca-login.git", |
68 | "foca-login": "git+ssh://git@debonline.dyndns.org:npm/foca-login.git#v0.0.5", | 68 | "foca-logistica-pedido-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-logistica-pedido-ruta.git", |
69 | "foca-logistica-pedido-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-logistica-pedido-ruta.git#v0.0.4", | 69 | "foca-modal": "git+ssh://git@debonline.dyndns.org:npm/foca-modal.git", |
70 | "foca-modal": "git+ssh://git@debonline.dyndns.org:npm/foca-modal.git#v0.1.7", | 70 | "foca-modal-busqueda-productos": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-busqueda-productos.git", |
71 | "foca-modal-busqueda-productos": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-busqueda-productos.git#v0.1.1", | 71 | "foca-modal-cheque": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cheque.git", |
72 | "foca-modal-cheque": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cheque.git#v0.0.4", | 72 | "foca-modal-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cobranza.git", |
73 | "foca-modal-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cobranza.git#v0.1.0", | 73 | "foca-modal-cotizacion": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cotizacion.git", |
74 | "foca-modal-cotizacion": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-cotizacion.git#v0.0.1", | 74 | "foca-modal-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-descarga.git", |
75 | "foca-modal-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-descarga.git#v0.1.0", | 75 | "foca-modal-detalle-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-cisternas.git", |
76 | "foca-modal-detalle-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-cisternas.git#v0.1.0", | 76 | "foca-modal-detalle-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-hoja-ruta.git", |
77 | "foca-modal-detalle-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalle-hoja-ruta.git#v0.0.1", | 77 | "foca-modal-detalles": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalles.git", |
78 | "foca-modal-detalles": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-detalles.git#v0.1.1", | 78 | "foca-modal-domicilio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-domicilio.git", |
79 | "foca-modal-domicilio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-domicilio.git#v0.1.2", | 79 | "foca-modal-efectivo": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-efectivo.git", |
80 | "foca-modal-efectivo": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-efectivo.git#v0.1.0", | 80 | "foca-modal-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura.git", |
81 | "foca-modal-factura": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura.git#v0.1.6", | 81 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git", |
82 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git#v0.0.1", | 82 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git", |
83 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git#v0.1.0", | 83 | "foca-modal-forma-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-forma-pago.git", |
84 | "foca-modal-forma-pago": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-forma-pago.git#v0.1.0", | 84 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", |
85 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git#v0.0.1", | 85 | "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git", |
86 | "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git#v0.0.4", | 86 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", |
87 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git#v0.0.2", | 87 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", |
88 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git#v0.1.2", | 88 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", |
89 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git#v0.0.2", | 89 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git", |
90 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git#v0.0.4", | 90 | "foca-modal-precio-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-precio-condiciones.git", |
91 | "foca-modal-precio-condiciones": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-precio-condiciones.git#v0.1.1", | 91 | "foca-modal-punto-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-punto-descarga.git", |
92 | "foca-modal-punto-descarga": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-punto-descarga.git#v0.0.4", | 92 | "foca-modal-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-remito.git", |
93 | "foca-modal-remito": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-remito.git#v0.1.2", | 93 | "foca-modal-resumen-cuenta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-resumen-cuenta.git", |
94 | "foca-modal-resumen-cuenta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-resumen-cuenta.git#v0.1.2", | 94 | "foca-modal-tarifa-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-tarifa-flete.git", |
95 | "foca-modal-tarifa-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-tarifa-flete.git#v0.0.1", | 95 | "foca-modal-unidad-medida": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-unidad-medida.git", |
96 | "foca-modal-unidad-medida": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-unidad-medida.git#v0.0.1", | 96 | "foca-nombre-empresa": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git", |
97 | "foca-nombre-empresa": "git+ssh://git@debonline.dyndns.org:npm/foca-nombre-empresa.git#v0.0.1", | 97 | "foca-orden-carga": "git+ssh://git@debonline.dyndns.org:npm/foca-orden-carga.git", |
98 | "foca-orden-carga": "git+ssh://git@debonline.dyndns.org:npm/foca-orden-carga.git#v0.1.0", | 98 | "foca-parametros": "git+ssh://git@debonline.dyndns.org:npm/foca-parametros.git", |
99 | "foca-parametros": "git+ssh://git@debonline.dyndns.org:npm/foca-parametros.git#v0.1.0", | 99 | "foca-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-seguimiento.git", |
100 | "foca-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-seguimiento.git#v0.1.0", | 100 | "foca-teclado": "git+ssh://git@debonline.dyndns.org:npm/foca-teclado.git", |
101 | "foca-teclado": "git+ssh://git@debonline.dyndns.org:npm/foca-teclado.git#v0.0.1", | ||
102 | "font-awesome": "^4.7.0", | 101 | "font-awesome": "^4.7.0", |
103 | "gulp-angular-templatecache": "^2.2.7", | 102 | "gulp-angular-templatecache": "^2.2.7", |
104 | "gulp-htmlmin": "^5.0.1", | 103 | "gulp-htmlmin": "^5.0.1", |
105 | "gulp-sequence": "^1.0.0", | 104 | "gulp-sequence": "^1.0.0", |
106 | "gulp-uglify-es": "^1.0.4", | 105 | "gulp-uglify-es": "^1.0.4", |
107 | "jquery": "^3.4.1", | 106 | "jquery": "^3.4.1", |
108 | "jszip": "2.6.1", | 107 | "jszip": "2.6.1", |
109 | "ladda": "1.0.6", | 108 | "ladda": "1.0.6", |
110 | "leaflet": "1.3.4", | 109 | "leaflet": "1.3.4", |
111 | "lodash": "4.17.11", | 110 | "lodash": "4.17.11", |
112 | "moment": "2.23.0", | 111 | "moment": "2.23.0", |
113 | "ngstorage": "^0.3.11", | 112 | "ngstorage": "^0.3.11", |
114 | "node-sass": "^4.13.0", | 113 | "node-sass": "^4.13.0", |
115 | "pdfmake": "0.1.41", | 114 | "pdfmake": "0.1.41", |
116 | "popper.js": "^1.16.0", | 115 | "popper.js": "^1.16.0", |
117 | "uglify": "^0.1.5", | 116 | "uglify": "^0.1.5", |
118 | "ui-bootstrap4": "^3.0.6" | 117 | "ui-bootstrap4": "^3.0.6" |
119 | }, | 118 | }, |
120 | "devDependencies": { | 119 | "devDependencies": { |
121 | "gulp": "^3.9.1", | 120 | "gulp": "^3.9.1", |
122 | "gulp-clean": "^0.4.0", | 121 | "gulp-clean": "^0.4.0", |
123 | "gulp-concat": "^2.6.1", | 122 | "gulp-concat": "^2.6.1", |
124 | "gulp-connect": "^5.7.0", | 123 | "gulp-connect": "^5.7.0", |
125 | "gulp-jshint": "^2.1.0", | 124 | "gulp-jshint": "^2.1.0", |
126 | "gulp-rename": "^1.4.0", | 125 | "gulp-rename": "^1.4.0", |
127 | "gulp-replace": "^1.0.0", | 126 | "gulp-replace": "^1.0.0", |
128 | "gulp-sass": "^4.0.2", | 127 | "gulp-sass": "^4.0.2", |
129 | "gulp-uglify": "^3.0.2", | 128 | "gulp-uglify": "^3.0.2", |
130 | "gulp-watch": "^5.0.1", | 129 | "gulp-watch": "^5.0.1", |
131 | "jasmine-core": "^3.5.0", | 130 | "jasmine-core": "^3.5.0", |
132 | "jshint": "^2.10.2", | 131 | "jshint": "^2.10.2", |
133 | "pre-commit": "^1.2.2", | 132 | "pre-commit": "^1.2.2", |
134 | "pump": "^3.0.0" | 133 | "pump": "^3.0.0" |
135 | } | 134 | } |
136 | } | 135 | } |
137 | 136 |