forked from ikmolbo/vue2-leaflet-hotline
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
64
65
66
67
68
{
"name": "vue2-leaflet-heatmap",
"description": "Create heatmaps using Vue and Leaflet.",
"homepage": "https://github.com/jurb/vue2-leaflet-heatmap#readme",
"keywords": [
"Vue",
"Leaflet",
"heatmap"
],
"license": "MIT",
"author": {
"name": "Jurian Baas"
},
"bugs": {
"url": "https://github.com/jurb/vue2-leaflet-heatmap/issues"
},
"version": "1.0.5",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib --name Vue2LeafletHeatmap Vue2LeafletHeatmap.vue"
},
"main": "dist/Vue2LeafletHeatmap.umd.js",
"module": "dist/Vue2LeafletHeatmap.common.js",
"unpkg": "dist/Vue2LeafletHeatmap.min.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:jurb/vue2-leaflet-heatmap.git"
},
"peerDependencies": {
"vue": "^2.5.17",
"leaflet": "^1.3.4"
},
"dependencies": {
"leaflet.heat": "^0.2.0",
"vue2-leaflet": "^1.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.0.5",
"@vue/cli-service": "^3.0.5",
"@vue/eslint-config-prettier": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"lint-staged": "^7.2.2",
"vue-template-compiler": "^2.5.17",
"webpack-node-externals": "^1.7.2",
"yallist": "^3.0.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}