-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"name": "@jbelien/openstreetmap-calendar-widget",
"description": "Widget to embed OpenStreetMap Calendar (https://osmcal.org/) events in your application/website.",
"keywords": [
"openstreetmap",
"calendar",
"osmcal",
"widget"
],
"version": "0.4.1",
"scripts": {
"serve:demo": "parcel demo.html --out-dir demo --global OSMCal",
"build:demo": "parcel build demo.html --out-dir docs --global OSMCal --out-file index.html --public-url .",
"build": "parcel build src/index.ts --out-file osmcal.js --global OSMCal",
"test": "eslint src/ --ext .ts",
"fix": "eslint src/ --ext .ts --fix",
"integrity": "cat dist/osmcal.js | openssl dgst -sha512 -binary | openssl base64 -A"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jbelien/openstreetmap-calendar-widget.git"
},
"bugs": {
"url": "https://github.com/jbelien/openstreetmap-calendar-widget/issues"
},
"devDependencies": {
"@types/leaflet": "^1.5.19",
"@types/leaflet.markercluster": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"parcel-bundler": "^1.12.4",
"typescript": "^4.1"
},
"dependencies": {
"handlebars": "^4.7.6",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.4.1"
},
"homepage": "https://jbelien.github.io/openstreetmap-calendar-widget/",
"main": "src/index.js"
}