-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 KB
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
{
"name": "leaflet.fullscreen",
"version": "5.3.1",
"description": "Simple plugin for Leaflet that adds fullscreen button to your maps.",
"homepage": "https://brunob.github.io/leaflet.fullscreen/",
"type": "module",
"main": "dist/Control.FullScreen.js",
"module": "dist/Control.FullScreen.js",
"browser": "dist/Control.FullScreen.umd.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/Control.FullScreen.js",
"require": "./dist/Control.FullScreen.umd.js"
},
"./dist/Control.FullScreen.css": "./dist/Control.FullScreen.css"
},
"files": [
"dist/",
"types/",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"release": "npm run build && commit-and-tag-version",
"test": "node --test spec/**/*.spec.js",
"prepublishOnly": "git push --follow-tags"
},
"peerDependencies": {
"leaflet": "^1.7.0 || >=2.0.0-alpha.1"
},
"repository": {
"type": "git",
"url": "git://github.com/brunob/leaflet.fullscreen.git"
},
"keywords": [
"leaflet",
"plugins",
"maps",
"fullscreen"
],
"devDependencies": {
"@eslint/css": "^1.0.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"commit-and-tag-version": "^12.7.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"happy-dom": "^20.8.4",
"leaflet": "^1.9.4",
"prettier": "^3.8.1",
"rollup": "^4.60.0"
},
"author": "b_b",
"license": "MIT",
"readmeFilename": "README.md"
}