-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
61 lines (61 loc) · 1.56 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-choropleth",
"version": "0.3.1",
"description": "Choropleth Map for Vue.js",
"homepage": "https://github.com/voluntadpear/ChoroplethMap",
"bugs": "https://github.com/voluntadpear/ChoroplethMap/issues",
"author": "Guillermo Peralta Scura",
"license": "MIT",
"keywords": [
"choropleth",
"map",
"vue",
"js",
"vuejs"
],
"main": "dist/vue-choropleth.js",
"module": "dist/vue-choropleth.js",
"unpkg": "dist/vue-choropleth.min.js",
"scripts": {
"build": "webpack --hide-modules --colors --progress --config scripts/webpack.js --display-error-details",
"precommit": "lint-staged"
},
"dependencies": {
"chroma-js": "^1.3.4",
"leaflet": "^1.3.4",
"vue2-leaflet": "2.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"prettier": "^1.10.2",
"style-loader": "^0.18.2",
"vue": "^2.6.10",
"vue-html-loader": "^1.2.4",
"vue-loader": "^12.2.2",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^3.3.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
},
"lint-staged": {
"*.{js, vue}": [
"prettier",
"git add"
]
},
"peerDependencies": {
"vue": "2.x"
},
"repository": {
"type": "git",
"url": "git://github.com/voluntadpear/vue-choropleth.git"
}
}