forked from geoman-io/leaflet-geoman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@geoman-io/leaflet-geoman-free",
"version": "2.11.3",
"description": "A Leaflet Plugin For Editing Geometry Layers in Leaflet 1.0",
"keywords": [
"leaflet",
"geoman",
"polygon management",
"geometry editing",
"map data",
"map overlay",
"polygon",
"geojson",
"leaflet-draw",
"data-field-geojson",
"ui-leaflet-draw"
],
"files": [
"dist"
],
"main": "dist/leaflet-geoman.min.js",
"types": "dist/leaflet-geoman.d.ts",
"dependencies": {
"@turf/boolean-contains": "6.3.0",
"@turf/kinks": "6.3.0",
"@turf/line-intersect": "6.3.0",
"@turf/line-split": "6.3.0",
"lodash": "4.17.21",
"polygon-clipping": "0.15.3"
},
"devDependencies": {
"@babel/core": "7.14.0",
"@babel/preset-env": "7.14.1",
"@types/leaflet": "^1.7.0",
"babel-loader": "8.2.2",
"copy-webpack-plugin": "8.1.1",
"css-loader": "5.2.4",
"cypress": "6.9.1",
"cypress-wait-until": "1.7.1",
"eslint": "7.26.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-import": "2.22.1",
"file-loader": "6.2.0",
"leaflet": "1.7.1",
"mini-css-extract-plugin": "1.6.0",
"prettier": "2.2.1",
"prosthetic-hand": "1.3.1",
"terser-webpack-plugin": "^5.1.2",
"url-loader": "4.1.1",
"webpack": "5.36.2",
"webpack-cli": "4.7.0"
},
"peerDependencies": {
"leaflet": "^1.2.0"
},
"scripts": {
"start": "npm run dev",
"dev": "./node_modules/.bin/webpack --config=webpack.dev.js",
"test": "./node_modules/.bin/cypress run",
"cypress": "./node_modules/.bin/cypress open",
"build": "./node_modules/.bin/webpack --config=webpack.build.js",
"prepare": "npm run build",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"eslint": "eslint src/ --fix",
"prettier": "prettier --write '{src,cypress}/**/*.{js,css}'",
"lint": "npm run eslint && npm run prettier"
},
"repository": {
"type": "git",
"url": "git://github.com/geoman-io/leaflet-geoman.git"
},
"author": {
"name": "Sumit Kumar",
"email": "[email protected]",
"url": "http://geoman.io/leaflet-geoman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geoman-io/leaflet-geoman/issues"
},
"homepage": "https://geoman.io/leaflet-geoman",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}