-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@centrogeomx/sisdai-mapas",
"version": "2.1.0",
"publishConfig": {
"access": "public"
},
"description": "Mapas interactivos: Componentes de software libre para el Sistema de Diseño y Accesibilidad para la Investigación (Sisdai).",
"main": "src/index.js",
"license": "LGPL-3.0-only",
"files": [
"src"
],
"type": "module",
"scripts": {
"docs": "vitepress dev docs",
"docs:dev": "npm run docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"format": "prettier --write .",
"format-lint": "npm run format && npm run lint:fix",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rm -rf node_modules && rm -f package-lock.json && npm cache clean -f && npm cache verify",
"reinstall": "npm run clean && npm i"
},
"dependencies": {
"geoserver-api-reader": "^0.1.0",
"ol": "^10.3.1",
"ol-displaced-points": "^0.4.0"
},
"peerDependencies": {
"vue": "^3.5.13",
"@centrogeomx/sisdai-componentes": "^4.12.5",
"@centrogeomx/sisdai-css": "^1.7.4",
"axios": "^1.7.9"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.17",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/test-utils": "^2.4.6",
"cypress": "^13.16.1",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"pinia": "^2.3.0",
"prettier": "^3.4.2",
"start-server-and-test": "^2.0.9",
"vite": "^6.0.3",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue-matomo": "^4.2.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CentroGeo/sisdai-mapas.git"
},
"bugs": {
"url": "https://github.com/CentroGeo/sisdai-mapas/issues"
},
"keywords": [
"vue",
"openlayers",
"maps",
"Sisdai",
"CentroGeo",
"Conahcyt"
],
"contributors": [
"Alonso Cortés Solís <alo.acs@gmail.com> (https://github.com/AlonsoCortes)",
"Andrés Martínez González <andres.geotec@gmail.com> (https://github.com/andres-geotec)",
"Daniel Gómez Hernández <gomezhernandez.dan@gmail.com> (https://github.com/jdanielgoh)",
"Diana Elizabeth Minor <deminore@hotmail.com> (https://github.com/deminore)",
"Eric Torres <erictorres.velasco@hotmail.com> (https://github.com/ciretorres)",
"Flkt <flkt.crnpio@gmail.com> (https://github.com/flkt-crnpio)",
"Miguel Ángel Martínez <migueldnt.dev@gmail.com> (https://github.com/migueldnt)",
"Paulina Pradel <pradel.paulina@gmail.com> (https://github.com/paupradel)"
],
"homepage": "https://sisdai-mapas.conahcyt.mx"
}