-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.05 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
69
70
71
72
73
74
75
76
{
"name": "vue-leaflet-minimap",
"version": "1.0.8",
"description": "A Vue2Leaflet wrapper for the Leaflet-MiniMap control plugin.",
"main": "dist/vue-leaflet-minimap.umd.min.js",
"module": "dist/vue-leaflet-minimap.common.js",
"keywords": [
"vue",
"vue2leaflet",
"leaflet",
"minimap"
],
"author": "Patrick Cate",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/patrickcate/vue-leaflet-minimap.git"
},
"bugs": {
"url": "https://github.com/patrickcate/vue-leaflet-minimap/issues"
},
"homepage": "https://github.com/patrickcate/vue-leaflet-minimap",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --mode production --target lib --name vue-leaflet-minimap ./src/vue-leaflet-minimap.vue",
"lint": "vue-cli-service lint",
"release": "standard-version",
"prepare": "husky install",
"gitcommit": "cz"
},
"dependencies": {
"leaflet-minimap": "^3.6.1",
"vue2-leaflet": "^2.5.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"core-js": "^3.6.4",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.9.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^7.9.0",
"husky": "^7.0.0",
"leaflet": "^1.6.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"standard-version": "^9.3.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"leaflet": "^1.6.0"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"files": [
"src/vue-leaflet-minimap.vue",
"dist/*.js"
]
}