-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "vue-funnel-graph-js",
"version": "0.1.8",
"description": "",
"main": "dist/vue-funnel-graph.umd.js",
"module": "dist/vue-funnel-graph.esm.js",
"unpkg": "dist/vue-funnel-graph.min.js",
"browser": {
"./sfc": "src/lib-components/vue-funnel-graph.vue"
},
"files": [
"dist/*",
"src/*",
"!src/lib-dev.vue"
],
"repository": {
"type": "git",
"url": "https://github.com/greghub/vue-funnel-graph-js.git"
},
"licence": "MIT",
"keywords": [
"funnel",
"chart",
"graph",
"funnel-chart",
"funnel-graph",
"svg-funnel-chart",
"svg-funnel-graph",
"vue",
"vue-funnel-graph",
"vue-funnel-chart",
"vue-graph",
"vue-plot",
"vue-funnel"
],
"scripts": {
"build": "npm run build:unpkg & npm run build:es & npm run build:umd",
"build:umd": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format umd --file dist/vue-funnel-graph.umd.js",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es --file dist/vue-funnel-graph.esm.js",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife --file dist/vue-funnel-graph.min.js"
},
"dependencies": {
"@tweenjs/tween.js": "^17.4.0",
"funnel-graph-js": "^1.4.1",
"node-sass": "^4.13.1",
"polymorph-js": "^0.2.4",
"sass-loader": "^7.3.1"
},
"devDependencies": {
"cross-env": "^5.2.1",
"minimist": "^1.2.0",
"rollup": "^1.31.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-plugin-vue": "^4.6.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5"
}
}