forked from vue-leaflet/Vue2Leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "vue2-leaflet",
"version": "1.0.2",
"description": "Vue2 leaflet library",
"author": "Mickael Bouchaud",
"license": "MIT",
"scripts": {
"build": "cd scripts && ./build.sh",
"size": "size-limit"
},
"main": "dist/vue2-leaflet.min.js",
"module": "dist/vue2-leaflet.min.js",
"unpkg": "dist/vue2-leaflet.min.js",
"repository": {
"type": "git",
"url": "git://github.com/KoRiGaN/Vue2Leaflet.git"
},
"dependencies": {
"leaflet": "^1.3.1"
},
"peerDependencies": {
"vue": "^2.5.3"
},
"size-limit": [
{
"path": "dist/vue2-leaflet.min.js",
"limit": "10 KB",
"webpack": false
}
],
"keywords": [
"vue",
"leaflet"
],
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.28.11",
"size-limit": "^0.17.0",
"vue-loader": "^14.2.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
}
}