-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 KB
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
{
"name": "leaflet-spline",
"version": "0.2.0",
"description": "Leaflet plugin for drawing bezier splines from polylines and polygons",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "parcel example/index.html --open",
"example:build": "parcel build example/index.html --public-url /leaflet-spline/",
"predeploy": "npm run example:build",
"deploy": "gh-pages -d dist",
"checkoutput": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
},
"files": [
"build"
],
"dependencies": {
"@elfalem/leaflet-curve": "^0.9.2"
},
"devDependencies": {
"@types/leaflet": "^1.9.3",
"@types/lodash": "4.14.191",
"gh-pages": "^3.2.3",
"leaflet": "^1.9.3",
"parcel-bundler": "^1.6.1",
"typescript": "4.4.4"
},
"peerDependencies": {
"leaflet": "^1.9.3"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slutske22/leaflet-spline.git"
},
"keywords": [
"leaflet",
"spline",
"polyline",
"polygon",
"bezier"
],
"author": "Seth Lutske",
"license": "MIT",
"bugs": {
"url": "https://github.com/slutske22/leaflet-spline/issues"
},
"homepage": "https://github.com/slutske22/leaflet-spline#readme"
}