-
Notifications
You must be signed in to change notification settings - Fork 264
/
package.json
52 lines (52 loc) · 1.75 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
{
"name": "leaflet.locatecontrol",
"version": "0.82.0",
"homepage": "https://github.com/domoritz/leaflet-locatecontrol",
"description": "A useful control to geolocate the user with many options. Used by osm.org and mapbox among many others.",
"main": "dist/L.Control.Locate.min.js",
"unpkg": "dist/L.Control.Locate.min.js",
"jsdelivr": "dist/L.Control.Locate.min.js",
"module": "dist/L.Control.Locate.esm.js",
"author": "Dominik Moritz <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:domoritz/leaflet-locatecontrol.git"
},
"keywords": [
"leaflet",
"locate",
"plugin"
],
"license": "MIT",
"readmeFilename": "README.md",
"scripts": {
"build": "grunt",
"bump:minor": "grunt bump-only:minor && grunt && grunt bump-commit",
"bump:patch": "grunt bump-only:patch && grunt && grunt bump-commit",
"lint": "eslint . && stylelint **/*.scss && npx prettier --check .",
"lint:fix": "eslint --fix . && stylelint --fix {**/style.css,**/*.scss} && npx prettier --write .",
"start": "grunt connect"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"grunt": "^1.6.1",
"grunt-bump": "0.8.0",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-rollup": "^12.0.0",
"grunt-sass": "^3.1.0",
"leaflet": "^1.9.4",
"prettier": "^3.3.3",
"rollup": "^4.24.3",
"sass": "^1.80.4",
"stylelint": "^16.10.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.8.1"
}
}