forked from AMDmi3/opening_hours.js
-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
87 lines (87 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "opening_hours",
"main": "build/opening_hours.js",
"typings": "./types/index.d.ts",
"types": "./types/index.d.ts",
"description": "Library to parse and process opening_hours tag from OpenStreetMap data",
"version": "3.9.0-dev",
"homepage": "https://github.com/opening-hours/opening_hours.js",
"author": "Dmitry Marakasov <[email protected]>",
"maintainers": [
"Robin Schneider <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/opening-hours/opening_hours.js"
},
"bugs": "https://github.com/opening-hours/opening_hours.js/issues?state=open",
"keywords": [
"openstreetmap",
"OSM",
"opening_hours"
],
"license": "LGPL-3.0-only",
"files": [
"Makefile",
"CHANGELOG.rst",
"LICENSES/",
"site/js/",
"src/locales/core.js",
"types/index.d.ts"
],
"directories": {
"doc": "./docs/"
},
"scripts": {
"build": "make build",
"test-quick": "make check",
"test": "make check-full",
"eslint": "eslint src/**/*.js types/*.d.ts",
"osm-tag-data-check": "make osm-tag-data-check",
"benchmark": "make benchmark",
"interactive_testing": "make run-interactive_testing",
"regex_search": "make run-regex_search",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"readme": "doctoc README.md --title \"## Table of Contents\"",
"check-updates": " npm-check-updates --reject colors --upgrade"
},
"dependencies": {
"i18next": "^21.8.3",
"i18next-browser-languagedetector": "^6.1.4",
"suncalc": "^1.9.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-yaml": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"assert": "^2.0.0",
"colors": "^0.6.2",
"country-language": "^0.1.7",
"doctoc": "^2.2.0",
"esbuild": "^0.14.39",
"eslint": "^8.15.0",
"full-icu": "^1.4.0",
"glob": "^8.0.3",
"https": "^1.0.0",
"husky": "^8.0.1",
"js-yaml": "^4.1.0",
"line-reader": "^0.4.0",
"npm-check-updates": "^13.0.1",
"optimist": "^0.6.1",
"package-json-validator": "^0.6.3",
"pinst": "^3.0.0",
"rollup": "^2.73.0",
"sprintf-js": "1.1.2",
"terser": "^5.13.1",
"timekeeper": "^2.2.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=10.0.0"
}
}