forked from schlunsen/nuxt-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.38 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
{
"name": "@zeraton/nuxt-leaflet",
"version": "0.1.4",
"description": "Nuxt module for leafletjs",
"license": "MIT",
"contributors": [
{
"name": "Rasmus Schlunsen"
},
{
"name": "Alexander Jank"
}
],
"main": "lib/module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zeraton-de/nuxt-leaflet.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib",
"*.d.ts"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"@types/leaflet": "1.5.4",
"leaflet": "^1.6.0",
"npm-publish-git-tag": "^3.0.3",
"vue2-leaflet": "^2.5.2"
},
"devDependencies": {
"codecov": "3.6.5",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "^6.1.2",
"jest": "^25.1.0",
"jsdom": "^16.4.0",
"nuxt": "^2.14.4",
"standard-version": "^9.0.0"
}
}