forked from zakjan/leaflet-lasso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "leaflet-lasso",
"version": "2.2.1",
"description": "Lasso selection plugin for Leaflet",
"keywords": [
"leaflet",
"lasso"
],
"license": "MIT",
"author": "Jan Zak <zj@zakjan.cz>",
"repository": "github:zakjan/leaflet-lasso",
"main": "dist/leaflet-lasso.cjs.js",
"module": "dist/leaflet-lasso.esm.js",
"browser": "dist/leaflet-lasso.umd.min.js",
"types": "dist/leaflet-lasso.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.10",
"@types/leaflet": "^1.5.17",
"@types/leaflet.markercluster": "^1.4.2",
"@types/terraformer__spatial": "^2.0.0",
"autoprefixer": "^9.8.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.0",
"jest-simple-summary": "^1.0.2",
"leaflet": "^1.6.0",
"leaflet.markercluster": "^1.4.1",
"postcss-assets": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.3",
"rollup-plugin-dts": "^1.4.10",
"rollup-plugin-postcss": "^3.1.5",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"rollup-plugin-visualizer": "^4.1.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"leaflet": "^1.0.0"
},
"dependencies": {
"@terraformer/spatial": "^2.0.7"
}
}