forked from domoritz/leaflet-locatecontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.42 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
{
"name": "leaflet-locatecontrol-capacitor",
"version": "1.0.8",
"author": "Tête Chercheuse",
"license": "MIT",
"homepage": "https://github.com/tete-chercheuse/leaflet-locatecontrol-capacitor",
"description": "A useful control to geolocate the user with many options.",
"main": "src/L.Control.Locate.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tete-chercheuse/leaflet-locatecontrol-capacitor.git"
},
"scripts": {
"build": "grunt",
"bump:minor": "grunt bump-only:minor && grunt",
"bump:patch": "grunt bump-only:patch && grunt",
"lint": "eslint . && stylelint **/*.scss",
"lint:fix": "eslint --fix . && stylelint --fix {**/style.css,**/*.scss}",
"start": "grunt connect"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"grunt": "^1.5.3",
"grunt-bump": "0.8.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-uglify": "^5.2.2",
"sass": "^1.56.1",
"stylelint": "^14.10.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0"
},
"dependencies": {
"@capacitor/geolocation": "^5.0.7"
}
}