-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
{
"author": "xLsDg <[email protected]> (https://xlsdg.org/)",
"browser": "dist/VueECharts.js",
"bugs": {
"url": "https://github.com/xlsdg/vue-echarts-v3/issues"
},
"dependencies": {
"element-resize-detector": "latest",
"lodash.throttle": "latest"
},
"description": "Vue.js component wrap for ECharts.js(v3.x+)",
"devDependencies": {
"bili": "^3.4.2",
"prettier": "^1.16.4",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-vue": "^4.7.2",
"vue-template-compiler": "^2.6.8"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/xlsdg/vue-echarts-v3",
"jsdelivr": "dist/VueECharts.min.js",
"keywords": [
"echarts",
"library",
"vue",
"vue-echarts",
"vue-echarts-v3"
],
"license": "MIT",
"main": "dist/VueECharts.cjs.js",
"module": "dist/VueECharts.es.js",
"name": "vue-echarts-v3",
"peerDependencies": {
"echarts": "*",
"vue": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/xlsdg/vue-echarts-v3.git"
},
"scripts": {
"build": "bili",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish"
},
"source": "src/full.js",
"unpkg": "dist/VueECharts.min.js",
"version": "2.0.1"
}