This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "nuxt-leaflet",
"version": "0.0.27",
"description": "Nuxt module for leafletjs",
"license": "MIT",
"contributors": [
{
"name": "Rasmus Schlunsen"
}
],
"main": "lib/module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/schlunsen/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"
],
"types": [
"index.d.ts"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"@types/leaflet": "1.7.6",
"leaflet": "^1.7.1",
"npm-publish-git-tag": "^3.0.3",
"vue2-leaflet": "^2.7.1"
},
"devDependencies": {
"codecov": "3.7.1",
"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.9",
"standard-version": "^8.0.1"
},
"bugs": {
"url": "https://github.com/schlunsen/nuxt-leaflet/issues"
},
"readme": "https://github.com/schlunsen/nuxt-leaflet#readme",
"homepage": "https://github.com/schlunsen/nuxt-leaflet#readme"
}