-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 831 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 831 Bytes
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
{
"name": "leaflet-geosse",
"author": "An Tran <an.tran2131@gmail.com>",
"verion": "1.2.2",
"license": "MIT",
"description": "A LeafletJS plugin to load realtime data using server sent events.",
"homepage": "https://github.com/ATran31/Leaflet-GeoSSE#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ATran31/Leaflet-GeoSSE.git"
},
"browser": "dist/Leaflet.GeoSSE.min.js",
"main": "src/Leaflet.GeoSSE.src.js",
"devDependencies": {
"uglify-es": ">=3.3.9"
},
"peerDependencies": {
"leaflet": "^1.0.0"
},
"scripts": {
"build": "uglifyjs src/Leaflet.GeoSSE.src.js --no-annotations -o dist/Leaflet.GeoSSE.min.js",
"publish": "npm run build && npm publish"
},
"files": [
"dist",
"src"
],
"workspaces": [
"examples"
],
"version": "1.2.4"
}