-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.73 KB
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
{
"name": "@centrogeomx/sisdai-graficas",
"version": "6.8.2",
"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 <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)"
],
"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",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"d3": "^7.8.2",
"d3-sankey": "^0.12.3"
},
"peerDependencies": {
"@centrogeomx/sisdai-componentes": "^4.14.1",
"@centrogeomx/sisdai-css": "^1.10.2",
"pinia": "^3.0.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.9",
"@vitest/eslint-plugin": "^1.1.36",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/test-utils": "^2.4.6",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-plugin-vue": "~10.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.2.10",
"prettier": "3.5.3",
"vite": "^6.2.2",
"vitepress": "^1.6.3",
"vitest": "^3.0.9"
},
"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",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}