-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
51 lines (51 loc) · 1.12 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
{
"name": "node-red-contrib-web-worldmap",
"version": "5.0.9",
"description": "A Node-RED node to provide a web page of a world map for plotting things on.",
"dependencies": {
"@turf/bezier-spline": "~7.2.0",
"cgi": "0.3.1",
"compression": "^1.7.5",
"express": "^4.21.2",
"sockjs": "~0.3.24"
},
"bundledDependencies": [
"cgi",
"compression",
"express",
"sockjs",
"@turf/bezier-spline"
],
"repository": {
"type": "git",
"url": "https://github.com/dceejay/RedMap"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"map",
"world",
"tak",
"pmtiles",
"esri",
"gis"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"worldmap": "worldmap.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "[email protected]",
"url": "http://nodered.org"
},
"contributors": [
"@HiroyasuNishiyama",
"@zafrirron"
],
"engines": {
"node": ">=18"
}
}