forked from J-T-McC/vue3-chartjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.77 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
{
"name": "@j-t-mcc/vue3-chartjs",
"version": "1.2.0",
"author": "Tyson McCarney <[email protected]> (https://tysonmccarney.com)",
"description": "Vue3 wrapper for Chart.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/J-T-McC/vue3-chartjs"
},
"homepage": "https://github.com/J-T-McC/vue3-chartjs/blob/main/README.md",
"keywords": [
"chart.js",
"vue3"
],
"files": [
"dist/",
"README.md",
"LICENSE"
],
"main": "./dist/vue3-chartjs.umd.js",
"module": "./dist/vue3-chartjs.es.js",
"exports": {
".": {
"import": "./dist/vue3-chartjs.es.js",
"require": "./dist/vue3-chartjs.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "eslint lib/** && jest --coverage && vite build",
"serve": "vite preview",
"test": "jest --coverage",
"lint": "eslint lib/**"
},
"peerDependencies": {
"chart.js": "^3.1.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@vitejs/plugin-vue": "^1.1.4",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "2.0.0-rc.0",
"babel-jest": "^26.6.3",
"chart.js": "^3.2.0",
"chartjs-plugin-zoom": "^1.0.0-beta.5",
"coveralls": "^3.1.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.1.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"prettier": "2.2.1",
"vite": "^2.0.1",
"vue": "^3.0.5",
"vue-jest": "^5.0.0-alpha.8"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}