-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "vue-svg-gauge",
"version": "1.2.1",
"description": "Customizable gauge component with gradients and animations for VueJs",
"author": "Morgane LECURIEUX <[email protected]>",
"main": "dist/vue-svg-gauge.js",
"scripts": {
"dev": "cd demo && yarn serve",
"build:debug": "cross-env NODE_ENV=debug webpack --config webpack.config.js",
"build:release": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"build": "npm run build:debug && npm run build:release"
},
"repository": {
"type": "git",
"url": "https://github.com/hellocomet/vue-svg-gauge.git"
},
"keywords": [
"vue-js",
"vuejs",
"gauge",
"custom-gauge",
"gauge-chart",
"gauge-gradient",
"gauge-animation",
"vue2-gauge",
"customizable-gauge",
"svg-gauge",
"vue-2"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocomet/vue-svg-gauge/issues"
},
"dependencies": {
"@tweenjs/tween.js": "^17.3.0"
},
"devDependencies": {
"@tweenjs/tween.js": "^17.3.0",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"rimraf": "^2.6.1",
"terser-webpack-plugin": "^1.2.2",
"uglifyjs-webpack-plugin": "^2.1.1",
"vue": "~2.5.22",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.6.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "~2.5.22",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.1.0"
}
}