-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "vue-fusioncharts",
"version": "3.3.0",
"description": "A simple and lightweight VueJS component for FusionCharts JavaScript Charting Library",
"main": "dist/vue-fusioncharts.js",
"author": "FusionCharts",
"homepage": "http://www.fusioncharts.com",
"repository": {
"type": "git",
"url": "https://github.com/fusioncharts/vue-fusioncharts.git"
},
"bugs": {
"url": "https://github.com/fusioncharts/vue-fusioncharts/issues"
},
"keywords": [
"Vue",
"Vue.js",
"vue-fusioncharts-component",
"vue-fusioncharts",
"fusioncharts",
"javascript-charts",
"interactive-charts",
"charts",
"graphs",
"visualization",
"data-visualization",
"dataviz",
"browserify",
"webpack"
],
"scripts": {
"test": "npm run lint",
"lint": "eslint ./src/**/*.js webpack.config.babel.js",
"build": "webpack --config webpack.config.babel.js",
"rollup": "rollup src/index.js -f umd -n VueFusionCharts -g fusioncharts:FusionCharts -o dist/vue-fusioncharts.js",
"watch": "webpack --config webpack.config.babel.js -w",
"dev": "webpack serve --config example/webpack.config.js",
"start": "webpack serve --config example/webpack.config.js"
},
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-loader": "^2.0.0",
"lodash": "^4.17.21",
"mocha": "^5.2.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"terser-webpack-plugin": "^5.1.3",
"vue": "^3.4.27",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"yards": "^0.1.4"
},
"dependencies": {
"mixin-deep": "^1.3.2",
"underscore": "^1.13.6",
"websocket-extensions": "^0.1.4"
}
}