-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.98 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
93
94
95
{
"name": "@centrogeomx/sisdai-graficas",
"version": "6.5.0",
"publishConfig": {
"access": "public"
},
"description": "Biblioteca de gráficas de Vue y D3",
"license": "LGPL-3.0-only",
"main": "./src/index.js",
"keywords": [
"d3",
"vue",
"js",
"Sisdai",
"CentroGeo",
"Conahcyt"
],
"contributors": [
"Alonso Cortés Solís <[email protected]> (https://github.com/AlonsoCortes)",
"Andrés Martínez González <[email protected]> (https://github.com/andres-geotec)",
"Daniel Gómez Hernández <[email protected]> (https://github.com/jdanielgoh)",
"Diana Elizabeth Minor <[email protected]> (https://github.com/deminore)",
"Eric Torres <[email protected]> (https://github.com/ciretorres)",
"Flkt <[email protected]> (https://github.com/flkt-crnpio)",
"Miguel Ángel Martínez <[email protected]> (https://github.com/migueldnt)",
"Paulina Pradel <[email protected]> (https://github.com/paupradel)"
],
"files": [
"src",
"README.md"
],
"type": "module",
"scripts": {
"clean": "rm -rf node_modules && rm -f package-lock.json && npm cache clean -f && npm cache verify && npm i",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --port 8080",
"format": "prettier . --write",
"format-lint": "npm run format && npm run lint",
"lint": "eslint --fix --ignore-pattern .gitignore .",
"preview": "vite preview",
"test": "vitest --no-ui",
"coverage": "vitest run --coverage && open ./coverage/index.html"
},
"dependencies": {
"d3": "^7.8.2",
"d3-sankey": "^0.12.3"
},
"peerDependencies": {
"@centrogeomx/sisdai-componentes": "^4.12.5",
"@centrogeomx/sisdai-css": "^1.7.4",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@html-eslint/eslint-plugin": "^0.25.0",
"@html-eslint/parser": "^0.25.0",
"@rushstack/eslint-patch": "^1.10.4",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"dotenv": "^16.4.7",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"happy-dom": "^15.11.7",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.7",
"open": "^10.1.0",
"pinia": "^2.2.1",
"prettier": "^3.3.3",
"vite": "^5.3.3",
"vitepress": "^1.3.2",
"vitest": "^2.0.5",
"volar-service-vetur": "^0.0.54",
"vue-matomo": "^4.2.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/CentroGeo/sisdai-graficas"
},
"bugs": {
"url": "https://github.com/CentroGeo/sisdai-graficas/issues"
},
"homepage": "https://sisdai-graficas.conahcyt.mx"
}