forked from alexandra-c/leaflet-tracking-marker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "react-leaflet-tracking-marker",
"description": "React Leaflet marker that drifts to a certain point, computes its bearing angle using coordinates and rotates accordingly.",
"private": false,
"license": "MIT",
"author": {
"name": "Alexandra Capatina",
"url": "https://github.com/alexandra-c"
},
"repository": {
"type": "git",
"url": "[email protected]:alexandra-c/leaflet-tracking-marker.git"
},
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run build:cjs && npm run build:copy-files",
"build:cjs": "babel src -d dist",
"build:copy-files": "node ./scripts/copy-files.js"
},
"dependencies": {
"rimraf": "^3.0.2",
"fs-extra": "^10.1.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"babel-eslint": "^10.1.0",
"@react-leaflet/core": "^2.0.0",
"eslint": "^8.18.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"leaflet": "^1.8.0",
"react": "^18.2.0",
"react-leaflet": "^4.0.1"
},
"peerDependencies": {
"leaflet": ">=1.2.0",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"react-leaflet": ">=3.0.0"
},
"keywords": [
"react-leaflet-v3",
"react",
"leaflet",
"moving",
"rotated",
"marker",
"react",
"leaflet marker",
"react leaflet marker",
"leaflet-moving-marker",
"leaflet moving marker",
"leaflet rotating marker",
"leaflet bearing marker",
"leaflet sliding marker",
"sliding marker",
"leaflet-drift-marker",
"leaflet drift marker",
"drift marker",
"drift-marker"
],
"eslintConfig": {
"extends": "react-app"
}
}