@noe-teritorio/opening_hours 3.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +816 -0
- package/LICENSES/AGPL-3.0-only.txt +235 -0
- package/LICENSES/AGPL-3.0-or-later.txt +235 -0
- package/LICENSES/CC0-1.0.txt +121 -0
- package/LICENSES/LGPL-3.0-only.txt +304 -0
- package/LICENSES/ODbL-1.0.txt +540 -0
- package/Makefile +526 -0
- package/README.md +926 -0
- package/REUSE.toml +40 -0
- package/build/opening_hours.esm.mjs +45870 -0
- package/build/opening_hours.esm.mjs.map +1 -0
- package/build/opening_hours.js +45875 -0
- package/package.json +133 -0
- package/site/js/countryToLanguageMapping.js +247 -0
- package/site/js/helpers.js +735 -0
- package/site/js/i18n-resources.js +2284 -0
- package/site/js/main.js +401 -0
- package/site/js/opening_hours_table.js +414 -0
- package/site/js/theme.js +73 -0
- package/site/js/yohours_model.js +2791 -0
- package/src/locales/i18n.js +97 -0
- package/types/index.d.ts +159 -0
package/REUSE.toml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# https://reuse.software/spec-3.3/
|
|
2
|
+
|
|
3
|
+
version = 1
|
|
4
|
+
SPDX-PackageName = "opening_hours"
|
|
5
|
+
SPDX-PackageSupplier = "Robin Schneider <ypid@riseup.net>"
|
|
6
|
+
SPDX-PackageDownloadLocation = "https://github.com/opening-hours/opening_hours.js"
|
|
7
|
+
|
|
8
|
+
# JSON config files and other non-commentable tooling files
|
|
9
|
+
[[annotations]]
|
|
10
|
+
path = [
|
|
11
|
+
".versionrc.json",
|
|
12
|
+
"jsconfig.json",
|
|
13
|
+
"package.json",
|
|
14
|
+
"package-lock.json",
|
|
15
|
+
"taginfo.json",
|
|
16
|
+
"taginfo_template.json",
|
|
17
|
+
"test/test.de.log",
|
|
18
|
+
"test/test.en.log",
|
|
19
|
+
"types/index.d.ts",
|
|
20
|
+
"types/js-yaml.d.ts",
|
|
21
|
+
"types/yargs.d.ts",
|
|
22
|
+
]
|
|
23
|
+
SPDX-FileCopyrightText = "opening_hours.js contributors"
|
|
24
|
+
SPDX-License-Identifier = "CC0-1.0"
|
|
25
|
+
|
|
26
|
+
# Generated source files
|
|
27
|
+
[[annotations]]
|
|
28
|
+
path = [
|
|
29
|
+
"src/holidays/generated-openholidays.js",
|
|
30
|
+
"src/locales/word_error_correction.yaml",
|
|
31
|
+
"src/locale-resolver/layers.json",
|
|
32
|
+
]
|
|
33
|
+
SPDX-FileCopyrightText = "opening_hours.js contributors"
|
|
34
|
+
SPDX-License-Identifier = "LGPL-3.0-only"
|
|
35
|
+
|
|
36
|
+
# Nominatim geocoding cache data from OpenStreetMap
|
|
37
|
+
[[annotations]]
|
|
38
|
+
path = "src/holidays/nominatim_cache/*.yaml"
|
|
39
|
+
SPDX-FileCopyrightText = "OpenStreetMap contributors"
|
|
40
|
+
SPDX-License-Identifier = "ODbL-1.0"
|