-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "mean-chart-vue",
"version": "1.0.34",
"description": "A simple component library to be used with Vue for creating graphs and other data visualizations.",
"main": "dist/bar-graph.umd.js",
"module": "dist/bar-graph.esm.js",
"unpkg": "dist/bar-graph.min.js",
"browser": {
"./sfc": "src/bar-graph.vue"
},
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/bar-graph.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/bar-graph.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/bar-graph.min.js",
"serve": "vue-cli-service serve"
},
"keywords": [
"data",
"vue",
"graphs",
"bar",
"graph",
"chart"
],
"author": "Anker Peet",
"license": "MIT",
"dependencies": {
"mean-chart": "^1.0.32"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@vue/cli-service": "~4.2.0",
"rollup": "^1.17.0",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.11",
"vue-router": "^3.1.5",
"vue-template-compiler": "^2.6.10"
}
}