-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "leaflet.smoothgeodesic",
"description": "Smooth geodesic curves for Leaflet.",
"author": "Hunter Evanoff",
"version": "1.0.0",
"license": "MIT",
"main": "dist/leaflet.smoothgeodesic.js",
"browser": "dist/leaflet.smoothgeodesic.umd.min.js",
"types": "dist/leaflet.smoothgeodesic.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hunter547/Leaflet.SmoothGeodesic.git"
},
"homepage": "https://leaflet-smoothgeodesic.netlify.com",
"scripts": {
"prepublish": "npm run build",
"build": "rollup -c rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/leaflet.smoothgeodesic.js",
"dist/leaflet.smoothgeodesic.d.ts"
],
"keywords": [
"SVG",
"path",
"geodesic",
"Leaflet",
"great",
"circle",
"Catmull",
"Rom",
"spline"
],
"devDependencies": {
"@types/leaflet": "^1.7.9",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.3"
},
"peerDependencies": {
"leaflet": "^1.1.0"
}
}