-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
33 lines (33 loc) · 928 Bytes
/
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
{
"name": "leaflet.fullscreen",
"version": "3.0.2",
"description": "Simple plugin for Leaflet that adds fullscreen button to your maps.",
"main": "Control.FullScreen.js",
"scripts": {
"lint": "eslint && stylelint **/*.css && prettier . --check",
"lint:fix": "eslint --fix && stylelint **/*.css --fix && prettier . --write",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git://github.com/brunob/leaflet.fullscreen.git"
},
"keywords": [
"leaflet",
"plugins",
"maps",
"fullscreen"
],
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"stylelint": "^16.13.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-prettier": "^5.0.2"
},
"author": "b_b",
"license": "MIT",
"readmeFilename": "README.md"
}