forked from geoman-io/leaflet-geoman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.19 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
{
"name": "@codeofsumit/leaflet.pm",
"version": "2.1.0-beta.6",
"description": "A Leaflet Plugin For Editing Geometry Layers in Leaflet 1.0",
"keywords": [
"leaflet",
"polygon management",
"geometry editing",
"map data",
"map overlay",
"polygon",
"geojson",
"leaflet-draw",
"data-field-geojson",
"ui-leaflet-draw"
],
"files": [
"dist"
],
"main": "dist/leaflet.pm.min.js",
"dependencies": {
"@turf/difference": "^6.0.2",
"@turf/intersect": "^6.1.3",
"@turf/kinks": "6.x",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"cypress": "^3.4.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-cypress": "^2.6.1",
"eslint-plugin-import": "^2.18.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.1",
"leaflet": "^1.5.1",
"prettier": "1.16.1",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^0.6.2",
"webpack": "^3.12.0"
},
"peerDependencies": {
"leaflet": "^1.2.0"
},
"scripts": {
"start": "npm run dev",
"dev": "./node_modules/.bin/webpack --config=webpack.dev.js",
"test": "$(npm bin)/cypress run",
"cypress": "$(npm 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/codeofsumit/leaflet.pm.git"
},
"author": {
"name": "Sumit Kumar",
"email": "[email protected]",
"url": "http://twitter.com/TweetsOfSumit"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codeofsumit/leaflet.pm/issues"
},
"homepage": "https://leafletpm.now.sh",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}