forked from vue-leaflet/Vue2Leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "vue2-leaflet",
"version": "1.1.1",
"description": "Vue2 leaflet library",
"author": "Mickael Bouchaud",
"license": "MIT",
"scripts": {
"build": "cd scripts && ./build.sh",
"size": "size-limit",
"lint": "eslint src --ext .js,.vue --ignore-path .gitignore",
"test:types": "tsc -p ./types/test/tsconfig.json"
},
"files": [
"dist/",
"types/*.d.ts"
],
"main": "dist/vue2-leaflet.min.js",
"module": "dist/vue2-leaflet.min.js",
"unpkg": "dist/vue2-leaflet.min.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/KoRiGaN/Vue2Leaflet.git"
},
"dependencies": {
"leaflet": "^1.3.4",
"vue": "^2.5.3",
"@types/leaflet": "^1.2.11"
},
"peerDependencies": {},
"size-limit": [
{
"path": "dist/vue2-leaflet.min.js",
"limit": "10 KB",
"webpack": false
}
],
"keywords": [
"vue",
"leaflet"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.28.11",
"eslint": "^5.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"size-limit": "^0.17.1",
"typescript": "^2.7.1",
"vue-loader": "^14.2.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.19.1",
"webpack-cli": "^2.1.5"
}
}