-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "vpie",
"version": "1.0.1",
"description": "Vue pie chart component built with d3",
"main": "dist/vue-pie.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"npm-prod": "node_modules/webpack/bin/webpack.js --progress --config build/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maddielynklein/vue-pie.git"
},
"keywords": [
"vue",
"pie",
"data",
"visualization",
"d3",
"chart",
"donut"
],
"author": "Maddie Klein",
"license": "ISC",
"dependencies": {
"d3-interpolate": "^1.3.2",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"d3-transition": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.2",
"core-js": "^2.6.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}