forked from vue-leaflet/Vue2Leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.29 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vue2-leaflet",
"version": "2.0.2",
"description": "Vue2 leaflet library",
"author": "Mickael Bouchaud",
"scripts": {
"serve": "npm run build -- -w",
"build": "rollup -c --environment NODE_ENV:production",
"prepare": "npm run lint && npm run test && npm run build",
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore .",
"test": "jest",
"test:w": "jest --watch",
"docs:serve": "docsify serve ./docs -p 4000 -o"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.3.4",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.1.0",
"coveralls": "^3.0.3",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"leaflet": "^1.4.0",
"lint-staged": "^7.2.2",
"rollup": "^1.1.2",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-vue": "^4.6.1",
"typescript": "^3.1.6",
"vue": "^2.5.22",
"vue-jest": "4.0.0-beta.2",
"vue-template-compiler": "^2.5.22"
},
"files": [
"dist/",
"src/",
"types/*.d.ts"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"vue",
"leaflet"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint",
"git add"
],
"*.vue": [
"eslint",
"git add"
]
},
"main": "dist/vue2-leaflet.cjs.js",
"unpkg": "dist/vue2-leaflet.min.js",
"module": "dist/vue2-leaflet.es.js",
"sideEffects": false,
"peerDependencies": {
"@types/leaflet": "^1.2.11",
"leaflet": "^1.3.4",
"vue": "^2.5.17"
},
"repository": {
"type": "git",
"url": "git://github.com/KoRiGaN/Vue2Leaflet.git"
},
"typings": "types/index.d.ts"
}