forked from makinacorpus/Leaflet.MeasureControl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "leaflet-qgsmeasure",
"version": "0.0.8",
"description": "Leaflet control to measure segment distances on the map like Qgis Ruler.",
"files": [
"dist"
],
"main": "dist/leaflet.qgsmeasure.min.js",
"scripts": {
"dev": "webpack --config=webpack.dev.config.js",
"build": "webpack --config=webpack.config.js",
"lint": "eslint src/leaflet.qgsmeasure.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-russo/Leaflet.QgsMeasure.git"
},
"keywords": [
"leaflet",
"measure",
"rule",
"qgsmeasure",
"leaflet plugin",
"ruler"
],
"author": "Gabriel M. Russo",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-russo/Leaflet.QgsMeasure/issues"
},
"homepage": "https://github.com/gabriel-russo/Leaflet.QgsMeasure#readme",
"devDependencies": {
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.0",
"mini-css-extract-plugin": "^2.7.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"leaflet": "^1.9.4",
"leaflet-draw": "^1.0.4"
}
}