forked from ElemeFE/v-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·99 lines (99 loc) · 3.12 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
96
97
98
99
{
"name": "v-charts",
"version": "1.19.0",
"description": "Vue Echarts Components",
"main": "lib/index.js",
"scripts": {
"dev": "webpack-dev-server --inline --progress --config ./build/webpack.config.js",
"build": "rm -f -r lib && node build/rollup.config.js && cp -f lib/index.min.js lib/style.min.css docs/",
"buildOnly": "rm -f -r lib && node build/rollup.config.js",
"prepublishOnly": "npm run build",
"test": "karma start ./test/karma.conf.js",
"docs": "docsify serve docs",
"deploy": "gh-pages -d docs",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && conventional-changelog -p angular -i CHANGELOG_CN.md -s && git add CHANGELOG.md CHANGELOG_CN.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElemeFE/v-charts.git"
},
"keywords": [
"vue",
"echarts"
],
"author": "xiguaxigua",
"license": "MIT",
"bugs": {
"url": "https://github.com/ElemeFE/v-charts/issues"
},
"homepage": "https://v-charts.js.org",
"peerDependencies": {
"echarts": ">3.0.0",
"vue": ">2.0.0"
},
"dependencies": {
"echarts-amap": "1.0.0-rc.6",
"echarts-liquidfill": "^2.0.2",
"echarts-wordcloud": "^1.1.3",
"numerify": "1.2.9",
"utils-lite": "0.1.10"
},
"devDependencies": {
"autoprefixer": "^8.6.3",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"conventional-changelog-cli": "^2.0.1",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"docsify-cli": "^4.2.1",
"echarts": "^4.1.0",
"es6-promise": "^4.2.4",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.3",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-commonjs": "^1.0.0",
"karma-jasmine": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"phantomjs-prebuilt": "^2.1.16",
"prismjs": "^1.15.0",
"rollup": "^0.60.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-vue": "2.5.2",
"style-loader": "^0.21.0",
"uglify-es": "^3.3.9",
"vue": "^2.5.16",
"vue-loader": "^15.2.4",
"vue-router": "^3.0.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}